##// END OF EJS Templates
Fixed: Workflow copy does not copy advanced workflow settings (#8739)....
Jean-Philippe Lang -
r6028:0a9bf389efe8
parent child
Show More
@@ -0,0 +1,37
1 # Redmine - project management software
2 # Copyright (C) 2006-2011 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 Workflow.delete_all
25 Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 2)
26 Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 3, :assignee => true)
27 Workflow.create!(:role_id => 1, :tracker_id => 2, :old_status_id => 1, :new_status_id => 4, :author => true)
28
29 assert_difference 'Workflow.count', 3 do
30 Workflow.copy(Tracker.find(2), Role.find(1), Tracker.find(3), Role.find(2))
31 end
32
33 assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 2, :author => false, :assignee => false})
34 assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 3, :author => false, :assignee => true})
35 assert Workflow.first(:conditions => {:role_id => 2, :tracker_id => 3, :old_status_id => 1, :new_status_id => 4, :author => true, :assignee => false})
36 end
37 end
@@ -89,8 +89,8 class Workflow < ActiveRecord::Base
89 else
89 else
90 transaction do
90 transaction do
91 delete_all :tracker_id => target_tracker.id, :role_id => target_role.id
91 delete_all :tracker_id => target_tracker.id, :role_id => target_role.id
92 connection.insert "INSERT INTO #{Workflow.table_name} (tracker_id, role_id, old_status_id, new_status_id)" +
92 connection.insert "INSERT INTO #{Workflow.table_name} (tracker_id, role_id, old_status_id, new_status_id, author, assignee)" +
93 " SELECT #{target_tracker.id}, #{target_role.id}, old_status_id, new_status_id" +
93 " SELECT #{target_tracker.id}, #{target_role.id}, old_status_id, new_status_id, author, assignee" +
94 " FROM #{Workflow.table_name}" +
94 " FROM #{Workflow.table_name}" +
95 " WHERE tracker_id = #{source_tracker.id} AND role_id = #{source_role.id}"
95 " WHERE tracker_id = #{source_tracker.id} AND role_id = #{source_role.id}"
96 end
96 end
General Comments 0
You need to be logged in to leave comments. Login now