Chris@0: # Redmine - project management software
Chris@1295: # Copyright (C) 2006-2013 Jean-Philippe Lang
Chris@0: #
Chris@0: # This program is free software; you can redistribute it and/or
Chris@0: # modify it under the terms of the GNU General Public License
Chris@0: # as published by the Free Software Foundation; either version 2
Chris@0: # of the License, or (at your option) any later version.
Chris@441: #
Chris@0: # This program is distributed in the hope that it will be useful,
Chris@0: # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@0: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@0: # GNU General Public License for more details.
Chris@441: #
Chris@0: # You should have received a copy of the GNU General Public License
Chris@0: # along with this program; if not, write to the Free Software
Chris@0: # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@0:
Chris@119: require File.expand_path('../../../test_helper', __FILE__)
Chris@0:
Chris@1115: class IssuesHelperTest < ActionView::TestCase
Chris@0: include ApplicationHelper
Chris@0: include IssuesHelper
Chris@1115: include CustomFieldsHelper
Chris@1115: include ERB::Util
Chris@0:
Chris@909: fixtures :projects, :trackers, :issue_statuses, :issues,
Chris@909: :enumerations, :users, :issue_categories,
Chris@909: :projects_trackers,
Chris@909: :roles,
Chris@909: :member_roles,
Chris@909: :members,
Chris@909: :enabled_modules,
Chris@1115: :custom_fields,
Chris@1115: :attachments,
Chris@1115: :versions
Chris@0:
Chris@0: def setup
Chris@0: super
Chris@0: set_language_if_valid('en')
Chris@0: User.current = nil
Chris@0: end
Chris@0:
Chris@441: def test_issue_heading
Chris@441: assert_equal "Bug #1", issue_heading(Issue.find(1))
Chris@441: end
Chris@441:
Chris@441: def test_issues_destroy_confirmation_message_with_one_root_issue
Chris@441: assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find(1))
Chris@441: end
Chris@441:
Chris@441: def test_issues_destroy_confirmation_message_with_an_arrayt_of_root_issues
Chris@441: assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find([1, 2]))
Chris@441: end
Chris@441:
Chris@441: def test_issues_destroy_confirmation_message_with_one_parent_issue
Chris@441: Issue.find(2).update_attribute :parent_issue_id, 1
Chris@441: assert_equal l(:text_issues_destroy_confirmation) + "\n" + l(:text_issues_destroy_descendants_confirmation, :count => 1),
Chris@441: issues_destroy_confirmation_message(Issue.find(1))
Chris@441: end
Chris@441:
Chris@441: def test_issues_destroy_confirmation_message_with_one_parent_issue_and_its_child
Chris@441: Issue.find(2).update_attribute :parent_issue_id, 1
Chris@441: assert_equal l(:text_issues_destroy_confirmation), issues_destroy_confirmation_message(Issue.find([1, 2]))
Chris@441: end
Chris@441:
Chris@1295: test 'IssuesHelper#show_detail with no_html should show a changing attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :old_value => '40', :value => '100', :prop_key => 'done_ratio')
Chris@1295: assert_equal "% Done changed from 40 to 100", show_detail(detail, true)
Chris@1295: end
Chris@0:
Chris@1295: test 'IssuesHelper#show_detail with no_html should show a new attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :old_value => nil, :value => '100', :prop_key => 'done_ratio')
Chris@1295: assert_equal "% Done set to 100", show_detail(detail, true)
Chris@1295: end
Chris@0:
Chris@1295: test 'IssuesHelper#show_detail with no_html should show a deleted attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :old_value => '50', :value => nil, :prop_key => 'done_ratio')
Chris@1295: assert_equal "% Done deleted (50)", show_detail(detail, true)
Chris@1295: end
Chris@0:
Chris@1295: test 'IssuesHelper#show_detail with html should show a changing attribute with HTML highlights' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :old_value => '40', :value => '100', :prop_key => 'done_ratio')
Chris@1295: html = show_detail(detail, false)
Chris@0:
Chris@1295: assert_include '% Done', html
Chris@1295: assert_include '40', html
Chris@1295: assert_include '100', html
Chris@1295: end
Chris@0:
Chris@1295: test 'IssuesHelper#show_detail with html should show a new attribute with HTML highlights' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :old_value => nil, :value => '100', :prop_key => 'done_ratio')
Chris@1295: html = show_detail(detail, false)
Chris@0:
Chris@1295: assert_include '% Done', html
Chris@1295: assert_include '100', html
Chris@1295: end
Chris@0:
Chris@1295: test 'IssuesHelper#show_detail with html should show a deleted attribute with HTML highlights' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :old_value => '50', :value => nil, :prop_key => 'done_ratio')
Chris@1295: html = show_detail(detail, false)
Chris@0:
Chris@1295: assert_include '% Done', html
Chris@1295: assert_include '50', html
Chris@1295: end
Chris@0:
Chris@1295: test 'IssuesHelper#show_detail with a start_date attribute should format the dates' do
Chris@1295: detail = JournalDetail.new(
Chris@1295: :property => 'attr',
Chris@1295: :old_value => '2010-01-01',
Chris@1295: :value => '2010-01-31',
Chris@1295: :prop_key => 'start_date'
Chris@1295: )
Chris@1295: with_settings :date_format => '%m/%d/%Y' do
Chris@1295: assert_match "01/31/2010", show_detail(detail, true)
Chris@1295: assert_match "01/01/2010", show_detail(detail, true)
Chris@1115: end
Chris@0: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail with a due_date attribute should format the dates' do
Chris@1295: detail = JournalDetail.new(
Chris@1295: :property => 'attr',
Chris@1295: :old_value => '2010-01-01',
Chris@1295: :value => '2010-01-31',
Chris@1295: :prop_key => 'due_date'
Chris@1295: )
Chris@1295: with_settings :date_format => '%m/%d/%Y' do
Chris@1295: assert_match "01/31/2010", show_detail(detail, true)
Chris@1295: assert_match "01/01/2010", show_detail(detail, true)
Chris@1295: end
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a project attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'project_id', :old_value => 1, :value => 2)
Chris@1295: assert_match 'eCookbook', show_detail(detail, true)
Chris@1295: assert_match 'OnlineStore', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a issue status attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'status_id', :old_value => 1, :value => 2)
Chris@1295: assert_match 'New', show_detail(detail, true)
Chris@1295: assert_match 'Assigned', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a tracker attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'tracker_id', :old_value => 1, :value => 2)
Chris@1295: assert_match 'Bug', show_detail(detail, true)
Chris@1295: assert_match 'Feature request', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a assigned to attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'assigned_to_id', :old_value => 1, :value => 2)
Chris@1295: assert_match 'Redmine Admin', show_detail(detail, true)
Chris@1295: assert_match 'John Smith', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a priority attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'priority_id', :old_value => 4, :value => 5)
Chris@1295: assert_match 'Low', show_detail(detail, true)
Chris@1295: assert_match 'Normal', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a category attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'category_id', :old_value => 1, :value => 2)
Chris@1295: assert_match 'Printing', show_detail(detail, true)
Chris@1295: assert_match 'Recipes', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a fixed version attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'fixed_version_id', :old_value => 1, :value => 2)
Chris@1295: assert_match '0.1', show_detail(detail, true)
Chris@1295: assert_match '1.0', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a estimated hours attribute' do
Chris@1295: detail = JournalDetail.new(:property => 'attr', :prop_key => 'estimated_hours', :old_value => '5', :value => '6.3')
Chris@1295: assert_match '5.00', show_detail(detail, true)
Chris@1295: assert_match '6.30', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show old and new values with a custom field' do
Chris@1295: detail = JournalDetail.new(:property => 'cf', :prop_key => '1', :old_value => 'MySQL', :value => 'PostgreSQL')
Chris@1295: assert_equal 'Database changed from MySQL to PostgreSQL', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show added file' do
Chris@1295: detail = JournalDetail.new(:property => 'attachment', :prop_key => '1', :old_value => nil, :value => 'error281.txt')
Chris@1295: assert_match 'error281.txt', show_detail(detail, true)
Chris@1295: end
Chris@1295:
Chris@1295: test 'IssuesHelper#show_detail should show removed file' do
Chris@1295: detail = JournalDetail.new(:property => 'attachment', :prop_key => '1', :old_value => 'error281.txt', :value => nil)
Chris@1295: assert_match 'error281.txt', show_detail(detail, true)
Chris@1295: end
Chris@0: end