68 lines
2.1 KiB
Ruby
68 lines
2.1 KiB
Ruby
# Redmine - project management software
|
|
# Copyright (C) 2006-2012 Jean-Philippe Lang
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
require File.expand_path('../../../../test_helper', __FILE__)
|
|
|
|
class MenuManagerTest < ActionController::IntegrationTest
|
|
|
|
fixtures :users, :roles, :projects, :members, :member_roles
|
|
|
|
# Hooks that are manually registered later
|
|
class ProjectBasedTemplate < Redmine::Hook::ViewListener
|
|
def view_layouts_base_html_head(context)
|
|
# Adds a project stylesheet
|
|
stylesheet_link_tag(context[:project].identifier) if context[:project]
|
|
end
|
|
end
|
|
|
|
class SidebarContent < Redmine::Hook::ViewListener
|
|
def view_layouts_base_sidebar(context)
|
|
content_tag('p', 'Sidebar hook')
|
|
end
|
|
end
|
|
|
|
def setup
|
|
Redmine::Hook.clear_listeners
|
|
end
|
|
|
|
def teardown
|
|
Redmine::Hook.clear_listeners
|
|
end
|
|
|
|
def test_html_head_hook_response
|
|
Redmine::Hook.add_listener(ProjectBasedTemplate)
|
|
|
|
get '/projects/ecookbook'
|
|
assert_tag :tag => 'link', :attributes => {:href => '/stylesheets/ecookbook.css'},
|
|
:parent => {:tag => 'head'}
|
|
end
|
|
|
|
def test_empty_sidebar_should_be_hidden
|
|
get '/'
|
|
assert_select 'div#main.nosidebar'
|
|
end
|
|
|
|
def test_sidebar_with_hook_content_should_not_be_hidden
|
|
Redmine::Hook.add_listener(SidebarContent)
|
|
|
|
get '/'
|
|
assert_select 'div#sidebar p', :text => 'Sidebar hook'
|
|
assert_select 'div#main'
|
|
assert_select 'div#main.nosidebar', 0
|
|
end
|
|
end
|