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