Module: RailsExtension::ActionControllerExtension::AccessibleViaProtocol::ClassMethods

Defined in:
lib/rails_extension/action_controller_extension/accessible_via_protocol.rb

Instance Method Summary collapse

Instance Method Details

#assert_access_with_http(*actions) ⇒ Object



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
# File 'lib/rails_extension/action_controller_extension/accessible_via_protocol.rb', line 13

def assert_access_with_http(*actions)
	user_options = actions.extract_options!

	options = {
		:login => :admin 
	}
	if ( self.constants.include?('ASSERT_ACCESS_OPTIONS') )
		options.merge!(self::ASSERT_ACCESS_OPTIONS)
	end
	options.merge!(user_options)
	actions += options[:actions]||[]

	m_key = options[:model].try(:underscore).try(:to_sym)

	test "#{brand}AWiHTTP should get new #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args = options[:new] || {}
		send(:get,:new,args)
		assert_response :success
		assert_template 'new'
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:new) || options.keys.include?(:new)

	test "#{brand}AWiHTTP should post create #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args = if options[:create]
			options[:create]
		elsif options[:attributes_for_create]
			{m_key => send(options[:attributes_for_create])}
		else
			{}
		end
		assert_difference("#{options[:model]}.count",1) do
			send(:post,:create,args)
		end
		assert_response :redirect
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:create) || options.keys.include?(:create)

	test "#{brand}AWiHTTP should get edit #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:edit, args)
		assert_response :success
		assert_template 'edit'
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:edit) || options.keys.include?(:edit)

	test "#{brand}AWiHTTP should put update #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args={}
		if options[:method_for_create] && options[:attributes_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
			args[m_key] = send(options[:attributes_for_create])
		end
		before = obj.updated_at if obj
		sleep 1 if obj  # if updated too quickly, updated_at won't change
		send(:put,:update, args)
		after = obj.reload.updated_at if obj
		assert_not_equal( before.to_i,after.to_i, "updated_at did not change" ) if obj
		assert_response :redirect
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}AWiHTTP should get show #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:show, args)
		assert_response :success
		assert_template 'show'
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:show) || options.keys.include?(:show)

	test "#{brand}AWiHTTP should delete destroy #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		assert_difference("#{options[:model]}.count",-1) do
			send(:delete,:destroy,args)
		end
		assert_response :redirect
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:destroy) || options.keys.include?(:destroy)

	test "#{brand}AWiHTTP should get index #{awihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		get :index
		assert_response :success
		assert_template 'index'
		assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)), 
			"#{m_key.try(:to_s).try(:pluralize).try(:to_sym)} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:index) || options.keys.include?(:index)

	test "#{brand}AWiHTTP should get index #{awihttp_title(options)} and items" do
		turn_https_off
		send(options[:before]) if !options[:before].blank?
		 send(options[:login])
		3.times{ send(options[:method_for_create]) } if !options[:method_for_create].blank?
		get :index
		assert_response :success
		assert_template 'index'
		assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)),
			"#{m_key.try(:to_s).try(:pluralize).try(:to_sym)} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:index) || options.keys.include?(:index)

end

#assert_access_with_https(*actions) ⇒ Object



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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'lib/rails_extension/action_controller_extension/accessible_via_protocol.rb', line 149

def assert_access_with_https(*actions)
	user_options = actions.extract_options!

	options = {
		:login => :admin
	}
	if ( self.constants.include?('ASSERT_ACCESS_OPTIONS') )
		options.merge!(self::ASSERT_ACCESS_OPTIONS)
	end
	options.merge!(user_options)
	actions += options[:actions]||[]

	m_key = options[:model].try(:underscore).try(:to_sym)

	test "#{brand}AWiHTTPS should get new #{awihttps_title(options)}" do
		 send(options[:login])
		args = options[:new] || {}
		turn_https_on
		send(:get,:new,args)
		assert_response :success
		assert_template 'new'
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:new) || options.keys.include?(:new)

	test "#{brand}AWiHTTPS should post create #{awihttps_title(options)}" do
		 send(options[:login])
		args = if options[:create]
			options[:create]
		elsif options[:attributes_for_create]
			{m_key => send(options[:attributes_for_create])}
		else
			{}
		end
		turn_https_on
		assert_difference("#{options[:model]}.count",1) do
			send(:post,:create,args)
		end
		assert_response :redirect
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:create) || options.keys.include?(:create)

	test "#{brand}AWiHTTPS should get edit #{awihttps_title(options)}" do
		 send(options[:login])
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		turn_https_on
		send(:get,:edit, args)
		assert_response :success
		assert_template 'edit'
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:edit) || options.keys.include?(:edit)

	test "#{brand}AWiHTTPS should put update #{awihttps_title(options)}" do
		 send(options[:login])
		args={}
		if options[:method_for_create] && options[:attributes_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
			args[m_key] = send(options[:attributes_for_create])
		end
		before = obj.updated_at if obj
		sleep 1 if obj  # if updated too quickly, updated_at won't change
		turn_https_on
		send(:put,:update, args)
		after = obj.reload.updated_at if obj
		assert_not_equal( before.to_i,after.to_i, "updated_at did not change" ) if obj
		assert_response :redirect
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}AWiHTTPS should get show #{awihttps_title(options)}" do
		 send(options[:login])
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		turn_https_on
		send(:get,:show, args)
		assert_response :success
		assert_template 'show'
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:show) || options.keys.include?(:show)

	test "#{brand}AWiHTTPS should delete destroy #{awihttps_title(options)}" do
		 send(options[:login])
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		turn_https_on
		assert_difference("#{options[:model]}.count",-1) do
			send(:delete,:destroy,args)
		end
		assert_response :redirect
		assert assigns(m_key), "#{m_key} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:destroy) || options.keys.include?(:destroy)

	test "#{brand}AWiHTTPS should get index #{awihttps_title(options)}" do
		 send(options[:login])
		turn_https_on
		get :index
		assert_response :success
		assert_template 'index'
		assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)),
			"#{m_key.try(:to_s).try(:pluralize).try(:to_sym)} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:index) || options.keys.include?(:index)

	test "#{brand}AWiHTTPS should get index #{awihttps_title(options)} and items" do
		send(options[:before]) if !options[:before].blank?
		 send(options[:login])
		3.times{ send(options[:method_for_create]) } if !options[:method_for_create].blank?
		turn_https_on
		get :index
		assert_response :success
		assert_template 'index'
		assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym)),
			"#{m_key.try(:to_s).try(:pluralize).try(:to_sym)} was not assigned"
		assert_nil flash[:error], "flash[:error] was not nil"
	end if actions.include?(:index) || options.keys.include?(:index)

end

#assert_no_access_with_http(*actions) ⇒ Object



285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
# File 'lib/rails_extension/action_controller_extension/accessible_via_protocol.rb', line 285

def assert_no_access_with_http(*actions)
	user_options = actions.extract_options!

	options = {
		:login => :admin
	}
	if ( self.constants.include?('ASSERT_ACCESS_OPTIONS') )
		options.merge!(self::ASSERT_ACCESS_OPTIONS)
	end
	options.merge!(user_options)
	actions += options[:actions]||[]

	m_key = options[:model].try(:underscore).try(:to_sym)

	test "#{brand}NAWiHTTP should NOT get new #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args = options[:new]||{}
		send(:get,:new,args)
		assert_redirected_to @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'new', :protocol => "https://")
	end if actions.include?(:new) || options.keys.include?(:new)

	test "#{brand}NAWiHTTP should NOT post create #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args = if options[:create]
			options[:create]
		elsif options[:attributes_for_create]
			{m_key => send(options[:attributes_for_create])}
		else
			{}
		end
		assert_no_difference("#{options[:model]}.count") do
			send(:post,:create,args)
		end
		assert_match @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'create', :protocol => "https://"),@response.redirected_to
	end if actions.include?(:create) || options.keys.include?(:create)

	test "#{brand}NAWiHTTP should NOT get edit #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args=options[:edit]||{}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:edit, args)
		assert_redirected_to @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'edit', :id => args[:id], :protocol => "https://")
	end if actions.include?(:edit) || options.keys.include?(:edit)

	test "#{brand}NAWiHTTP should NOT put update #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args={}
		if options[:method_for_create] && options[:attributes_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
			args[m_key] = send(options[:attributes_for_create])
		end
		before = obj.updated_at if obj
		send(:put,:update, args)
		after = obj.reload.updated_at if obj
		assert_equal( before.to_s(:db), after.to_s(:db), "updated_at changed" ) if obj
		assert_match @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'update', :id => args[:id], :protocol => "https://"), @response.redirected_to
	end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}NAWiHTTP should NOT get show #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args=options[:show]||{}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:show, args)
		assert_redirected_to @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'show', :id => args[:id], :protocol => "https://")
	end if actions.include?(:show) || options.keys.include?(:show)

	test "#{brand}NAWiHTTP should NOT delete destroy #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		args=options[:destroy]||{}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		assert_no_difference("#{options[:model]}.count") do
			send(:delete,:destroy,args)
		end
		assert_redirected_to @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'destroy', :id => args[:id], :protocol => "https://")
	end if actions.include?(:destroy) || options.keys.include?(:destroy)

	test "#{brand}NAWiHTTP should NOT get index #{nawihttp_title(options)}" do
		turn_https_off
		 send(options[:login])
		get :index
		assert_redirected_to @controller.url_for(
			:controller => @controller.controller_name,
			:action => 'index', :protocol => "https://")
	end if actions.include?(:index) || options.keys.include?(:index)

end

#awihttp_title(options = {}) ⇒ Object



9
10
11
# File 'lib/rails_extension/action_controller_extension/accessible_via_protocol.rb', line 9

def awihttp_title(options={})
	"with #{options[:login]} login#{options[:suffix]}"
end

#awihttps_title(options = {}) ⇒ Object



145
146
147
# File 'lib/rails_extension/action_controller_extension/accessible_via_protocol.rb', line 145

def awihttps_title(options={})
	"with #{options[:login]} login#{options[:suffix]}"
end

#nawihttp_title(options = {}) ⇒ Object



281
282
283
# File 'lib/rails_extension/action_controller_extension/accessible_via_protocol.rb', line 281

def nawihttp_title(options={})
	"with #{options[:login]} login#{options[:suffix]}"
end