Files
Redmine/test/integration/projects_test.rb
Marius Balteanu 11612e5174 Fixes error executing the include macro (Page not found) in projects list (#43526).
Patch by Mizuki ISHIKAWA (user:ishikawa999). 



git-svn-id: https://svn.redmine.org/redmine/trunk@24234 e93f8b46-1217-0410-a6f0-8f06a7374b81
2025-12-28 02:55:01 +00:00

111 lines
3.7 KiB
Ruby

# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006- 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_relative '../test_helper'
class ProjectsTest < Redmine::IntegrationTest
def test_archive_project
subproject = Project.find(1).children.first
log_user("admin", "admin")
get "/admin/projects"
assert_response :success
post "/projects/1/archive"
assert_redirected_to "/admin/projects"
assert !Project.find(1).active?
get '/projects/1'
assert_response :forbidden
get "/projects/#{subproject.id}"
assert_response :forbidden
post "/projects/1/unarchive"
assert_redirected_to "/admin/projects"
assert Project.find(1).active?
get "/projects/1"
assert_response :success
end
def test_modules_should_not_allow_get
log_user("admin", "admin")
assert_no_difference 'EnabledModule.count' do
get '/projects/1/modules', :params => {:enabled_module_names => ['']}
assert_response :not_found
end
end
def test_list_layout_when_show_projects_scheduled_for_deletion
project = Project.find(1)
project.update_attribute :status, Project::STATUS_SCHEDULED_FOR_DELETION
log_user('admin', 'admin')
get '/admin/projects', :params => { :f => ['status'], :v => { 'status' => ['10'] } }
assert_response :success
assert_select '#project-1' do
assert_select 'td.checkbox.hide-when-print'
assert_select 'td.name'
assert_select 'td.identifier'
assert_select 'td.short_description'
assert_select 'td.buttons', text: ''
end
end
def test_index_should_render_include_macro_in_short_description
project = Project.find(1)
project.update!(:description => '{{include(Another page)}}')
log_user('admin', 'admin')
get '/projects', :params => {:display_type => 'list'}
assert_response :success
assert_select 'td.short_description div.wiki', :text => /This is a link to a ticket/
get '/projects', :params => {:display_type => ''}
assert_response :success
assert_select 'div.wiki.description', :text => /This is a link to a ticket/
end
def test_index_should_render_recent_pages_macro_in_short_description
freeze_time do
project = Project.find(1)
project.update!(:description => '{{recent_pages}}')
WikiContent.update_all(updated_on: Time.current)
project.wiki.pages.each_with_index do |page, i|
page.content.update_attribute(:updated_on, (i + 1).days.ago)
end
log_user('admin', 'admin')
get '/projects', :params => {:display_type => 'list'}
assert_response :success
assert_select 'td.short_description div.wiki ul li a', :count => 7
assert_select 'td.short_description div.wiki ul li:first a', :text => 'Another page'
get '/projects', :params => {:display_type => ''}
assert_response :success
assert_select 'div.wiki.description ul li a', :count => 7
assert_select 'div.wiki.description ul li:first a', :text => 'Another page'
end
end
end