To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 31 / 31bb85f22f4d21a57af6d104f857fd83f936b8f3.svn-base @ 1298:4f746d8966dd
History | View | Annotate | Download (2.61 KB)
| 1 |
# Redmine - project management software |
|---|---|
| 2 |
# Copyright (C) 2006-2012 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.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false})
|
| 34 |
assert WorkflowTransition.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true})
|
| 35 |
assert WorkflowTransition.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false})
|
| 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 |