templates_controller_test.rb
7.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
require_relative "../test_helper"
require 'templates_controller'
# Re-raise errors caught by the controller.
class TemplatesController; def rescue_action(e) raise e end; end
class TemplatesControllerTest < ActionController::TestCase
def setup
@controller = TemplatesController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
Environment.destroy_all
@environment = fast_create(Environment, :is_default => true)
login_as(create_admin_user(@environment))
end
attr_accessor :environment
should 'create person template' do
post :create_person_template, :name => 'Developer'
assert Person['developer'].is_template
end
should 'create community template' do
post :create_community_template, :name => 'Debian'
assert Community['debian'].is_template
end
should 'create enterprise template' do
post :create_enterprise_template, :name => 'Free Software Foundation'
assert Enterprise['free-software-foundation'].is_template
end
should 'set a community as default template' do
c1= fast_create(Community, :is_template => true, :environment_id => environment.id)
environment.community_default_template= c1
environment.save
c3 = fast_create(Community, :is_template => true, :environment_id => environment.id)
post :set_community_as_default, :template_id => c3.id
environment.reload
assert_equal c3, environment.community_default_template
end
should 'set a person as default template' do
p1= fast_create(Person, :is_template => true, :environment_id => environment.id)
environment.person_default_template= p1
environment.save
p3 = fast_create(Person, :is_template => true, :environment_id => environment.id)
post :set_person_as_default, :template_id => p3.id
environment.reload
assert_equal p3, environment.person_default_template
end
should 'set a enterprise as default template' do
e1= fast_create(Enterprise, :is_template => true, :environment_id => environment.id)
environment.enterprise_default_template= e1
environment.save
e3 = fast_create(Enterprise, :is_template => true, :environment_id => environment.id)
post :set_enterprise_as_default, :template_id => e3.id
environment.reload
assert_equal e3, environment.enterprise_default_template
end
should 'not allow set_community_as_default define a community template of another environment as default' do
c1= fast_create(Community, :is_template => true, :environment_id => environment.id)
environment.community_default_template= c1
environment.save
env2 = fast_create(Environment)
c3 = fast_create(Community, :is_template => true, :environment_id => env2.id)
post :set_community_as_default, :template_id => c3.id
environment.reload
assert_not_equal c3, environment.community_default_template
end
should 'not allow set_person_as_default define a person template of another environment as default' do
p1= fast_create(Person, :is_template => true, :environment_id => environment.id)
environment.person_default_template= p1
environment.save
env2 = fast_create(Environment)
p3 = fast_create(Person, :is_template => true, :environment_id => env2.id)
post :set_person_as_default, :template_id => p3.id
environment.reload
assert_not_equal p3, environment.person_default_template
end
should 'not allow set_enterprise_as_default define a enterprise of another environment as default' do
e1= fast_create(Enterprise, :is_template => true, :environment_id => environment.id)
environment.enterprise_default_template= e1
environment.save
env2 = fast_create(Environment)
e3 = fast_create(Enterprise, :is_template => true, :environment_id => env2.id)
post :set_enterprise_as_default, :template_id => e3.id
environment.reload
assert_not_equal e3, environment.enterprise_default_template
end
should 'display successfully notice message after define a community template as default' do
c3 = fast_create(Community, :is_template => true, :environment_id => environment)
post :set_community_as_default, :template_id => c3.id
assert_equal "#{c3.name} defined as default", session[:notice]
end
should 'display successfully notice message after define a person template as default' do
p3 = fast_create(Person, :is_template => true, :environment_id => environment)
post :set_person_as_default, :template_id => p3.id
assert_equal "#{p3.name} defined as default", session[:notice]
end
should 'display successfully notice message after define a enterprise template as default' do
e3 = fast_create(Enterprise, :is_template => true, :environment_id => environment)
post :set_enterprise_as_default, :template_id => e3.id
assert_equal "#{e3.name} defined as default", session[:notice]
end
should 'display unsuccessfully notice message when a community template could not be defined as default' do
env2 = fast_create(Environment)
c3 = fast_create(Community, :is_template => true, :environment_id => env2.id)
post :set_community_as_default, :template_id => c3.id
assert_equal "Community not found. The template could no be changed.", session[:notice]
end
should 'display unsuccessfully notice message when a person template could not be defined as default' do
env2 = fast_create(Environment)
p3 = fast_create(Person, :is_template => true, :environment_id => env2.id)
post :set_person_as_default, :template_id => p3.id
assert_equal "Person not found. The template could no be changed.", session[:notice]
end
should 'display unsuccessfully notice message when a enterprise template could not be defined as default' do
env2 = fast_create(Environment)
e3 = fast_create(Community, :is_template => true, :environment_id => env2.id)
post :set_enterprise_as_default, :template_id => e3.id
assert_equal "Enterprise not found. The template could no be changed.", session[:notice]
end
should 'display set as default link for non default community templates' do
c1 = fast_create(Community, :is_template => true, :environment_id => environment.id)
c2 = fast_create(Community, :is_template => true, :environment_id => environment.id)
get :index
assert_tag :a, '', :attributes => {:href => "/admin/templates/set_community_as_default?template_id=#{c1.id}"}
assert_tag :a, '', :attributes => {:href => "/admin/templates/set_community_as_default?template_id=#{c2.id}"}
end
should 'display set as default link for non default person templates' do
p1 = fast_create(Person, :is_template => true, :environment_id => environment.id)
p2 = fast_create(Person, :is_template => true, :environment_id => environment.id)
get :index
assert_tag :a, '', :attributes => {:href => "/admin/templates/set_person_as_default?template_id=#{p1.id}"}
assert_tag :a, '', :attributes => {:href => "/admin/templates/set_person_as_default?template_id=#{p2.id}"}
end
should 'display set as default link for non default enterprise templates' do
e1 = fast_create(Enterprise, :is_template => true, :environment_id => environment.id)
e2 = fast_create(Enterprise, :is_template => true, :environment_id => environment.id)
get :index
assert_tag :a, '', :attributes => {:href => "/admin/templates/set_enterprise_as_default?template_id=#{e1.id}"}
assert_tag :a, '', :attributes => {:href => "/admin/templates/set_enterprise_as_default?template_id=#{e2.id}"}
end
should 'not display set as default link for default community template' do
c1 = fast_create(Community, :is_template => true, :environment_id => environment.id)
c2 = fast_create(Community, :is_template => true, :environment_id => environment.id)
environment.community_default_template= c1
environment.save
get :index
assert_no_tag :a, '', :attributes => {:href => "/admin/templates/set_community_as_default?template_id=#{c1.id}"}
end
end