##// END OF EJS Templates
remove trailing white-spaces from test/unit/project_nested_set_test.rb....
Toshi MARUYAMA -
r6651:616268855697
parent child
Show More
@@ -1,118 +1,118
1 1 # Redmine - project management software
2 # Copyright (C) 2006-2010 Jean-Philippe Lang
2 # Copyright (C) 2006-2011 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 require File.expand_path('../../test_helper', __FILE__)
19 19
20 20 class ProjectNestedSetTest < ActiveSupport::TestCase
21 21
22 22 context "nested set" do
23 23 setup do
24 24 Project.delete_all
25 25
26 26 @a = Project.create!(:name => 'Project A', :identifier => 'projecta')
27 27 @a1 = Project.create!(:name => 'Project A1', :identifier => 'projecta1')
28 28 @a1.set_parent!(@a)
29 29 @a2 = Project.create!(:name => 'Project A2', :identifier => 'projecta2')
30 30 @a2.set_parent!(@a)
31 31
32 32 @b = Project.create!(:name => 'Project B', :identifier => 'projectb')
33 33 @b1 = Project.create!(:name => 'Project B1', :identifier => 'projectb1')
34 34 @b1.set_parent!(@b)
35 35 @b11 = Project.create!(:name => 'Project B11', :identifier => 'projectb11')
36 36 @b11.set_parent!(@b1)
37 37 @b2 = Project.create!(:name => 'Project B2', :identifier => 'projectb2')
38 38 @b2.set_parent!(@b)
39 39
40 40 @c = Project.create!(:name => 'Project C', :identifier => 'projectc')
41 41 @c1 = Project.create!(:name => 'Project C1', :identifier => 'projectc1')
42 42 @c1.set_parent!(@c)
43 43
44 44 [@a, @a1, @a2, @b, @b1, @b11, @b2, @c, @c1].each(&:reload)
45 45 end
46 46
47 47 context "#create" do
48 48 should "build valid tree" do
49 49 assert_nested_set_values({
50 50 @a => [nil, 1, 6],
51 51 @a1 => [@a.id, 2, 3],
52 52 @a2 => [@a.id, 4, 5],
53 53 @b => [nil, 7, 14],
54 54 @b1 => [@b.id, 8, 11],
55 55 @b11 => [@b1.id,9, 10],
56 56 @b2 => [@b.id,12, 13],
57 57 @c => [nil, 15, 18],
58 58 @c1 => [@c.id,16, 17]
59 59 })
60 60 end
61 61 end
62 62
63 63 context "#set_parent!" do
64 64 should "keep valid tree" do
65 65 assert_no_difference 'Project.count' do
66 66 Project.find_by_name('Project B1').set_parent!(Project.find_by_name('Project A2'))
67 67 end
68 68 assert_nested_set_values({
69 69 @a => [nil, 1, 10],
70 70 @a2 => [@a.id, 4, 9],
71 71 @b1 => [@a2.id,5, 8],
72 72 @b11 => [@b1.id,6, 7],
73 73 @b => [nil, 11, 14],
74 74 @c => [nil, 15, 18]
75 75 })
76 76 end
77 77 end
78 78
79 79 context "#destroy" do
80 80 context "a root with children" do
81 81 should "not mess up the tree" do
82 82 assert_difference 'Project.count', -4 do
83 83 Project.find_by_name('Project B').destroy
84 84 end
85 85 assert_nested_set_values({
86 86 @a => [nil, 1, 6],
87 87 @a1 => [@a.id, 2, 3],
88 88 @a2 => [@a.id, 4, 5],
89 89 @c => [nil, 7, 10],
90 90 @c1 => [@c.id, 8, 9]
91 91 })
92 92 end
93 93 end
94 94
95 95 context "a child with children" do
96 96 should "not mess up the tree" do
97 97 assert_difference 'Project.count', -2 do
98 98 Project.find_by_name('Project B1').destroy
99 99 end
100 100 assert_nested_set_values({
101 101 @a => [nil, 1, 6],
102 102 @b => [nil, 7, 10],
103 103 @b2 => [@b.id, 8, 9],
104 104 @c => [nil, 11, 14]
105 105 })
106 106 end
107 107 end
108 108 end
109 109 end
110 110
111 111 def assert_nested_set_values(h)
112 112 assert Project.valid?
113 113 h.each do |project, expected|
114 114 project.reload
115 115 assert_equal expected, [project.parent_id, project.lft, project.rgt], "Unexpected nested set values for #{project.name}"
116 116 end
117 117 end
118 118 end
General Comments 0
You need to be logged in to leave comments. Login now