##// END OF EJS Templates
Replaces find(:first) calls....
Replaces find(:first) calls. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10930 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r10701:31c33f462d92
r10703:a7023dfa9b8e
Show More
issue_test.rb
1938 lines | 71.1 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Keep track of issue description changes (#746)....
r4834 # Redmine - project management software
Jean-Philippe Lang
Extracts custom field values validation from CustomValue so that they can be validated globally from the customized object (#1189)....
r8597 # Copyright (C) 2006-2012 Jean-Philippe Lang
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574 #
# 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.
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686 #
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574 # 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.
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686 #
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574 # 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.
Jean-Baptiste Barth
Use absolute paths in test/**/* requires for Ruby 1.9.2 compatibility. #4050...
r4395 require File.expand_path('../../test_helper', __FILE__)
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574
Eric Davis
Upgraded to Rails 2.3.4 (#3597)...
r2773 class IssueTest < ActiveSupport::TestCase
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 fixtures :projects, :users, :members, :member_roles, :roles,
Toshi MARUYAMA
add missing groups_users fixture to unit issue test...
r8516 :groups_users,
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 :trackers, :projects_trackers,
Jean-Philippe Lang
Adds missing fixtures....
r3394 :enabled_modules,
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 :versions,
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686 :issue_statuses, :issue_categories, :issue_relations, :workflows,
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 :enumerations,
Jean-Philippe Lang
Anonymous users should not see private issues with anonymous author (#11872)....
r10250 :issues, :journals, :journal_details,
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 :custom_fields, :custom_fields_projects, :custom_fields_trackers, :custom_values,
:time_entries
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574
Jean-Philippe Lang
Extracts custom field values validation from CustomValue so that they can be validated globally from the customized object (#1189)....
r8597 include Redmine::I18n
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 def teardown
User.current = nil
end
Jean-Philippe Lang
Estimated time recognizes improved time formats (#1092)....
r1346 def test_create
Toshi MARUYAMA
code layout clean up of test_create at test/unit/issue_test.rb...
r7356 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3,
:status_id => 1, :priority => IssuePriority.all.first,
:subject => 'test_create',
:description => 'IssueTest#test_create', :estimated_hours => '1:30')
Jean-Philippe Lang
Estimated time recognizes improved time formats (#1092)....
r1346 assert issue.save
issue.reload
assert_equal 1.5, issue.estimated_hours
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Makes issue description a non-required field (#2456)....
r2244 def test_create_minimal
Toshi MARUYAMA
code layout clean up of test_create_minimal at test/unit/issue_test.rb...
r7355 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 3,
:status_id => 1, :priority => IssuePriority.all.first,
:subject => 'test_create')
Jean-Philippe Lang
Makes issue description a non-required field (#2456)....
r2244 assert issue.save
assert issue.description.nil?
Toshi MARUYAMA
add asserting that issue estimated hours is nil when creating minimal issue...
r10180 assert_nil issue.estimated_hours
Jean-Philippe Lang
Makes issue description a non-required field (#2456)....
r2244 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Fixed that invalid start date is ignored (#12092)....
r10459 def test_start_date_format_should_be_validated
set_language_if_valid 'en'
['2012', 'ABC', '2012-15-20'].each do |invalid_date|
issue = Issue.new(:start_date => invalid_date)
assert !issue.valid?
assert_include 'Start date is not a valid date', issue.errors.full_messages, "No error found for invalid date #{invalid_date}"
end
end
def test_due_date_format_should_be_validated
set_language_if_valid 'en'
['2012', 'ABC', '2012-15-20'].each do |invalid_date|
issue = Issue.new(:due_date => invalid_date)
assert !issue.valid?
assert_include 'Due date is not a valid date', issue.errors.full_messages, "No error found for invalid date #{invalid_date}"
end
end
Jean-Philippe Lang
Adds a test for start date < due date validation....
r10461 def test_due_date_lesser_than_start_date_should_not_validate
set_language_if_valid 'en'
issue = Issue.new(:start_date => '2012-10-06', :due_date => '2012-10-02')
assert !issue.valid?
assert_include 'Due date must be greater than start date', issue.errors.full_messages
end
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def test_create_with_required_custom_field
Jean-Philippe Lang
Extracts custom field values validation from CustomValue so that they can be validated globally from the customized object (#1189)....
r8597 set_language_if_valid 'en'
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 field = IssueCustomField.find_by_name('Database')
field.update_attribute(:is_required, true)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Toshi MARUYAMA
code layout clean up of test_create_with_required_custom_field at test/unit/issue_test.rb...
r7354 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :subject => 'test_create',
:description => 'IssueTest#test_create_with_required_custom_field')
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 assert issue.available_custom_fields.include?(field)
# No value for the custom field
assert !issue.save
Jean-Philippe Lang
Array#to_s behaviour changed in ruby 1.9....
r8985 assert_equal ["Database can't be blank"], issue.errors.full_messages
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 # Blank value
issue.custom_field_values = { field.id => '' }
assert !issue.save
Jean-Philippe Lang
Array#to_s behaviour changed in ruby 1.9....
r8985 assert_equal ["Database can't be blank"], issue.errors.full_messages
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 # Invalid value
issue.custom_field_values = { field.id => 'SQLServer' }
assert !issue.save
Jean-Philippe Lang
Array#to_s behaviour changed in ruby 1.9....
r8985 assert_equal ["Database is not included in the list"], issue.errors.full_messages
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 # Valid value
issue.custom_field_values = { field.id => 'PostgreSQL' }
assert issue.save
issue.reload
assert_equal 'PostgreSQL', issue.custom_value_for(field).value
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 def test_create_with_group_assignment
with_settings :issue_group_assignment => '1' do
Toshi MARUYAMA
code layout clean up of test_create_with_group_assignment at test/unit/issue_test.rb...
r7357 assert Issue.new(:project_id => 2, :tracker_id => 1, :author_id => 1,
:subject => 'Group assignment',
:assigned_to_id => 11).save
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 issue = Issue.first(:order => 'id DESC')
assert_kind_of Group, issue.assigned_to
assert_equal Group.find(11), issue.assigned_to
end
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Fixed: No validation errors when entering an invalid "Parent task" (#11979)....
r10404 def test_create_with_parent_issue_id
Toshi MARUYAMA
code layout cleanup test/unit/issue_test.rb...
r10408 issue = Issue.new(:project_id => 1, :tracker_id => 1,
:author_id => 1, :subject => 'Group assignment',
:parent_issue_id => 1)
Jean-Philippe Lang
Fixed: No validation errors when entering an invalid "Parent task" (#11979)....
r10404 assert_save issue
assert_equal 1, issue.parent_issue_id
assert_equal Issue.find(1), issue.parent
end
Toshi MARUYAMA
add test of parent issue id beginning sharp to unit issue test (#11979)...
r10406 def test_create_with_sharp_parent_issue_id
issue = Issue.new(:project_id => 1, :tracker_id => 1,
:author_id => 1, :subject => 'Group assignment',
:parent_issue_id => "#1")
assert_save issue
assert_equal 1, issue.parent_issue_id
assert_equal Issue.find(1), issue.parent
end
Jean-Philippe Lang
Fixed: No validation errors when entering an invalid "Parent task" (#11979)....
r10404 def test_create_with_invalid_parent_issue_id
Toshi MARUYAMA
set language en at test_create_with_invalid_parent_issue_id of unit issue test (#11979)...
r10407 set_language_if_valid 'en'
Toshi MARUYAMA
code layout cleanup test/unit/issue_test.rb...
r10408 issue = Issue.new(:project_id => 1, :tracker_id => 1,
:author_id => 1, :subject => 'Group assignment',
:parent_issue_id => '01ABC')
Jean-Philippe Lang
Fixed: No validation errors when entering an invalid "Parent task" (#11979)....
r10404 assert !issue.save
assert_equal '01ABC', issue.parent_issue_id
assert_include 'Parent task is invalid', issue.errors.full_messages
end
Toshi MARUYAMA
add test of parent issue id beginning sharp to unit issue test (#11979)...
r10406 def test_create_with_invalid_sharp_parent_issue_id
set_language_if_valid 'en'
issue = Issue.new(:project_id => 1, :tracker_id => 1,
:author_id => 1, :subject => 'Group assignment',
:parent_issue_id => '#01ABC')
assert !issue.save
assert_equal '#01ABC', issue.parent_issue_id
assert_include 'Parent task is invalid', issue.errors.full_messages
end
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 def assert_visibility_match(user, issues)
assert_equal issues.collect(&:id).sort, Issue.all.select {|issue| issue.visible?(user)}.collect(&:id).sort
end
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 def test_visible_scope_for_anonymous
# Anonymous user should see issues of public projects only
issues = Issue.visible(User.anonymous).all
assert issues.any?
assert_nil issues.detect {|issue| !issue.project.is_public?}
Jean-Philippe Lang
Private issues (#7414)....
r5346 assert_nil issues.detect {|issue| issue.is_private?}
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 assert_visibility_match User.anonymous, issues
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 def test_visible_scope_for_anonymous_without_view_issues_permissions
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 # Anonymous user should not see issues without permission
Role.anonymous.remove_permission!(:view_issues)
issues = Issue.visible(User.anonymous).all
assert issues.empty?
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 assert_visibility_match User.anonymous, issues
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Anonymous users should not see private issues with anonymous author (#11872)....
r10250 def test_anonymous_should_not_see_private_issues_with_issues_visibility_set_to_default
assert Role.anonymous.update_attribute(:issues_visibility, 'default')
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue = Issue.generate!(:author => User.anonymous, :assigned_to => User.anonymous, :is_private => true)
Jean-Philippe Lang
Anonymous users should not see private issues with anonymous author (#11872)....
r10250 assert_nil Issue.where(:id => issue.id).visible(User.anonymous).first
assert !issue.visible?(User.anonymous)
end
def test_anonymous_should_not_see_private_issues_with_issues_visibility_set_to_own
assert Role.anonymous.update_attribute(:issues_visibility, 'own')
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue = Issue.generate!(:author => User.anonymous, :assigned_to => User.anonymous, :is_private => true)
Jean-Philippe Lang
Anonymous users should not see private issues with anonymous author (#11872)....
r10250 assert_nil Issue.where(:id => issue.id).visible(User.anonymous).first
assert !issue.visible?(User.anonymous)
end
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 def test_visible_scope_for_non_member
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 user = User.find(9)
assert user.projects.empty?
# Non member user should see issues of public projects only
issues = Issue.visible(user).all
assert issues.any?
assert_nil issues.detect {|issue| !issue.project.is_public?}
Jean-Philippe Lang
Private issues (#7414)....
r5346 assert_nil issues.detect {|issue| issue.is_private?}
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 assert_visibility_match user, issues
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 def test_visible_scope_for_non_member_with_own_issues_visibility
Role.non_member.update_attribute :issues_visibility, 'own'
Issue.create!(:project_id => 1, :tracker_id => 1, :author_id => 9, :subject => 'Issue by non member')
user = User.find(9)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 issues = Issue.visible(user).all
assert issues.any?
assert_nil issues.detect {|issue| issue.author != user}
assert_visibility_match user, issues
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 def test_visible_scope_for_non_member_without_view_issues_permissions
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 # Non member user should not see issues without permission
Role.non_member.remove_permission!(:view_issues)
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 user = User.find(9)
assert user.projects.empty?
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 issues = Issue.visible(user).all
assert issues.empty?
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 assert_visibility_match user, issues
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 def test_visible_scope_for_member
user = User.find(9)
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 # User should see issues of projects for which he has view_issues permissions only
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 Role.non_member.remove_permission!(:view_issues)
Jean-Philippe Lang
Private issues (#7414)....
r5346 Member.create!(:principal => user, :project_id => 3, :role_ids => [2])
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 issues = Issue.visible(user).all
assert issues.any?
Jean-Philippe Lang
Private issues (#7414)....
r5346 assert_nil issues.detect {|issue| issue.project_id != 3}
assert_nil issues.detect {|issue| issue.is_private?}
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 assert_visibility_match user, issues
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Fixed: User with groups may not see issues assigned to him or to its groups (#9478)....
r7651 def test_visible_scope_for_member_with_groups_should_return_assigned_issues
user = User.find(8)
assert user.groups.any?
Member.create!(:principal => user.groups.first, :project_id => 1, :role_ids => [2])
Role.non_member.remove_permission!(:view_issues)
issue = Issue.create(:project_id => 1, :tracker_id => 1, :author_id => 3,
:status_id => 1, :priority => IssuePriority.all.first,
:subject => 'Assignment test',
:assigned_to => user.groups.first,
:is_private => true)
Role.find(2).update_attribute :issues_visibility, 'default'
issues = Issue.visible(User.find(8)).all
assert issues.any?
assert issues.include?(issue)
Role.find(2).update_attribute :issues_visibility, 'own'
issues = Issue.visible(User.find(8)).all
assert issues.any?
assert issues.include?(issue)
end
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 def test_visible_scope_for_admin
user = User.find(1)
user.members.each(&:destroy)
assert user.projects.empty?
issues = Issue.visible(user).all
assert issues.any?
# Admin should see issues on private projects that he does not belong to
assert issues.detect {|issue| !issue.project.is_public?}
Jean-Philippe Lang
Private issues (#7414)....
r5346 # Admin should see private issues of other users
assert issues.detect {|issue| issue.is_private? && issue.author != user}
Jean-Philippe Lang
Adds an issues visibility level on roles (#7412)....
r5296 assert_visibility_match user, issues
Jean-Philippe Lang
Add view_issues permission (#3187)....
r2925 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Makes visible scopes accept projects option and deprecate Project.visible_by....
r5204 def test_visible_scope_with_project
project = Project.find(1)
issues = Issue.visible(User.find(2), :project => project).all
projects = issues.collect(&:project).uniq
assert_equal 1, projects.size
assert_equal project, projects.first
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Makes visible scopes accept projects option and deprecate Project.visible_by....
r5204 def test_visible_scope_with_project_and_subprojects
project = Project.find(1)
issues = Issue.visible(User.find(2), :project => project, :with_subprojects => true).all
projects = issues.collect(&:project).uniq
assert projects.size > 1
assert_equal [], projects.select {|p| !p.is_or_is_descendant_of?(project)}
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Fixed: ambiguous lft column SQL error on Issue#descendants with a join on projects....
r5321 def test_visible_and_nested_set_scopes
assert_equal 0, Issue.find(1).descendants.visible.all.size
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Use open scope in version issues count methods....
r8165 def test_open_scope
issues = Issue.open.all
assert_nil issues.detect(&:closed?)
end
def test_open_scope_with_arg
issues = Issue.open(false).all
assert_equal issues, issues.select(&:closed?)
end
Jean-Philippe Lang
Patch ActiveRecord::Errors#full_messages so that it contains custom values error messages....
r2454 def test_errors_full_messages_should_include_custom_fields_errors
field = IssueCustomField.find_by_name('Database')
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Toshi MARUYAMA
code layout clean up of test_errors_full_messages_should_include_custom_fields_errors at test/unit/issue_test.rb...
r7353 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :subject => 'test_create',
:description => 'IssueTest#test_create_with_required_custom_field')
Jean-Philippe Lang
Patch ActiveRecord::Errors#full_messages so that it contains custom values error messages....
r2454 assert issue.available_custom_fields.include?(field)
# Invalid value
issue.custom_field_values = { field.id => 'SQLServer' }
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Patch ActiveRecord::Errors#full_messages so that it contains custom values error messages....
r2454 assert !issue.valid?
assert_equal 1, issue.errors.full_messages.size
Toshi MARUYAMA
code layout clean up of test_errors_full_messages_should_include_custom_fields_errors at test/unit/issue_test.rb...
r7485 assert_equal "Database #{I18n.translate('activerecord.errors.messages.inclusion')}",
issue.errors.full_messages.first
Jean-Philippe Lang
Patch ActiveRecord::Errors#full_messages so that it contains custom values error messages....
r2454 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def test_update_issue_with_required_custom_field
field = IssueCustomField.find_by_name('Database')
field.update_attribute(:is_required, true)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 issue = Issue.find(1)
assert_nil issue.custom_value_for(field)
assert issue.available_custom_fields.include?(field)
# No change to custom values, issue can be saved
assert issue.save
# Blank value
issue.custom_field_values = { field.id => '' }
assert !issue.save
# Valid value
issue.custom_field_values = { field.id => 'PostgreSQL' }
assert issue.save
issue.reload
assert_equal 'PostgreSQL', issue.custom_value_for(field).value
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def test_should_not_update_attributes_if_custom_fields_validation_fails
issue = Issue.find(1)
field = IssueCustomField.find_by_name('Database')
assert issue.available_custom_fields.include?(field)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 issue.custom_field_values = { field.id => 'Invalid' }
issue.subject = 'Should be not be saved'
assert !issue.save
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 issue.reload
assert_equal "Can't print recipes", issue.subject
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 def test_should_not_recreate_custom_values_objects_on_update
field = IssueCustomField.find_by_name('Database')
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Custom fields refactoring: most of code moved from controllers to models (using new module ActsAsCustomizable)....
r1578 issue = Issue.find(1)
issue.custom_field_values = { field.id => 'PostgreSQL' }
assert issue.save
custom_value = issue.custom_value_for(field)
issue.reload
issue.custom_field_values = { field.id => 'MySQL' }
assert issue.save
issue.reload
assert_equal custom_value.id, issue.custom_value_for(field).id
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Fixed that custom values get saved when assigning custom values after changing to a tracker with different custom fields (#9737)....
r7983 def test_should_not_update_custom_fields_on_changing_tracker_with_different_custom_fields
Toshi MARUYAMA
code layout clean up test_should_not_update_custom_fields_on_changing_tracker_with_different_custom_fields of unit issue test...
r10427 issue = Issue.create!(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :subject => 'Test',
:custom_field_values => {'2' => 'Test'})
Jean-Philippe Lang
Fixed that custom values get saved when assigning custom values after changing to a tracker with different custom fields (#9737)....
r7983 assert !Tracker.find(2).custom_field_ids.include?(2)
issue = Issue.find(issue.id)
issue.attributes = {:tracker_id => 2, :custom_field_values => {'1' => ''}}
issue = Issue.find(issue.id)
custom_value = issue.custom_value_for(2)
assert_not_nil custom_value
assert_equal 'Test', custom_value.value
end
Jean-Philippe Lang
Fixes tracker_id and custom_field_values assignment order for issues (#4353)....
r3025 def test_assigning_tracker_id_should_reload_custom_fields_values
issue = Issue.new(:project => Project.find(1))
assert issue.custom_field_values.empty?
issue.tracker_id = 1
assert issue.custom_field_values.any?
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Makes project and tracker assigned first in #attributes=...
r8011 def test_assigning_attributes_should_assign_project_and_tracker_first
seq = sequence('seq')
issue = Issue.new
issue.expects(:project_id=).in_sequence(seq)
issue.expects(:tracker_id=).in_sequence(seq)
issue.expects(:subject=).in_sequence(seq)
issue.attributes = {:tracker_id => 2, :project_id => 1, :subject => 'Test'}
end
def test_assigning_tracker_and_custom_fields_should_assign_custom_fields
Jean-Philippe Lang
Fixes tracker_id and custom_field_values assignment order for issues (#4353)....
r3025 attributes = ActiveSupport::OrderedHash.new
attributes['custom_field_values'] = { '1' => 'MySQL' }
attributes['tracker_id'] = '1'
issue = Issue.new(:project => Project.find(1))
issue.attributes = attributes
Jean-Philippe Lang
Extracts custom field values validation from CustomValue so that they can be validated globally from the customized object (#1189)....
r8597 assert_equal 'MySQL', issue.custom_field_value(1)
Jean-Philippe Lang
Fixes tracker_id and custom_field_values assignment order for issues (#4353)....
r3025 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 def test_should_update_issue_with_disabled_tracker
p = Project.find(1)
issue = Issue.find(1)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 p.trackers.delete(issue.tracker)
assert !p.trackers.include?(issue.tracker)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 issue.reload
issue.subject = 'New subject'
assert issue.save
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 def test_should_not_set_a_disabled_tracker
p = Project.find(1)
p.trackers.delete(Tracker.find(2))
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 issue = Issue.find(1)
issue.tracker_id = 2
issue.subject = 'New subject'
assert !issue.save
Toshi MARUYAMA
Rails3: test: replace deprecated errors.on at test_should_not_set_a_disabled_tracker of unit/issue_test.rb...
r7484 assert_not_nil issue.errors[:tracker_id]
Jean-Philippe Lang
Enable tracker update on issue edit form (#2405)....
r2994 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574 def test_category_based_assignment
Toshi MARUYAMA
code layout clean up of test_category_based_assignment at test/unit/issue_test.rb...
r7352 issue = Issue.create(:project_id => 1, :tracker_id => 1, :author_id => 3,
:status_id => 1, :priority => IssuePriority.all.first,
:subject => 'Assignment test',
:description => 'Assignment test', :category_id => 1)
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574 assert_equal IssueCategory.find(1).assigned_to, issue.assigned_to
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 def test_new_statuses_allowed_to
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 WorkflowTransition.delete_all
Toshi MARUYAMA
code layout clean up test_new_statuses_allowed_to of unit issue test...
r10432 WorkflowTransition.create!(:role_id => 1, :tracker_id => 1,
:old_status_id => 1, :new_status_id => 2,
:author => false, :assignee => false)
WorkflowTransition.create!(:role_id => 1, :tracker_id => 1,
:old_status_id => 1, :new_status_id => 3,
:author => true, :assignee => false)
WorkflowTransition.create!(:role_id => 1, :tracker_id => 1, :old_status_id => 1,
:new_status_id => 4, :author => false,
:assignee => true)
WorkflowTransition.create!(:role_id => 1, :tracker_id => 1,
:old_status_id => 1, :new_status_id => 5,
:author => true, :assignee => true)
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 status = IssueStatus.find(1)
role = Role.find(1)
tracker = Tracker.find(1)
user = User.find(2)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Toshi MARUYAMA
code layout clean up test_new_statuses_allowed_to of unit issue test...
r10432 issue = Issue.generate!(:tracker => tracker, :status => status,
:project_id => 1, :author_id => 1)
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 assert_equal [1, 2], issue.new_statuses_allowed_to(user).map(&:id)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Toshi MARUYAMA
code layout clean up test_new_statuses_allowed_to of unit issue test...
r10432 issue = Issue.generate!(:tracker => tracker, :status => status,
:project_id => 1, :author => user)
Jean-Philippe Lang
Fixes assertions (#8836)....
r6182 assert_equal [1, 2, 3, 5], issue.new_statuses_allowed_to(user).map(&:id)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Toshi MARUYAMA
code layout clean up test_new_statuses_allowed_to of unit issue test...
r10432 issue = Issue.generate!(:tracker => tracker, :status => status,
:project_id => 1, :author_id => 1,
:assigned_to => user)
Jean-Philippe Lang
Fixes assertions (#8836)....
r6182 assert_equal [1, 2, 4, 5], issue.new_statuses_allowed_to(user).map(&:id)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Toshi MARUYAMA
code layout clean up test_new_statuses_allowed_to of unit issue test...
r10432 issue = Issue.generate!(:tracker => tracker, :status => status,
:project_id => 1, :author => user,
:assigned_to => user)
Jean-Philippe Lang
Allow additional workflow transitions for issue author and assignee (#2732)....
r4775 assert_equal [1, 2, 3, 4, 5], issue.new_statuses_allowed_to(user).map(&:id)
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Makes all workflow transitions defined for all roles available to administrators (#2323)....
r8587 def test_new_statuses_allowed_to_should_return_all_transitions_for_admin
admin = User.find(1)
issue = Issue.find(1)
assert !admin.member_of?(issue.project)
Toshi MARUYAMA
code layout clean up test_new_statuses_allowed_to_should_return_all_transitions_for_admin of unit issue test...
r10433 expected_statuses = [issue.status] +
WorkflowTransition.find_all_by_old_status_id(
issue.status_id).map(&:new_status).uniq.sort
Jean-Philippe Lang
Makes all workflow transitions defined for all roles available to administrators (#2323)....
r8587 assert_equal expected_statuses, issue.new_statuses_allowed_to(admin)
end
Jean-Philippe Lang
When copying issues, let the status be changed to default or left unchanged....
r9270 def test_new_statuses_allowed_to_should_return_default_and_current_status_when_copying
issue = Issue.find(1).copy
assert_equal [1], issue.new_statuses_allowed_to(User.find(2)).map(&:id)
issue = Issue.find(2).copy
assert_equal [1, 2], issue.new_statuses_allowed_to(User.find(2)).map(&:id)
end
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 def test_safe_attributes_names_should_not_include_disabled_field
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729 tracker = Tracker.new(:core_fields => %w(assigned_to_id fixed_version_id))
issue = Issue.new(:tracker => tracker)
assert_include 'tracker_id', issue.safe_attribute_names
assert_include 'status_id', issue.safe_attribute_names
assert_include 'subject', issue.safe_attribute_names
assert_include 'description', issue.safe_attribute_names
assert_include 'custom_field_values', issue.safe_attribute_names
assert_include 'custom_fields', issue.safe_attribute_names
assert_include 'lock_version', issue.safe_attribute_names
tracker.core_fields.each do |field|
assert_include field, issue.safe_attribute_names
end
tracker.disabled_core_fields.each do |field|
assert_not_include field, issue.safe_attribute_names
end
end
def test_safe_attributes_should_ignore_disabled_fields
tracker = Tracker.find(1)
tracker.core_fields = %w(assigned_to_id due_date)
tracker.save!
issue = Issue.new(:tracker => tracker)
issue.safe_attributes = {'start_date' => '2012-07-14', 'due_date' => '2012-07-14'}
assert_nil issue.start_date
assert_equal Date.parse('2012-07-14'), issue.due_date
end
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 def test_safe_attributes_should_accept_target_tracker_enabled_fields
Jean-Philippe Lang
Ability to disable standard fields on a per tracker basis (#1091)....
r9729 source = Tracker.find(1)
source.core_fields = []
source.save!
target = Tracker.find(2)
target.core_fields = %w(assigned_to_id due_date)
target.save!
issue = Issue.new(:tracker => source)
issue.safe_attributes = {'tracker_id' => 2, 'due_date' => '2012-07-14'}
assert_equal target, issue.tracker
assert_equal Date.parse('2012-07-14'), issue.due_date
end
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794
def test_safe_attributes_should_not_include_readonly_fields
WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_not_include_readonly_fields of unit issue test...
r10428 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'due_date',
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
issue = Issue.new(:project_id => 1, :tracker_id => 1)
assert_equal %w(due_date), issue.read_only_attribute_names(user)
assert_not_include 'due_date', issue.safe_attribute_names(user)
issue.send :safe_attributes=, {'start_date' => '2012-07-14', 'due_date' => '2012-07-14'}, user
assert_equal Date.parse('2012-07-14'), issue.start_date
assert_nil issue.due_date
end
def test_safe_attributes_should_not_include_readonly_custom_fields
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_not_include_readonly_custom_fields of unit issue test...
r10429 cf1 = IssueCustomField.create!(:name => 'Writable field',
:field_format => 'string',
:is_for_all => true, :tracker_ids => [1])
cf2 = IssueCustomField.create!(:name => 'Readonly field',
:field_format => 'string',
:is_for_all => true, :tracker_ids => [1])
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_not_include_readonly_custom_fields of unit issue test...
r10429 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => cf2.id.to_s,
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
issue = Issue.new(:project_id => 1, :tracker_id => 1)
assert_equal [cf2.id.to_s], issue.read_only_attribute_names(user)
assert_not_include cf2.id.to_s, issue.safe_attribute_names(user)
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_not_include_readonly_custom_fields of unit issue test...
r10429 issue.send :safe_attributes=, {'custom_field_values' => {
cf1.id.to_s => 'value1', cf2.id.to_s => 'value2'
}}, user
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal 'value1', issue.custom_field_value(cf1)
assert_nil issue.custom_field_value(cf2)
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_not_include_readonly_custom_fields of unit issue test...
r10429 issue.send :safe_attributes=, {'custom_fields' => [
{'id' => cf1.id.to_s, 'value' => 'valuea'},
{'id' => cf2.id.to_s, 'value' => 'valueb'}
]}, user
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal 'valuea', issue.custom_field_value(cf1)
assert_nil issue.custom_field_value(cf2)
end
def test_editable_custom_field_values_should_return_non_readonly_custom_values
Toshi MARUYAMA
code layout clean up test_editable_custom_field_values_should_return_non_readonly_custom_values of unit issue test...
r10430 cf1 = IssueCustomField.create!(:name => 'Writable field', :field_format => 'string',
:is_for_all => true, :tracker_ids => [1, 2])
cf2 = IssueCustomField.create!(:name => 'Readonly field', :field_format => 'string',
:is_for_all => true, :tracker_ids => [1, 2])
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_editable_custom_field_values_should_return_non_readonly_custom_values of unit issue test...
r10430 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1, :role_id => 1,
:field_name => cf2.id.to_s, :rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
issue = Issue.new(:project_id => 1, :tracker_id => 1)
values = issue.editable_custom_field_values(user)
assert values.detect {|value| value.custom_field == cf1}
assert_nil values.detect {|value| value.custom_field == cf2}
issue.tracker_id = 2
values = issue.editable_custom_field_values(user)
assert values.detect {|value| value.custom_field == cf1}
assert values.detect {|value| value.custom_field == cf2}
end
def test_safe_attributes_should_accept_target_tracker_writable_fields
WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_accept_target_tracker_writable_fields of unit issue test...
r10431 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'due_date',
:rule => 'readonly')
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 2,
:role_id => 1, :field_name => 'start_date',
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
issue = Issue.new(:project_id => 1, :tracker_id => 1, :status_id => 1)
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_accept_target_tracker_writable_fields of unit issue test...
r10431 issue.send :safe_attributes=, {'start_date' => '2012-07-12',
'due_date' => '2012-07-14'}, user
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal Date.parse('2012-07-12'), issue.start_date
assert_nil issue.due_date
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_accept_target_tracker_writable_fields of unit issue test...
r10431 issue.send :safe_attributes=, {'start_date' => '2012-07-15',
'due_date' => '2012-07-16',
'tracker_id' => 2}, user
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal Date.parse('2012-07-12'), issue.start_date
assert_equal Date.parse('2012-07-16'), issue.due_date
end
def test_safe_attributes_should_accept_target_status_writable_fields
WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_accept_target_status_writable_fields of unit issue test...
r10434 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'due_date',
:rule => 'readonly')
WorkflowPermission.create!(:old_status_id => 2, :tracker_id => 1,
:role_id => 1, :field_name => 'start_date',
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
issue = Issue.new(:project_id => 1, :tracker_id => 1, :status_id => 1)
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_accept_target_status_writable_fields of unit issue test...
r10434 issue.send :safe_attributes=, {'start_date' => '2012-07-12',
'due_date' => '2012-07-14'},
user
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal Date.parse('2012-07-12'), issue.start_date
assert_nil issue.due_date
Toshi MARUYAMA
code layout clean up test_safe_attributes_should_accept_target_status_writable_fields of unit issue test...
r10434 issue.send :safe_attributes=, {'start_date' => '2012-07-15',
'due_date' => '2012-07-16',
'status_id' => 2},
user
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal Date.parse('2012-07-12'), issue.start_date
assert_equal Date.parse('2012-07-16'), issue.due_date
end
def test_required_attributes_should_be_validated
Toshi MARUYAMA
code layout clean up test_required_attributes_should_be_validated of unit issue test...
r10435 cf = IssueCustomField.create!(:name => 'Foo', :field_format => 'string',
:is_for_all => true, :tracker_ids => [1, 2])
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794
WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_required_attributes_should_be_validated of unit issue test...
r10435 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'due_date',
:rule => 'required')
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'category_id',
:rule => 'required')
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => cf.id.to_s,
:rule => 'required')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794
Toshi MARUYAMA
code layout clean up test_required_attributes_should_be_validated of unit issue test...
r10435 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 2,
:role_id => 1, :field_name => 'start_date',
:rule => 'required')
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 2,
:role_id => 1, :field_name => cf.id.to_s,
:rule => 'required')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
Toshi MARUYAMA
code layout clean up test_required_attributes_should_be_validated of unit issue test...
r10435 issue = Issue.new(:project_id => 1, :tracker_id => 1,
:status_id => 1, :subject => 'Required fields',
:author => user)
assert_equal [cf.id.to_s, "category_id", "due_date"],
issue.required_attribute_names(user).sort
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert !issue.save, "Issue was saved"
Toshi MARUYAMA
code layout clean up test_required_attributes_should_be_validated of unit issue test...
r10435 assert_equal ["Category can't be blank", "Due date can't be blank", "Foo can't be blank"],
issue.errors.full_messages.sort
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794
issue.tracker_id = 2
assert_equal [cf.id.to_s, "start_date"], issue.required_attribute_names(user).sort
assert !issue.save, "Issue was saved"
Toshi MARUYAMA
code layout clean up test_required_attributes_should_be_validated of unit issue test...
r10435 assert_equal ["Foo can't be blank", "Start date can't be blank"],
issue.errors.full_messages.sort
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794
issue.start_date = Date.today
issue.custom_field_values = {cf.id.to_s => 'bar'}
assert issue.save
end
def test_required_attribute_names_for_multiple_roles_should_intersect_rules
WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_required_attribute_names_for_multiple_roles_should_intersect_rules of unit issue test...
r10437 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'due_date',
:rule => 'required')
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'start_date',
:rule => 'required')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
member = Member.find(1)
issue = Issue.new(:project_id => 1, :tracker_id => 1, :status_id => 1)
assert_equal %w(due_date start_date), issue.required_attribute_names(user).sort
member.role_ids = [1, 2]
member.save!
assert_equal [], issue.required_attribute_names(user.reload)
Toshi MARUYAMA
code layout clean up test_required_attribute_names_for_multiple_roles_should_intersect_rules of unit issue test...
r10437 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 2, :field_name => 'due_date',
:rule => 'required')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal %w(due_date), issue.required_attribute_names(user)
member.role_ids = [1, 2, 3]
member.save!
assert_equal [], issue.required_attribute_names(user.reload)
Toshi MARUYAMA
code layout clean up test_required_attribute_names_for_multiple_roles_should_intersect_rules of unit issue test...
r10437 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 2, :field_name => 'due_date',
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 # required + readonly => required
assert_equal %w(due_date), issue.required_attribute_names(user)
end
def test_read_only_attribute_names_for_multiple_roles_should_intersect_rules
WorkflowPermission.delete_all
Toshi MARUYAMA
code layout clean up test_read_only_attribute_names_for_multiple_roles_should_intersect_rules of unit issue test...
r10438 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'due_date',
:rule => 'readonly')
WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 1, :field_name => 'start_date',
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 user = User.find(2)
member = Member.find(1)
issue = Issue.new(:project_id => 1, :tracker_id => 1, :status_id => 1)
assert_equal %w(due_date start_date), issue.read_only_attribute_names(user).sort
member.role_ids = [1, 2]
member.save!
assert_equal [], issue.read_only_attribute_names(user.reload)
Toshi MARUYAMA
code layout clean up test_read_only_attribute_names_for_multiple_roles_should_intersect_rules of unit issue test...
r10438 WorkflowPermission.create!(:old_status_id => 1, :tracker_id => 1,
:role_id => 2, :field_name => 'due_date',
:rule => 'readonly')
Jean-Philippe Lang
Workflow enhancement: editable and required fields configurable by role, tracker and status (#703, #3521)....
r9794 assert_equal %w(due_date), issue.read_only_attribute_names(user)
end
Jean-Philippe Lang
When copying issues, let the status be changed to default or left unchanged....
r9270
Jean-Philippe Lang
Added the hability to copy an issue....
r860 def test_copy
issue = Issue.new.copy_from(1)
Jean-Philippe Lang
Use the regular issue form to copy a single issue....
r8432 assert issue.copy?
Jean-Philippe Lang
Added the hability to copy an issue....
r860 assert issue.save
issue.reload
orig = Issue.find(1)
assert_equal orig.subject, issue.subject
assert_equal orig.tracker, issue.tracker
Jean-Philippe Lang
Fixes a test failure....
r3100 assert_equal "125", issue.custom_value_for(2).value
Jean-Philippe Lang
Added the hability to copy an issue....
r860 end
Jean-Philippe Lang
Copy issue status on project copy (#3877)....
r2961
def test_copy_should_copy_status
orig = Issue.find(8)
assert orig.status != IssueStatus.default
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Copy issue status on project copy (#3877)....
r2961 issue = Issue.new.copy_from(orig)
assert issue.save
issue.reload
assert_equal orig.status, issue.status
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds a "Copied from/to" relation when copying issue(s) (#6899)....
r10282 def test_copy_should_add_relation_with_copied_issue
copied = Issue.find(1)
issue = Issue.new.copy_from(copied)
assert issue.save
issue.reload
assert_equal 1, issue.relations.size
relation = issue.relations.first
assert_equal 'copied_to', relation.relation_type
assert_equal copied, relation.issue_from
assert_equal issue, relation.issue_to
end
Jean-Philippe Lang
Option to copy subtasks when copying issue(s) (#6965)....
r10144 def test_copy_should_copy_subtasks
Jean-Philippe Lang
Makes Issue.generate_with_descendants! helper accept attributes only....
r10401 issue = Issue.generate_with_descendants!
Jean-Philippe Lang
Option to copy subtasks when copying issue(s) (#6965)....
r10144
copy = issue.reload.copy
copy.author = User.find(7)
assert_difference 'Issue.count', 1+issue.descendants.count do
assert copy.save
end
copy.reload
assert_equal %w(Child1 Child2), copy.children.map(&:subject).sort
child_copy = copy.children.detect {|c| c.subject == 'Child1'}
assert_equal %w(Child11), child_copy.children.map(&:subject).sort
assert_equal copy.author, child_copy.author
end
def test_copy_should_copy_subtasks_to_target_project
Jean-Philippe Lang
Makes Issue.generate_with_descendants! helper accept attributes only....
r10401 issue = Issue.generate_with_descendants!
Jean-Philippe Lang
Option to copy subtasks when copying issue(s) (#6965)....
r10144
copy = issue.copy(:project_id => 3)
assert_difference 'Issue.count', 1+issue.descendants.count do
assert copy.save
end
assert_equal [3], copy.reload.descendants.map(&:project_id).uniq
end
def test_copy_should_not_copy_subtasks_twice_when_saving_twice
Jean-Philippe Lang
Makes Issue.generate_with_descendants! helper accept attributes only....
r10401 issue = Issue.generate_with_descendants!
Jean-Philippe Lang
Option to copy subtasks when copying issue(s) (#6965)....
r10144
copy = issue.reload.copy
assert_difference 'Issue.count', 1+issue.descendants.count do
assert copy.save
assert copy.save
end
end
Jean-Philippe Lang
Extracted some code from #move_to_project to a callback....
r8404 def test_should_not_call_after_project_change_on_creation
Toshi MARUYAMA
code layout clean up test_should_not_call_after_project_change_on_creation of unit issue test...
r10439 issue = Issue.new(:project_id => 1, :tracker_id => 1, :status_id => 1,
:subject => 'Test', :author_id => 1)
Jean-Philippe Lang
Extracted some code from #move_to_project to a callback....
r8404 issue.expects(:after_project_change).never
issue.save!
end
def test_should_not_call_after_project_change_on_update
issue = Issue.find(1)
issue.project = Project.find(1)
issue.subject = 'No project change'
issue.expects(:after_project_change).never
issue.save!
end
def test_should_call_after_project_change_on_project_change
issue = Issue.find(1)
issue.project = Project.find(2)
issue.expects(:after_project_change).once
issue.save!
end
Jean-Philippe Lang
Fixed that updated_on is not updated when updating an issue (#10964)....
r9520 def test_adding_journal_should_update_timestamp
issue = Issue.find(1)
updated_on_was = issue.updated_on
issue.init_journal(User.first, "Adding notes")
assert_difference 'Journal.count' do
assert issue.save
end
issue.reload
assert_not_equal updated_on_was, issue.updated_on
end
Jean-Philippe Lang
Make the 'duplicates of' relation asymmetric:...
r1474 def test_should_close_duplicates
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 # Create 3 issues
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue1 = Issue.generate!
issue2 = Issue.generate!
issue3 = Issue.generate!
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 # 2 is a dupe of 1
Toshi MARUYAMA
code layout clean up test_should_close_duplicates of unit issue test...
r10440 IssueRelation.create!(:issue_from => issue2, :issue_to => issue1,
:relation_type => IssueRelation::TYPE_DUPLICATES)
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 # And 3 is a dupe of 2
Toshi MARUYAMA
code layout clean up test_should_close_duplicates of unit issue test...
r10440 IssueRelation.create!(:issue_from => issue3, :issue_to => issue2,
:relation_type => IssueRelation::TYPE_DUPLICATES)
Jean-Philippe Lang
Fixed: ActiveRecord::StaleObjectError exception on closing a set of circular duplicate issues (#1105)....
r1345 # And 3 is a dupe of 1 (circular duplicates)
Toshi MARUYAMA
code layout clean up test_should_close_duplicates of unit issue test...
r10440 IssueRelation.create!(:issue_from => issue3, :issue_to => issue1,
:relation_type => IssueRelation::TYPE_DUPLICATES)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 assert issue1.reload.duplicates.include?(issue2)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 # Closing issue 1
Jean-Philippe Lang
Replaces find(:first) calls....
r10701 issue1.init_journal(User.first, "Closing issue1")
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 issue1.status = IssueStatus.find :first, :conditions => {:is_closed => true}
assert issue1.save
# 2 and 3 should be also closed
assert issue2.reload.closed?
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686 assert issue3.reload.closed?
Jean-Philippe Lang
Automatic closing of duplicate issues....
r657 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Make the 'duplicates of' relation asymmetric:...
r1474 def test_should_not_close_duplicated_issue
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue1 = Issue.generate!
issue2 = Issue.generate!
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Make the 'duplicates of' relation asymmetric:...
r1474 # 2 is a dupe of 1
Toshi MARUYAMA
code layout clean up test_should_not_close_duplicated_issue of unit issue test...
r10441 IssueRelation.create(:issue_from => issue2, :issue_to => issue1,
:relation_type => IssueRelation::TYPE_DUPLICATES)
Jean-Philippe Lang
Make the 'duplicates of' relation asymmetric:...
r1474 # 2 is a dup of 1 but 1 is not a duplicate of 2
assert !issue2.reload.duplicates.include?(issue1)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Make the 'duplicates of' relation asymmetric:...
r1474 # Closing issue 2
Jean-Philippe Lang
Replaces find(:first) calls....
r10701 issue2.init_journal(User.first, "Closing issue2")
Jean-Philippe Lang
Make the 'duplicates of' relation asymmetric:...
r1474 issue2.status = IssueStatus.find :first, :conditions => {:is_closed => true}
assert issue2.save
# 1 should not be also closed
assert !issue1.reload.closed?
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_assignable_versions
Toshi MARUYAMA
code layout clean up test_assignable_versions of unit issue test...
r10443 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :fixed_version_id => 1,
:subject => 'New issue')
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 assert_equal ['open'], issue.assignable_versions.collect(&:status).uniq
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_not_be_able_to_assign_a_new_issue_to_a_closed_version
Toshi MARUYAMA
code layout clean up test_should_not_be_able_to_assign_a_new_issue_to_a_closed_version of unit issue test...
r10442 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :fixed_version_id => 1,
:subject => 'New issue')
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 assert !issue.save
Toshi MARUYAMA
Rails3: test: replace deprecated errors.on at test_should_not_be_able_to_assign_a_new_issue_to_a_closed_version of unit/issue_test.rb...
r7489 assert_not_nil issue.errors[:fixed_version_id]
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_not_be_able_to_assign_a_new_issue_to_a_locked_version
Toshi MARUYAMA
code layout clean up test_should_not_be_able_to_assign_a_new_issue_to_a_locked_version of unit issue test...
r10444 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :fixed_version_id => 2,
:subject => 'New issue')
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 assert !issue.save
Toshi MARUYAMA
Rails3: test: replace deprecated errors.on at test_should_not_be_able_to_assign_a_new_issue_to_a_locked_version of unit/issue_test.rb...
r7490 assert_not_nil issue.errors[:fixed_version_id]
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_be_able_to_assign_a_new_issue_to_an_open_version
Toshi MARUYAMA
code layout clean up test_should_be_able_to_assign_a_new_issue_to_an_open_version of unit issue test...
r10436 issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :fixed_version_id => 3,
:subject => 'New issue')
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 assert issue.save
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_be_able_to_update_an_issue_assigned_to_a_closed_version
issue = Issue.find(11)
assert_equal 'closed', issue.fixed_version.status
issue.subject = 'Subject changed'
assert issue.save
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_not_be_able_to_reopen_an_issue_assigned_to_a_closed_version
issue = Issue.find(11)
issue.status_id = 1
assert !issue.save
Toshi MARUYAMA
Rails3: test: replace deprecated errors.on_base at test_should_not_be_able_to_reopen_an_issue_assigned_to_a_closed_version of unit/issue_test.rb...
r7491 assert_not_nil issue.errors[:base]
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_be_able_to_reopen_and_reassign_an_issue_assigned_to_a_closed_version
issue = Issue.find(11)
issue.status_id = 1
issue.fixed_version_id = 3
assert issue.save
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds version status to limit issue assignments (#1245)....
r2906 def test_should_be_able_to_reopen_an_issue_assigned_to_a_locked_version
issue = Issue.find(12)
assert_equal 'locked', issue.fixed_version.status
issue.status_id = 1
assert issue.save
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Versions that are not shared should not be assignable when selecting another project (#11506)....
r9903 def test_should_not_be_able_to_keep_unshared_version_when_changing_project
issue = Issue.find(2)
assert_equal 2, issue.fixed_version_id
issue.project_id = 3
assert_nil issue.fixed_version_id
issue.fixed_version_id = 2
assert !issue.save
assert_include 'Target version is not included in the list', issue.errors.full_messages
end
def test_should_keep_shared_version_when_changing_project
Version.find(2).update_attribute :sharing, 'tree'
issue = Issue.find(2)
assert_equal 2, issue.fixed_version_id
issue.project_id = 3
assert_equal 2, issue.fixed_version_id
assert issue.save
end
Jean-Philippe Lang
Fixed that issues can be moved to projects with issue tracking disabled (#10467)....
r9139 def test_allowed_target_projects_on_move_should_include_projects_with_issue_tracking_enabled
assert_include Project.find(2), Issue.allowed_target_projects_on_move(User.find(2))
end
def test_allowed_target_projects_on_move_should_not_include_projects_with_issue_tracking_disabled
Project.find(2).disable_module! :issue_tracking
assert_not_include Project.find(2), Issue.allowed_target_projects_on_move(User.find(2))
end
Jean-Philippe Lang
When moving an issue to another project, reassign it to the category with same name if any (#1653)....
r1688 def test_move_to_another_project_with_same_category
Jean-Philippe Lang
Fixed: Update of time entry fails when the issue has been moved to an other project....
r896 issue = Issue.find(1)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = Project.find(2)
assert issue.save
Jean-Philippe Lang
Fixed: Update of time entry fails when the issue has been moved to an other project....
r896 issue.reload
assert_equal 2, issue.project_id
Jean-Philippe Lang
When moving an issue to another project, reassign it to the category with same name if any (#1653)....
r1688 # Category changes
assert_equal 4, issue.category_id
Jean-Philippe Lang
Fixed: Update of time entry fails when the issue has been moved to an other project....
r896 # Make sure time entries were move to the target project
assert_equal 2, issue.time_entries.first.project_id
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
When moving an issue to another project, reassign it to the category with same name if any (#1653)....
r1688 def test_move_to_another_project_without_same_category
issue = Issue.find(2)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = Project.find(2)
assert issue.save
Jean-Philippe Lang
When moving an issue to another project, reassign it to the category with same name if any (#1653)....
r1688 issue.reload
assert_equal 2, issue.project_id
# Category cleared
assert_nil issue.category_id
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 def test_move_to_another_project_should_clear_fixed_version_when_not_shared
issue = Issue.find(1)
issue.update_attribute(:fixed_version_id, 1)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = Project.find(2)
assert issue.save
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 issue.reload
assert_equal 2, issue.project_id
# Cleared fixed_version
assert_equal nil, issue.fixed_version
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 def test_move_to_another_project_should_keep_fixed_version_when_shared_with_the_target_project
issue = Issue.find(1)
issue.update_attribute(:fixed_version_id, 4)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = Project.find(5)
assert issue.save
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 issue.reload
assert_equal 5, issue.project_id
# Keep fixed_version
assert_equal 4, issue.fixed_version_id
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 def test_move_to_another_project_should_clear_fixed_version_when_not_shared_with_the_target_project
issue = Issue.find(1)
issue.update_attribute(:fixed_version_id, 1)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = Project.find(5)
assert issue.save
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 issue.reload
assert_equal 5, issue.project_id
# Cleared fixed_version
assert_equal nil, issue.fixed_version
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 def test_move_to_another_project_should_keep_fixed_version_when_shared_systemwide
issue = Issue.find(1)
issue.update_attribute(:fixed_version_id, 7)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = Project.find(2)
assert issue.save
Jean-Philippe Lang
Version sharing (#465) + optional inclusion of subprojects in the roadmap view (#2666)....
r3009 issue.reload
assert_equal 2, issue.project_id
# Keep fixed_version
assert_equal 7, issue.fixed_version_id
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds a setting to allow subtasks to belong to other projects (#5487)....
r10376 def test_move_to_another_project_should_keep_parent_if_valid
issue = Issue.find(1)
issue.update_attribute(:parent_issue_id, 2)
issue.project = Project.find(3)
assert issue.save
issue.reload
assert_equal 2, issue.parent_id
end
def test_move_to_another_project_should_clear_parent_if_not_valid
issue = Issue.find(1)
issue.update_attribute(:parent_issue_id, 2)
issue.project = Project.find(2)
assert issue.save
issue.reload
assert_nil issue.parent_id
end
Jean-Philippe Lang
Fixed: error while moving an issue to a project with disabled tracker with SQLite3 (#5049)....
r3452 def test_move_to_another_project_with_disabled_tracker
issue = Issue.find(1)
target = Project.find(2)
target.tracker_ids = [3]
target.save
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 issue.project = target
assert issue.save
Jean-Philippe Lang
Fixed: error while moving an issue to a project with disabled tracker with SQLite3 (#5049)....
r3452 issue.reload
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 assert_equal 2, issue.project_id
assert_equal 3, issue.tracker_id
Jean-Philippe Lang
Fixed: error while moving an issue to a project with disabled tracker with SQLite3 (#5049)....
r3452 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 def test_copy_to_the_same_project
issue = Issue.find(1)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 copy = issue.copy
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 assert_difference 'Issue.count' do
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 copy.save!
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 end
assert_kind_of Issue, copy
assert_equal issue.project, copy.project
assert_equal "125", copy.custom_value_for(2).value
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 def test_copy_to_another_project_and_tracker
issue = Issue.find(1)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 copy = issue.copy(:project_id => 3, :tracker_id => 2)
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 assert_difference 'Issue.count' do
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 copy.save!
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 end
Jean-Philippe Lang
Adds subtasking (#443) including:...
r3459 copy.reload
Jean-Philippe Lang
Adds ability to bulk copy issues (#1847)....
r2311 assert_kind_of Issue, copy
assert_equal Project.find(3), copy.project
assert_equal Tracker.find(2), copy.tracker
# Custom field #2 is not associated with target tracker
assert_nil copy.custom_value_for(2)
end
Eric Davis
Enhanced the Issue Bulk Copy feature:...
r3008
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 context "#copy" do
setup do
@issue = Issue.find(1)
end
should "not create a journal" do
copy = @issue.copy(:project_id => 3, :tracker_id => 2, :assigned_to_id => 3)
copy.save!
assert_equal 0, copy.reload.journals.size
end
should "allow assigned_to changes" do
copy = @issue.copy(:project_id => 3, :tracker_id => 2, :assigned_to_id => 3)
assert_equal 3, copy.assigned_to_id
end
should "allow status changes" do
copy = @issue.copy(:project_id => 3, :tracker_id => 2, :status_id => 2)
assert_equal 2, copy.status_id
end
should "allow start date changes" do
date = Date.today
copy = @issue.copy(:project_id => 3, :tracker_id => 2, :start_date => date)
assert_equal date, copy.start_date
end
should "allow due date changes" do
date = Date.today
copy = @issue.copy(:project_id => 3, :tracker_id => 2, :due_date => date)
assert_equal date, copy.due_date
end
should "set current user as author" do
User.current = User.find(9)
copy = @issue.copy(:project_id => 3, :tracker_id => 2)
assert_equal User.current, copy.author
end
should "create a journal with notes" do
date = Date.today
notes = "Notes added when copying"
copy = @issue.copy(:project_id => 3, :tracker_id => 2, :start_date => date)
copy.init_journal(User.current, notes)
copy.save!
assert_equal 1, copy.journals.size
journal = copy.journals.first
assert_equal 0, journal.details.size
assert_equal notes, journal.notes
Eric Davis
Enhanced the Issue Bulk Copy feature:...
r3008 end
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Adds a setting to allow subtasks to belong to other projects (#5487)....
r10376 def test_valid_parent_project
issue = Issue.find(1)
issue_in_same_project = Issue.find(2)
issue_in_child_project = Issue.find(5)
issue_in_grandchild_project = Issue.generate!(:project_id => 6, :tracker_id => 1)
issue_in_other_child_project = Issue.find(6)
issue_in_different_tree = Issue.find(4)
with_settings :cross_project_subtasks => '' do
assert_equal true, issue.valid_parent_project?(issue_in_same_project)
assert_equal false, issue.valid_parent_project?(issue_in_child_project)
assert_equal false, issue.valid_parent_project?(issue_in_grandchild_project)
assert_equal false, issue.valid_parent_project?(issue_in_different_tree)
end
with_settings :cross_project_subtasks => 'system' do
assert_equal true, issue.valid_parent_project?(issue_in_same_project)
assert_equal true, issue.valid_parent_project?(issue_in_child_project)
assert_equal true, issue.valid_parent_project?(issue_in_different_tree)
end
with_settings :cross_project_subtasks => 'tree' do
assert_equal true, issue.valid_parent_project?(issue_in_same_project)
assert_equal true, issue.valid_parent_project?(issue_in_child_project)
assert_equal true, issue.valid_parent_project?(issue_in_grandchild_project)
assert_equal false, issue.valid_parent_project?(issue_in_different_tree)
assert_equal true, issue_in_child_project.valid_parent_project?(issue_in_same_project)
assert_equal true, issue_in_child_project.valid_parent_project?(issue_in_other_child_project)
end
with_settings :cross_project_subtasks => 'descendants' do
assert_equal true, issue.valid_parent_project?(issue_in_same_project)
assert_equal false, issue.valid_parent_project?(issue_in_child_project)
assert_equal false, issue.valid_parent_project?(issue_in_grandchild_project)
assert_equal false, issue.valid_parent_project?(issue_in_different_tree)
assert_equal true, issue_in_child_project.valid_parent_project?(issue)
assert_equal false, issue_in_child_project.valid_parent_project?(issue_in_other_child_project)
end
end
Jean-Philippe Lang
Notify previous assignee when assignee changes (#2694)....
r8575 def test_recipients_should_include_previous_assignee
user = User.find(3)
user.members.update_all ["mail_notification = ?", false]
user.update_attribute :mail_notification, 'only_assigned'
issue = Issue.find(2)
issue.assigned_to = nil
assert_include user.mail, issue.recipients
issue.save!
assert !issue.recipients.include?(user.mail)
end
Jean-Philippe Lang
Do not notify users that are no longer allowed to view an issue (#3589, #4263)....
r3007 def test_recipients_should_not_include_users_that_cannot_view_the_issue
issue = Issue.find(12)
assert issue.recipients.include?(issue.author.mail)
Jean-Philippe Lang
Deprecated Issue#move_to_project....
r8419 # copy the issue to a private project
copy = issue.copy(:project_id => 5, :tracker_id => 2)
Jean-Philippe Lang
Do not notify users that are no longer allowed to view an issue (#3589, #4263)....
r3007 # author is not a member of project anymore
assert !copy.recipients.include?(copy.author.mail)
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 def test_recipients_should_include_the_assigned_group_members
Jean-Philippe Lang
Removed #generate_with_protected helper methods....
r9337 group_member = User.generate!
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 group = Group.generate!
group.users << group_member
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 issue = Issue.find(12)
issue.assigned_to = group
assert issue.recipients.include?(group_member.mail)
end
Jean-Philippe Lang
Do not notify users that are no longer allowed to view an issue (#3589, #4263)....
r3007
def test_watcher_recipients_should_not_include_users_that_cannot_view_the_issue
user = User.find(3)
issue = Issue.find(9)
Watcher.create!(:user => user, :watchable => issue)
assert issue.watched_by?(user)
assert !issue.watcher_recipients.include?(user.mail)
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Let the user choose when deleting issues with reported hours (closes #734, #71):...
r1168 def test_issue_destroy
Issue.find(1).destroy
assert_nil Issue.find_by_id(1)
assert_nil TimeEntry.find_by_issue_id(1)
end
Jean-Philippe Lang
Fixed that deleting a project with subtasks may fail (#11185)....
r9675
def test_destroying_a_deleted_issue_should_not_raise_an_error
issue = Issue.find(1)
Issue.find(1).destroy
assert_nothing_raised do
assert_no_difference 'Issue.count' do
issue.destroy
end
assert issue.destroyed?
end
end
def test_destroying_a_stale_issue_should_not_raise_an_error
issue = Issue.find(1)
Issue.find(1).update_attribute :subject, "Updated"
assert_nothing_raised do
assert_difference 'Issue.count', -1 do
issue.destroy
end
assert issue.destroyed?
end
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Actually block issues from closing when a blocking issue isn't closed (#1740)....
r2700 def test_blocked
blocked_issue = Issue.find(9)
blocking_issue = Issue.find(10)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Actually block issues from closing when a blocking issue isn't closed (#1740)....
r2700 assert blocked_issue.blocked?
assert !blocking_issue.blocked?
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Actually block issues from closing when a blocking issue isn't closed (#1740)....
r2700 def test_blocked_issues_dont_allow_closed_statuses
blocked_issue = Issue.find(9)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Actually block issues from closing when a blocking issue isn't closed (#1740)....
r2700 allowed_statuses = blocked_issue.new_statuses_allowed_to(users(:users_002))
assert !allowed_statuses.empty?
closed_statuses = allowed_statuses.select {|st| st.is_closed?}
assert closed_statuses.empty?
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Actually block issues from closing when a blocking issue isn't closed (#1740)....
r2700 def test_unblocked_issues_allow_closed_statuses
blocking_issue = Issue.find(10)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Actually block issues from closing when a blocking issue isn't closed (#1740)....
r2700 allowed_statuses = blocking_issue.new_statuses_allowed_to(users(:users_002))
assert !allowed_statuses.empty?
closed_statuses = allowed_statuses.select {|st| st.is_closed?}
assert !closed_statuses.empty?
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Ignore non-working days when rescheduling an issue (#2161)....
r10531 def test_reschedule_an_issue_without_dates
with_settings :non_working_week_days => [] do
issue = Issue.new(:start_date => nil, :due_date => nil)
issue.reschedule_on '2012-10-09'.to_date
assert_equal '2012-10-09'.to_date, issue.start_date
assert_equal '2012-10-09'.to_date, issue.due_date
end
with_settings :non_working_week_days => %w(6 7) do
issue = Issue.new(:start_date => nil, :due_date => nil)
issue.reschedule_on '2012-10-09'.to_date
assert_equal '2012-10-09'.to_date, issue.start_date
assert_equal '2012-10-09'.to_date, issue.due_date
issue = Issue.new(:start_date => nil, :due_date => nil)
issue.reschedule_on '2012-10-13'.to_date
assert_equal '2012-10-15'.to_date, issue.start_date
assert_equal '2012-10-15'.to_date, issue.due_date
end
end
def test_reschedule_an_issue_with_start_date
with_settings :non_working_week_days => [] do
issue = Issue.new(:start_date => '2012-10-09', :due_date => nil)
issue.reschedule_on '2012-10-13'.to_date
assert_equal '2012-10-13'.to_date, issue.start_date
assert_equal '2012-10-13'.to_date, issue.due_date
end
with_settings :non_working_week_days => %w(6 7) do
issue = Issue.new(:start_date => '2012-10-09', :due_date => nil)
issue.reschedule_on '2012-10-11'.to_date
assert_equal '2012-10-11'.to_date, issue.start_date
assert_equal '2012-10-11'.to_date, issue.due_date
issue = Issue.new(:start_date => '2012-10-09', :due_date => nil)
issue.reschedule_on '2012-10-13'.to_date
assert_equal '2012-10-15'.to_date, issue.start_date
assert_equal '2012-10-15'.to_date, issue.due_date
end
end
def test_reschedule_an_issue_with_start_and_due_dates
with_settings :non_working_week_days => [] do
issue = Issue.new(:start_date => '2012-10-09', :due_date => '2012-10-15')
issue.reschedule_on '2012-10-13'.to_date
assert_equal '2012-10-13'.to_date, issue.start_date
assert_equal '2012-10-19'.to_date, issue.due_date
end
with_settings :non_working_week_days => %w(6 7) do
issue = Issue.new(:start_date => '2012-10-09', :due_date => '2012-10-19') # 8 working days
issue.reschedule_on '2012-10-11'.to_date
assert_equal '2012-10-11'.to_date, issue.start_date
assert_equal '2012-10-23'.to_date, issue.due_date
issue = Issue.new(:start_date => '2012-10-09', :due_date => '2012-10-19')
issue.reschedule_on '2012-10-13'.to_date
assert_equal '2012-10-15'.to_date, issue.start_date
assert_equal '2012-10-25'.to_date, issue.due_date
end
end
Jean-Philippe Lang
Precede-Follow relation should move following issues earlier when rescheduling issue earlier (#4590)....
r10651 def test_rescheduling_an_issue_to_a_later_due_date_should_reschedule_following_issue
Jean-Philippe Lang
Ignore non-working days when rescheduling an issue (#2161)....
r10531 issue1 = Issue.generate!(:start_date => '2012-10-15', :due_date => '2012-10-17')
issue2 = Issue.generate!(:start_date => '2012-10-15', :due_date => '2012-10-17')
Toshi MARUYAMA
code layout clean up test_rescheduling_an_issue_should_reschedule_following_issue of unit issue test...
r10421 IssueRelation.create!(:issue_from => issue1, :issue_to => issue2,
:relation_type => IssueRelation::TYPE_PRECEDES)
Jean-Philippe Lang
Ignore non-working days when rescheduling an issue (#2161)....
r10531 assert_equal Date.parse('2012-10-18'), issue2.reload.start_date
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Ignore non-working days when rescheduling an issue (#2161)....
r10531 issue1.due_date = '2012-10-23'
Jean-Philippe Lang
Fixed: precedes/follows relations no longer update start/due dates (#5803)....
r4149 issue1.save!
Jean-Philippe Lang
Ignore non-working days when rescheduling an issue (#2161)....
r10531 issue2.reload
assert_equal Date.parse('2012-10-24'), issue2.start_date
assert_equal Date.parse('2012-10-26'), issue2.due_date
Jean-Philippe Lang
Fixed: precedes/follows relations no longer update start/due dates (#5803)....
r4149 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Precede-Follow relation should move following issues earlier when rescheduling issue earlier (#4590)....
r10651 def test_rescheduling_an_issue_to_an_earlier_due_date_should_reschedule_following_issue
issue1 = Issue.generate!(:start_date => '2012-10-15', :due_date => '2012-10-17')
issue2 = Issue.generate!(:start_date => '2012-10-15', :due_date => '2012-10-17')
IssueRelation.create!(:issue_from => issue1, :issue_to => issue2,
:relation_type => IssueRelation::TYPE_PRECEDES)
assert_equal Date.parse('2012-10-18'), issue2.reload.start_date
issue1.start_date = '2012-09-17'
issue1.due_date = '2012-09-18'
issue1.save!
issue2.reload
assert_equal Date.parse('2012-09-19'), issue2.start_date
assert_equal Date.parse('2012-09-21'), issue2.due_date
end
def test_rescheduling_reschedule_following_issue_earlier_should_consider_other_preceding_issues
issue1 = Issue.generate!(:start_date => '2012-10-15', :due_date => '2012-10-17')
issue2 = Issue.generate!(:start_date => '2012-10-15', :due_date => '2012-10-17')
issue3 = Issue.generate!(:start_date => '2012-10-01', :due_date => '2012-10-02')
IssueRelation.create!(:issue_from => issue1, :issue_to => issue2,
:relation_type => IssueRelation::TYPE_PRECEDES)
IssueRelation.create!(:issue_from => issue3, :issue_to => issue2,
:relation_type => IssueRelation::TYPE_PRECEDES)
assert_equal Date.parse('2012-10-18'), issue2.reload.start_date
issue1.start_date = '2012-09-17'
issue1.due_date = '2012-09-18'
issue1.save!
issue2.reload
# Issue 2 must start after Issue 3
assert_equal Date.parse('2012-10-03'), issue2.start_date
assert_equal Date.parse('2012-10-05'), issue2.due_date
end
Jean-Philippe Lang
Prevent ActiveRecord::StaleObjectError in Issue#reschedule_after (#7920)....
r8744 def test_rescheduling_a_stale_issue_should_not_raise_an_error
Toshi MARUYAMA
fix unit issue test fails on Wednesday...
r10554 with_settings :non_working_week_days => [] do
stale = Issue.find(1)
issue = Issue.find(1)
issue.subject = "Updated"
issue.save!
date = 10.days.from_now.to_date
assert_nothing_raised do
stale.reschedule_on!(date)
end
assert_equal date, stale.reload.start_date
Jean-Philippe Lang
Prevent ActiveRecord::StaleObjectError in Issue#reschedule_after (#7920)....
r8744 end
end
Jean-Philippe Lang
Adds a css class (overdue) to overdue issues on issue lists and detail views (#2337)....
r2138 def test_overdue
Eric Davis
Fixed a failing test caused by comparing a Time object (n.day.ago) with a Date object...
r2139 assert Issue.new(:due_date => 1.day.ago.to_date).overdue?
Jean-Philippe Lang
Adds a css class (overdue) to overdue issues on issue lists and detail views (#2337)....
r2138 assert !Issue.new(:due_date => Date.today).overdue?
Eric Davis
Fixed a failing test caused by comparing a Time object (n.day.ago) with a Date object...
r2139 assert !Issue.new(:due_date => 1.day.from_now.to_date).overdue?
Jean-Philippe Lang
Adds a css class (overdue) to overdue issues on issue lists and detail views (#2337)....
r2138 assert !Issue.new(:due_date => nil).overdue?
Toshi MARUYAMA
code layout clean up test_overdue of unit issue test...
r10422 assert !Issue.new(:due_date => 1.day.ago.to_date,
Jean-Philippe Lang
Replaces find(:first) calls....
r10701 :status => IssueStatus.where(:is_closed => true).first
Toshi MARUYAMA
code layout clean up test_overdue of unit issue test...
r10422 ).overdue?
Jean-Philippe Lang
Adds a css class (overdue) to overdue issues on issue lists and detail views (#2337)....
r2138 end
Eric Davis
Rewrite the Gantt chart. #6276...
r3958
context "#behind_schedule?" do
should "be false if the issue has no start_date" do
Toshi MARUYAMA
code layout clean up context "#behind_schedule?" of unit issue test...
r10423 assert !Issue.new(:start_date => nil,
:due_date => 1.day.from_now.to_date,
:done_ratio => 0).behind_schedule?
Eric Davis
Rewrite the Gantt chart. #6276...
r3958 end
should "be false if the issue has no end_date" do
Toshi MARUYAMA
code layout clean up context "#behind_schedule?" of unit issue test...
r10423 assert !Issue.new(:start_date => 1.day.from_now.to_date,
:due_date => nil,
:done_ratio => 0).behind_schedule?
Eric Davis
Rewrite the Gantt chart. #6276...
r3958 end
should "be false if the issue has more done than it's calendar time" do
Toshi MARUYAMA
code layout clean up context "#behind_schedule?" of unit issue test...
r10423 assert !Issue.new(:start_date => 50.days.ago.to_date,
:due_date => 50.days.from_now.to_date,
:done_ratio => 90).behind_schedule?
Eric Davis
Rewrite the Gantt chart. #6276...
r3958 end
should "be true if the issue hasn't been started at all" do
Toshi MARUYAMA
code layout clean up context "#behind_schedule?" of unit issue test...
r10423 assert Issue.new(:start_date => 1.day.ago.to_date,
:due_date => 1.day.from_now.to_date,
:done_ratio => 0).behind_schedule?
Eric Davis
Rewrite the Gantt chart. #6276...
r3958 end
should "be true if the issue has used more calendar time than it's done ratio" do
Toshi MARUYAMA
code layout clean up context "#behind_schedule?" of unit issue test...
r10423 assert Issue.new(:start_date => 100.days.ago.to_date,
:due_date => Date.today,
:done_ratio => 90).behind_schedule?
Eric Davis
Rewrite the Gantt chart. #6276...
r3958 end
end
Eric Davis
Allow assigning issues back to the author. #4199...
r4126
context "#assignable_users" do
should "be Users" do
assert_kind_of User, Issue.find(1).assignable_users.first
end
should "include the issue author" do
non_project_member = User.generate!
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue = Issue.generate!(:author => non_project_member)
Eric Davis
Allow assigning issues back to the author. #4199...
r4126
assert issue.assignable_users.include?(non_project_member)
end
Eric Davis
Don't duplicate users in Issue#assignable_users. From r4240...
r4127
Jean-Philippe Lang
Assignee is removed on issue update if assignee account is locked (#8884)....
r6188 should "include the current assignee" do
user = User.generate!
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue = Issue.generate!(:assigned_to => user)
Jean-Philippe Lang
Assignee is removed on issue update if assignee account is locked (#8884)....
r6188 user.lock!
assert Issue.find(issue.id).assignable_users.include?(user)
end
Eric Davis
Don't duplicate users in Issue#assignable_users. From r4240...
r4127 should "not show the issue author twice" do
assignable_user_ids = Issue.find(1).assignable_users.collect(&:id)
assert_equal 2, assignable_user_ids.length
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Don't duplicate users in Issue#assignable_users. From r4240...
r4127 assignable_user_ids.each do |user_id|
Toshi MARUYAMA
code layout clean up context "#assignable_users" of unit issue test...
r10424 assert_equal 1, assignable_user_ids.select {|i| i == user_id}.length,
"User #{user_id} appears more or less than once"
Eric Davis
Don't duplicate users in Issue#assignable_users. From r4240...
r4127 end
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 context "with issue_group_assignment" do
should "include groups" do
issue = Issue.new(:project => Project.find(2))
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 with_settings :issue_group_assignment => '1' do
assert_equal %w(Group User), issue.assignable_users.map {|a| a.class.name}.uniq.sort
assert issue.assignable_users.include?(Group.find(11))
end
end
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 context "without issue_group_assignment" do
should "not include groups" do
issue = Issue.new(:project => Project.find(2))
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Ability to assign issues to groups (#2964)....
r6186 with_settings :issue_group_assignment => '0' do
assert_equal %w(User), issue.assignable_users.map {|a| a.class.name}.uniq.sort
assert !issue.assignable_users.include?(Group.find(11))
end
end
end
Jean-Philippe Lang
Allows multiple roles on the same project (#706). Prerequisite for user groups feature....
r2627 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Added observers to watch model objects for mail delivery instead of calling Mailer....
r2548 def test_create_should_send_email_notification
ActionMailer::Base.deliveries.clear
Toshi MARUYAMA
code layout clean up of test_create_should_send_email_notification at test/unit/issue_test.rb...
r7359 issue = Issue.new(:project_id => 1, :tracker_id => 1,
:author_id => 3, :status_id => 1,
:priority => IssuePriority.all.first,
:subject => 'test_create', :estimated_hours => '1:30')
Eric Davis
Added observers to watch model objects for mail delivery instead of calling Mailer....
r2548
assert issue.save
assert_equal 1, ActionMailer::Base.deliveries.size
end
Eric Davis
Added tests for Issue#recipients...
r4103
Jean-Philippe Lang
Create the journal after issue save (#3140)....
r2577 def test_stale_issue_should_not_send_email_notification
ActionMailer::Base.deliveries.clear
issue = Issue.find(1)
stale = Issue.find(1)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Create the journal after issue save (#3140)....
r2577 issue.init_journal(User.find(1))
issue.subject = 'Subjet update'
assert issue.save
assert_equal 1, ActionMailer::Base.deliveries.size
ActionMailer::Base.deliveries.clear
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Create the journal after issue save (#3140)....
r2577 stale.init_journal(User.find(1))
stale.subject = 'Another subjet update'
assert_raise ActiveRecord::StaleObjectError do
stale.save
end
assert ActionMailer::Base.deliveries.empty?
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Keep track of issue description changes (#746)....
r4834 def test_journalized_description
Jean-Philippe Lang
Fixes a failing test....
r4838 IssueCustomField.delete_all
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Keep track of issue description changes (#746)....
r4834 i = Issue.first
old_description = i.description
new_description = "This is the new description"
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Keep track of issue description changes (#746)....
r4834 i.init_journal(User.find(2))
i.description = new_description
assert_difference 'Journal.count', 1 do
assert_difference 'JournalDetail.count', 1 do
i.save!
end
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Keep track of issue description changes (#746)....
r4834 detail = JournalDetail.first(:order => 'id DESC')
assert_equal i, detail.journal.journalized
assert_equal 'attr', detail.property
assert_equal 'description', detail.prop_key
assert_equal old_description, detail.old_value
assert_equal new_description, detail.value
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Do not journalize blank description changes (#8712)....
r6027 def test_blank_descriptions_should_not_be_journalized
IssueCustomField.delete_all
Issue.update_all("description = NULL", "id=1")
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Normalize issue description EOLs do prevent false journal details (#8712)....
r6029 i = Issue.find(1)
Jean-Philippe Lang
Do not journalize blank description changes (#8712)....
r6027 i.init_journal(User.find(2))
i.subject = "blank description"
i.description = "\r\n"
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Do not journalize blank description changes (#8712)....
r6027 assert_difference 'Journal.count', 1 do
assert_difference 'JournalDetail.count', 1 do
i.save!
end
end
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/issue_test.rb....
r6626
Jean-Philippe Lang
Adds support for multiselect custom fields (#1189)....
r8601 def test_journalized_multi_custom_field
Toshi MARUYAMA
code layout clean up test_journalized_multi_custom_field of unit issue test...
r10425 field = IssueCustomField.create!(:name => 'filter', :field_format => 'list',
:is_filter => true, :is_for_all => true,
:tracker_ids => [1],
:possible_values => ['value1', 'value2', 'value3'],
:multiple => true)
issue = Issue.create!(:project_id => 1, :tracker_id => 1,
:subject => 'Test', :author_id => 1)
Jean-Philippe Lang
Adds support for multiselect custom fields (#1189)....
r8601
assert_difference 'Journal.count' do
assert_difference 'JournalDetail.count' do
issue.init_journal(User.first)
issue.custom_field_values = {field.id => ['value1']}
issue.save!
end
assert_difference 'JournalDetail.count' do
issue.init_journal(User.first)
issue.custom_field_values = {field.id => ['value1', 'value2']}
issue.save!
end
assert_difference 'JournalDetail.count', 2 do
issue.init_journal(User.first)
issue.custom_field_values = {field.id => ['value3', 'value2']}
issue.save!
end
assert_difference 'JournalDetail.count', 2 do
issue.init_journal(User.first)
issue.custom_field_values = {field.id => nil}
issue.save!
end
end
end
Jean-Philippe Lang
Normalize issue description EOLs do prevent false journal details (#8712)....
r6029 def test_description_eol_should_be_normalized
i = Issue.new(:description => "CR \r LF \n CRLF \r\n")
assert_equal "CR \r\n LF \r\n CRLF \r\n", i.description
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Fixed: journal details duplicated when an issue is saved twice (#3690)....
r3385 def test_saving_twice_should_not_duplicate_journal_details
Jean-Philippe Lang
Replaces find(:first) calls....
r10701 i = Issue.first
Jean-Philippe Lang
Fixed: journal details duplicated when an issue is saved twice (#3690)....
r3385 i.init_journal(User.find(2), 'Some notes')
Jean-Philippe Lang
Fixes a test failure due to a default custom field value....
r3395 # initial changes
Jean-Philippe Lang
Fixed: journal details duplicated when an issue is saved twice (#3690)....
r3385 i.subject = 'New subject'
i.done_ratio = i.done_ratio + 10
assert_difference 'Journal.count' do
Jean-Philippe Lang
Fixes a test failure due to a default custom field value....
r3395 assert i.save
Jean-Philippe Lang
Fixed: journal details duplicated when an issue is saved twice (#3690)....
r3385 end
# 1 more change
Jean-Philippe Lang
Replaces find(:first) calls....
r10701 i.priority = IssuePriority.where("id <> ?", i.priority_id).first
Jean-Philippe Lang
Fixed: journal details duplicated when an issue is saved twice (#3690)....
r3385 assert_no_difference 'Journal.count' do
assert_difference 'JournalDetail.count', 1 do
i.save
end
end
# no more change
assert_no_difference 'Journal.count' do
assert_no_difference 'JournalDetail.count' do
i.save
end
end
end
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037
Jean-Philippe Lang
Prevent SystemStackError on Issue#all_dependent_issues with circular dependency (#7320)....
r4603 def test_all_dependent_issues
IssueRelation.delete_all
Toshi MARUYAMA
code layout clean up of test_all_dependent_issues at test/unit/issue_test.rb...
r7358 assert IssueRelation.create!(:issue_from => Issue.find(1),
:issue_to => Issue.find(2),
:relation_type => IssueRelation::TYPE_PRECEDES)
assert IssueRelation.create!(:issue_from => Issue.find(2),
:issue_to => Issue.find(3),
:relation_type => IssueRelation::TYPE_PRECEDES)
assert IssueRelation.create!(:issue_from => Issue.find(3),
:issue_to => Issue.find(8),
:relation_type => IssueRelation::TYPE_PRECEDES)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Prevent SystemStackError on Issue#all_dependent_issues with circular dependency (#7320)....
r4603 assert_equal [2, 3, 8], Issue.find(1).all_dependent_issues.collect(&:id).sort
end
def test_all_dependent_issues_with_persistent_circular_dependency
IssueRelation.delete_all
Toshi MARUYAMA
code layout clean up of test_all_dependent_issues_with_persistent_circular_dependency at test/unit/issue_test.rb...
r7341 assert IssueRelation.create!(:issue_from => Issue.find(1),
:issue_to => Issue.find(2),
:relation_type => IssueRelation::TYPE_PRECEDES)
assert IssueRelation.create!(:issue_from => Issue.find(2),
:issue_to => Issue.find(3),
:relation_type => IssueRelation::TYPE_PRECEDES)
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 r = IssueRelation.create!(:issue_from => Issue.find(3),
:issue_to => Issue.find(7),
:relation_type => IssueRelation::TYPE_PRECEDES)
IssueRelation.update_all("issue_to_id = 1", ["id = ?", r.id])
Jean-Philippe Lang
Prevent SystemStackError on Issue#all_dependent_issues with circular dependency (#7320)....
r4603 assert_equal [2, 3], Issue.find(1).all_dependent_issues.collect(&:id).sort
end
Jean-Philippe Lang
Prevent SystemStackError on Issue#all_dependent_issues with mutiple circular dependencies (#7320)....
r4984
def test_all_dependent_issues_with_persistent_multiple_circular_dependencies
IssueRelation.delete_all
Toshi MARUYAMA
code layout clean up of test_all_dependent_issues_with_persistent_multiple_circular_dependencies at test/unit/issue_test.rb...
r7342 assert IssueRelation.create!(:issue_from => Issue.find(1),
:issue_to => Issue.find(2),
:relation_type => IssueRelation::TYPE_RELATES)
assert IssueRelation.create!(:issue_from => Issue.find(2),
:issue_to => Issue.find(3),
:relation_type => IssueRelation::TYPE_RELATES)
assert IssueRelation.create!(:issue_from => Issue.find(3),
:issue_to => Issue.find(8),
:relation_type => IssueRelation::TYPE_RELATES)
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346
r = IssueRelation.create!(:issue_from => Issue.find(8),
:issue_to => Issue.find(7),
:relation_type => IssueRelation::TYPE_RELATES)
IssueRelation.update_all("issue_to_id = 2", ["id = ?", r.id])
r = IssueRelation.create!(:issue_from => Issue.find(3),
:issue_to => Issue.find(7),
:relation_type => IssueRelation::TYPE_RELATES)
IssueRelation.update_all("issue_to_id = 1", ["id = ?", r.id])
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Prevent SystemStackError on Issue#all_dependent_issues with mutiple circular dependencies (#7320)....
r4984 assert_equal [2, 3, 8], Issue.find(1).all_dependent_issues.collect(&:id).sort
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 context "#done_ratio" do
setup do
@issue = Issue.find(1)
@issue_status = IssueStatus.find(1)
@issue_status.update_attribute(:default_done_ratio, 50)
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 @issue2 = Issue.find(2)
@issue_status2 = IssueStatus.find(2)
@issue_status2.update_attribute(:default_done_ratio, 0)
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Do not change settings in tests....
r8106 teardown do
Setting.issue_done_ratio = 'issue_field'
end
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 context "with Setting.issue_done_ratio using the issue_field" do
setup do
Setting.issue_done_ratio = 'issue_field'
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 should "read the issue's field" do
assert_equal 0, @issue.done_ratio
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 assert_equal 30, @issue2.done_ratio
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 end
end
context "with Setting.issue_done_ratio using the issue_status" do
setup do
Setting.issue_done_ratio = 'issue_status'
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 should "read the Issue Status's default done ratio" do
assert_equal 50, @issue.done_ratio
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 assert_equal 0, @issue2.done_ratio
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 end
end
end
context "#update_done_ratio_from_issue_status" do
setup do
@issue = Issue.find(1)
@issue_status = IssueStatus.find(1)
@issue_status.update_attribute(:default_done_ratio, 50)
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 @issue2 = Issue.find(2)
@issue_status2 = IssueStatus.find(2)
@issue_status2.update_attribute(:default_done_ratio, 0)
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 context "with Setting.issue_done_ratio using the issue_field" do
setup do
Setting.issue_done_ratio = 'issue_field'
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 should "not change the issue" do
@issue.update_done_ratio_from_issue_status
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 @issue2.update_done_ratio_from_issue_status
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 assert_equal 0, @issue.read_attribute(:done_ratio)
assert_equal 30, @issue2.read_attribute(:done_ratio)
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 end
end
context "with Setting.issue_done_ratio using the issue_status" do
setup do
Setting.issue_done_ratio = 'issue_status'
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 should "change the issue's done ratio" do
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 @issue.update_done_ratio_from_issue_status
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 @issue2.update_done_ratio_from_issue_status
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037
Eric Davis
Fixes reverting an issue to a status with a done_ratio of 0%. #5170...
r4072 assert_equal 50, @issue.read_attribute(:done_ratio)
assert_equal 0, @issue2.read_attribute(:done_ratio)
Eric Davis
Adds a Setting to control how an Issue's done_ratio is calculated:...
r3037 end
end
end
Eric Davis
Added tests for Issue#by_X finders...
r3250
test "#by_tracker" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_tracker(Project.find(1))
assert_equal 3, groups.size
assert_equal 7, groups.inject(0) {|sum, group| sum + group['total'].to_i}
end
test "#by_version" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_version(Project.find(1))
assert_equal 3, groups.size
assert_equal 3, groups.inject(0) {|sum, group| sum + group['total'].to_i}
end
test "#by_priority" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_priority(Project.find(1))
assert_equal 4, groups.size
assert_equal 7, groups.inject(0) {|sum, group| sum + group['total'].to_i}
end
test "#by_category" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_category(Project.find(1))
assert_equal 2, groups.size
assert_equal 3, groups.inject(0) {|sum, group| sum + group['total'].to_i}
end
test "#by_assigned_to" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_assigned_to(Project.find(1))
assert_equal 2, groups.size
assert_equal 2, groups.inject(0) {|sum, group| sum + group['total'].to_i}
end
test "#by_author" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_author(Project.find(1))
assert_equal 4, groups.size
assert_equal 7, groups.inject(0) {|sum, group| sum + group['total'].to_i}
end
test "#by_subproject" do
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 User.current = User.anonymous
Eric Davis
Added tests for Issue#by_X finders...
r3250 groups = Issue.by_subproject(Project.find(1))
Jean-Philippe Lang
Adds visibility condition to Issue.by_* count methods....
r5245 # Private descendant not visible
assert_equal 1, groups.size
assert_equal 2, groups.inject(0) {|sum, group| sum + group['total'].to_i}
Eric Davis
Added tests for Issue#by_X finders...
r3250 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Jean-Philippe Lang
Updates test for r10243....
r10061 def test_recently_updated_scope
Eric Davis
Adds named scopes to replace custom finders....
r3443 #should return the last updated issue
Jean-Philippe Lang
Updates test for r10243....
r10061 assert_equal Issue.reorder("updated_on DESC").first, Issue.recently_updated.limit(1).first
Eric Davis
Adds named scopes to replace custom finders....
r3443 end
def test_on_active_projects_scope
assert Project.find(2).archive
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Adds named scopes to replace custom finders....
r3443 before = Issue.on_active_project.length
# test inclusion to results
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 issue = Issue.generate!(:tracker => Project.find(2).trackers.first)
Eric Davis
Adds named scopes to replace custom finders....
r3443 assert_equal before + 1, Issue.on_active_project.length
# Move to an archived project
issue.project = Project.find(2)
assert issue.save
assert_equal before, Issue.on_active_project.length
end
Eric Davis
Added tests for Issue#recipients...
r4103
context "Issue#recipients" do
setup do
@project = Project.find(1)
Jean-Philippe Lang
Removed #generate_with_protected helper methods....
r9337 @author = User.generate!
@assignee = User.generate!
Jean-Philippe Lang
Remove Issue.generate_for_project! test helper and use Issue.generate! instead....
r10400 @issue = Issue.generate!(:project => @project, :assigned_to => @assignee, :author => @author)
Eric Davis
Added tests for Issue#recipients...
r4103 end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Added tests for Issue#recipients...
r4103 should "include project recipients" do
assert @project.recipients.present?
@project.recipients.each do |project_recipient|
assert @issue.recipients.include?(project_recipient)
end
end
should "include the author if the author is active" do
assert @issue.author, "No author set for Issue"
assert @issue.recipients.include?(@issue.author.mail)
end
Toshi MARUYAMA
remove trailing white-spaces and empty lines from unit issue test....
r5686
Eric Davis
Added tests for Issue#recipients...
r4103 should "include the assigned to user if the assigned to user is active" do
assert @issue.assigned_to, "No assigned_to set for Issue"
assert @issue.recipients.include?(@issue.assigned_to.mail)
end
Eric Davis
Added User#notify_about? to check when a user should be notified about an event...
r4104
should "not include users who opt out of all email" do
@author.update_attribute(:mail_notification, :none)
assert !@issue.recipients.include?(@issue.author.mail)
end
should "not include the issue author if they are only notified of assigned issues" do
@author.update_attribute(:mail_notification, :only_assigned)
assert !@issue.recipients.include?(@issue.author.mail)
end
should "not include the assigned user if they are only notified of owned issues" do
@assignee.update_attribute(:mail_notification, :only_owner)
assert !@issue.recipients.include?(@issue.assigned_to.mail)
end
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 end
def test_last_journal_id_with_journals_should_return_the_journal_id
assert_equal 2, Issue.find(1).last_journal_id
end
Eric Davis
Added User#notify_about? to check when a user should be notified about an event...
r4104
Jean-Philippe Lang
Better handling of issue update conflicts (#8691)....
r8654 def test_last_journal_id_without_journals_should_return_nil
assert_nil Issue.find(3).last_journal_id
Eric Davis
Added tests for Issue#recipients...
r4103 end
Jean-Philippe Lang
Code cleanup....
r9996
def test_journals_after_should_return_journals_with_greater_id
assert_equal [Journal.find(2)], Issue.find(1).journals_after('1')
assert_equal [], Issue.find(1).journals_after('2')
end
def test_journals_after_with_blank_arg_should_return_all_journals
assert_equal [Journal.find(1), Journal.find(2)], Issue.find(1).journals_after('')
end
Jean-Philippe Lang
Adds a textual css class for issue priorities (#12216)....
r10508
def test_css_classes_should_include_priority
issue = Issue.new(:priority => IssuePriority.find(8))
classes = issue.css_classes.split(' ')
assert_include 'priority-8', classes
assert_include 'priority-highest', classes
end
Jean-Philippe Lang
Make sure that attachments are created in the same order they were selected (#12310)....
r10571
def test_save_attachments_with_hash_should_save_attachments_in_keys_order
set_tmp_attachments_directory
issue = Issue.generate!
issue.save_attachments({
'p0' => {'file' => mock_file_with_options(:original_filename => 'upload')},
'3' => {'file' => mock_file_with_options(:original_filename => 'bar')},
'1' => {'file' => mock_file_with_options(:original_filename => 'foo')}
})
issue.attach_saved_attachments
assert_equal 3, issue.reload.attachments.count
assert_equal %w(upload foo bar), issue.attachments.map(&:filename)
end
Jean-Philippe Lang
Each category can now be associated to a user, so that new issues in that category are automatically assigned to that user....
r574 end