##// END OF EJS Templates
Rails3: test: replace deprecated Errors#on to Errors#[] and join with to_s at test/unit/time_entry_activity_test.rb...
Toshi MARUYAMA -
r8016:7aba81dbe7ef
parent child
Show More
@@ -1,85 +1,86
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2011 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.expand_path('../../test_helper', __FILE__)
19 19
20 20 class TimeEntryActivityTest < ActiveSupport::TestCase
21 21 fixtures :enumerations, :time_entries
22 22
23 23 def test_should_be_an_enumeration
24 24 assert TimeEntryActivity.ancestors.include?(Enumeration)
25 25 end
26 26
27 27 def test_objects_count
28 28 assert_equal 3, TimeEntryActivity.find_by_name("Design").objects_count
29 29 assert_equal 2, TimeEntryActivity.find_by_name("Development").objects_count
30 30 end
31 31
32 32 def test_option_name
33 33 assert_equal :enumeration_activities, TimeEntryActivity.new.option_name
34 34 end
35 35
36 36 def test_create_with_custom_field
37 37 field = TimeEntryActivityCustomField.find_by_name('Billable')
38 38 e = TimeEntryActivity.new(:name => 'Custom Data')
39 39 e.custom_field_values = {field.id => "1"}
40 40 assert e.save
41 41
42 42 e.reload
43 43 assert_equal "1", e.custom_value_for(field).value
44 44 end
45 45
46 46 def test_create_without_required_custom_field_should_fail
47 47 field = TimeEntryActivityCustomField.find_by_name('Billable')
48 48 field.update_attribute(:is_required, true)
49 49
50 50 e = TimeEntryActivity.new(:name => 'Custom Data')
51 51 assert !e.save
52 assert_equal I18n.translate('activerecord.errors.messages.invalid'), e.errors.on(:custom_values)
52 assert_equal I18n.translate('activerecord.errors.messages.invalid'),
53 e.errors[:custom_values].to_s
53 54 end
54 55
55 56 def test_create_with_required_custom_field_should_succeed
56 57 field = TimeEntryActivityCustomField.find_by_name('Billable')
57 58 field.update_attribute(:is_required, true)
58 59
59 60 e = TimeEntryActivity.new(:name => 'Custom Data')
60 61 e.custom_field_values = {field.id => "1"}
61 62 assert e.save
62 63 end
63 64
64 65 def test_update_issue_with_required_custom_field_change
65 66 field = TimeEntryActivityCustomField.find_by_name('Billable')
66 67 field.update_attribute(:is_required, true)
67 68
68 69 e = TimeEntryActivity.find(10)
69 70 assert e.available_custom_fields.include?(field)
70 71 # No change to custom field, record can be saved
71 72 assert e.save
72 73 # Blanking custom field, save should fail
73 74 e.custom_field_values = {field.id => ""}
74 75 assert !e.save
75 76 assert e.errors[:custom_values]
76 77
77 78 # Update custom field to valid value, save should succeed
78 79 e.custom_field_values = {field.id => "0"}
79 80 assert e.save
80 81 e.reload
81 82 assert_equal "0", e.custom_value_for(field).value
82 83 end
83 84
84 85 end
85 86
General Comments 0
You need to be logged in to leave comments. Login now