To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / test / unit / .svn / text-base / time_entry_activity_test.rb.svn-base @ 441:cbce1fd3b1b7

History | View | Annotate | Download (2.92 KB)

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