;]
[askyou.git] / test / unit / project_nested_set_test.rb
blob6aa09d61c509e1fb293d72f2766ef2d89a3fb697
1 # Redmine - project management software
2 # Copyright (C) 2006-2010  Jean-Philippe Lang
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.
18 require File.dirname(__FILE__) + '/../test_helper'
20 class ProjectNestedSetTest < ActiveSupport::TestCase
21   
22   def setup
23     Project.delete_all
24   end
25   
26   def test_destroy_root_and_chldren_should_not_mess_up_the_tree
27     a = Project.create!(:name => 'Project A', :identifier => 'projecta')
28     a1 = Project.create!(:name => 'Project A1', :identifier => 'projecta1')
29     a2 = Project.create!(:name => 'Project A2', :identifier => 'projecta2')
30     a1.set_parent!(a)
31     a2.set_parent!(a)
32     b = Project.create!(:name => 'Project B', :identifier => 'projectb')
33     b1 = Project.create!(:name => 'Project B1', :identifier => 'projectb1')
34     b1.set_parent!(b)
35     
36     a.reload
37     a1.reload
38     a2.reload
39     b.reload
40     b1.reload
41     
42     assert_equal [nil, 1, 6], [a.parent_id, a.lft, a.rgt]
43     assert_equal [a.id, 2, 3], [a1.parent_id, a1.lft, a1.rgt]
44     assert_equal [a.id, 4, 5], [a2.parent_id, a2.lft, a2.rgt]
45     assert_equal [nil, 7, 10], [b.parent_id, b.lft, b.rgt]
46     assert_equal [b.id, 8, 9], [b1.parent_id, b1.lft, b1.rgt]
47     
48     assert_difference 'Project.count', -3 do
49       a.destroy
50     end
51     
52     b.reload
53     b1.reload
55     assert_equal [nil, 1, 4], [b.parent_id, b.lft, b.rgt]
56     assert_equal [b.id, 2, 3], [b1.parent_id, b1.lft, b1.rgt]
57   end
58 end