Mercurial > hg > soundsoftware-site
comparison .svn/pristine/bd/bd8a41367104b158b51a98ef53d62e3672373a68.svn-base @ 1464:261b3d9a4903 redmine-2.4
Update to Redmine 2.4 branch rev 12663
author | Chris Cannam |
---|---|
date | Tue, 14 Jan 2014 14:37:42 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1296:038ba2d95de8 | 1464:261b3d9a4903 |
---|---|
1 # Redmine - project management software | |
2 # Copyright (C) 2006-2013 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 require File.expand_path('../../test_helper', __FILE__) | |
19 | |
20 class WorkflowTest < ActiveSupport::TestCase | |
21 fixtures :roles, :trackers, :issue_statuses | |
22 | |
23 def test_copy | |
24 WorkflowTransition.delete_all | |
25 WorkflowTransition.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 2) | |
26 WorkflowTransition.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 3, :assignee => true) | |
27 WorkflowTransition.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 4, :author => true) | |
28 | |
29 assert_difference 'WorkflowTransition.count', 3 do | |
30 WorkflowTransition.copy(Tracker.find(2), Role.find(1), Tracker.find(3), Role.find(2)) | |
31 end | |
32 | |
33 assert WorkflowTransition.where(:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false).first | |
34 assert WorkflowTransition.where(:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true).first | |
35 assert WorkflowTransition.where(:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false).first | |
36 end | |
37 | |
38 def test_workflow_permission_should_validate_rule | |
39 wp = WorkflowPermission.new(:role_id => 1, :tracker_id => 1, :old_status_id => 1, :field_name => 'due_date') | |
40 assert !wp.save | |
41 | |
42 wp.rule = 'foo' | |
43 assert !wp.save | |
44 | |
45 wp.rule = 'required' | |
46 assert wp.save | |
47 | |
48 wp.rule = 'readonly' | |
49 assert wp.save | |
50 end | |
51 | |
52 def test_workflow_permission_should_validate_field_name | |
53 wp = WorkflowPermission.new(:role_id => 1, :tracker_id => 1, :old_status_id => 1, :rule => 'required') | |
54 assert !wp.save | |
55 | |
56 wp.field_name = 'foo' | |
57 assert !wp.save | |
58 | |
59 wp.field_name = 'due_date' | |
60 assert wp.save | |
61 | |
62 wp.field_name = '1' | |
63 assert wp.save | |
64 end | |
65 end |