Module: SimplyTestable::ActionControllerExtension::AccessibleViaUser::ClassMethods

Defined in:
lib/simply_testable/action_controller_extension/accessible_via_user.rb

Overview

module InstanceMethods

Instance Method Summary collapse

Instance Method Details

#assert_access_with_login(*actions) ⇒ Object



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
# File 'lib/simply_testable/action_controller_extension/accessible_via_user.rb', line 29

def (*actions)
	user_options = actions.extract_options!

	options = {}
	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)

#			o = {
#				:actions => {
#					:new => {
#						:request => [ :get, :new ]
#					}
#				}
#			}

	logins = Array(options[:logins]||options[:login])
	logins.each do ||
		#	options[:login] is set for the title,
		#	but "login_as send(login)" as options[:login]
		#	will be the last in the array at runtime.
		options[:login] = 

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

	test "#{brand}should post create #{awil_title(options)}" do
		 send()
		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]
	end if actions.include?(:create) || options.keys.include?(:create)

	test "#{brand}should get edit #{awil_title(options)}" do
		 send()
		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)
		assert_nil flash[:error]
	end if actions.include?(:edit) || options.keys.include?(:edit)

	test "#{brand}should put update #{awil_title(options)}" do
		 send()
		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 if obj
		assert_response :redirect
		assert_nil flash[:error]
	end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}should get show #{awil_title(options)}" do
		 send()
		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)
		assert_nil flash[:error]
	end if actions.include?(:show) || options.keys.include?(:show)

	test "#{brand}should delete destroy #{awil_title(options)}" do
		 send()
		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)
		assert_nil flash[:error]
	end if actions.include?(:destroy) || options.keys.include?(:destroy)

	test "#{brand}should get index #{awil_title(options)}" do
		 send()
		get :index
		assert_response :success
		assert_template 'index'
		assert assigns(m_key.try(:to_s).try(:pluralize).try(:to_sym))
		assert_nil flash[:error]
	end if actions.include?(:index) || options.keys.include?(:index)

	test "#{brand}should get index #{awil_title(options)} and items" do
		send(options[:before]) if !options[:before].blank?
		 send()
		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))
		assert_nil flash[:error]
	end if actions.include?(:index) || options.keys.include?(:index)

	end	#	logins.each
end

#assert_access_without_login(*actions) ⇒ Object

I can’t imagine a whole lot of use for this one.



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
# File 'lib/simply_testable/action_controller_extension/accessible_via_user.rb', line 168

def (*actions)
	user_options = actions.extract_options!

	options = {}
	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 "should NOT get new without login" do
#				get :new
#				assert_redirected_to_login
#			end if actions.include?(:new) || options.keys.include?(:new)
#
#			test "should NOT post create without login" do
#				args = {}
#				args = if options[:create]
#					options[:create]
#				else
#					{options[:factory] => Factory.attributes_for(options[:factory])}
#				end
#				assert_no_difference("#{options[:model]}.count") do
#					send(:post,:create,args)
#				end
#				assert_redirected_to_login
#			end if actions.include?(:create) || options.keys.include?(:create)
#
#			test "should NOT get edit without login" do
#				args=[]
#				if options[:factory]
#					obj = Factory(options[:factory])
#					args.push(:id => obj.id)
#				end
#				send(:get,:edit, *args)
#				assert_redirected_to_login
#			end if actions.include?(:edit) || options.keys.include?(:edit)
#
#			test "should NOT put update without login" do
#				args={}
#				if options[:factory]
#					obj = Factory(options[:factory])
#					args[:id] = obj.id
#					args[options[:factory]] = Factory.attributes_for(options[:factory])
#				end
#				send(:put,:update, args)
#				assert_redirected_to_login
#			end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}AWoL should get show without login" do
		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)
		assert_nil flash[:error]
	end if actions.include?(:show) || options.keys.include?(:show)

#			test "should NOT delete destroy without login" do
#				args=[]
#				if options[:factory]
#					obj = Factory(options[:factory])
#					args.push(:id => obj.id)
#				end
#				assert_no_difference("#{options[:model]}.count") do
#					send(:delete,:destroy,*args)
#				end
#				assert_redirected_to_login
#			end if actions.include?(:destroy) || options.keys.include?(:destroy)
#
#			test "should NOT get index without login" do
#				get :index
#				assert_redirected_to_login
#			end if actions.include?(:index) || options.keys.include?(:index)

end

#assert_no_access_with_login(*actions) ⇒ Object



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
280
281
282
283
284
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
# File 'lib/simply_testable/action_controller_extension/accessible_via_user.rb', line 255

def (*actions)
	user_options = actions.extract_options!

	options = {}
	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)

	logins = Array(options[:logins]||options[:login])
	logins.each do ||
		#	options[:login] is set for the title,
		#	but "login_as send(login)" as options[:login]
		#	will be the last in the array at runtime.
		options[:login] = 

	test "#{brand}should NOT get new #{nawil_title(options)}" do
		 send()
		args = options[:new]||{}
		send(:get,:new,args)
		assert_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:new) || options.keys.include?(:new)

	test "#{brand}should NOT post create #{nawil_title(options)}" do
		 send()
		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_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:create) || options.keys.include?(:create)

	test "#{brand}should NOT get edit #{nawil_title(options)}" do
		 send()
		args=options[:edit]||{}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:edit, args)
		assert_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:edit) || options.keys.include?(:edit)

	test "#{brand}should NOT put update #{nawil_title(options)}" do
		 send()
		args=options[:update]||{}
		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) if obj
		assert_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}should NOT get show #{nawil_title(options)}" do
		 send()
		args=options[:show]||{}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:show, args)
		assert_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:show) || options.keys.include?(:show)

	test "#{brand}should NOT delete destroy #{nawil_title(options)}" do
		 send()
		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_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:destroy) || options.keys.include?(:destroy)

	test "#{brand}should NOT get index #{nawil_title(options)}" do
		 send()
		get :index
		assert_not_nil flash[:error]
		assert_redirected_to nawil_redirection(options)
	end if actions.include?(:index) || options.keys.include?(:index)

	end	#	logins.each
end

#assert_no_access_without_login(*actions) ⇒ Object



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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# File 'lib/simply_testable/action_controller_extension/accessible_via_user.rb', line 362

def (*actions)
	user_options = actions.extract_options!

	options = {}
	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}should NOT get new without login" do
		get :new
		
	end if actions.include?(:new) || options.keys.include?(:new)

	test "#{brand}should NOT post create without login" do
		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
		
	end if actions.include?(:create) || options.keys.include?(:create)

	test "#{brand}should NOT get edit without login" do
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:edit, args)
		
	end if actions.include?(:edit) || options.keys.include?(:edit)

	test "#{brand}should NOT put update without login" do
		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) if obj
		
	end if actions.include?(:update) || options.keys.include?(:update)

	test "#{brand}should NOT get show without login" do
		args={}
		if options[:method_for_create]
			obj = send(options[:method_for_create])
			args[:id] = obj.id
		end
		send(:get,:show, args)
		
	end if actions.include?(:show) || options.keys.include?(:show)

	test "#{brand}should NOT delete destroy without login" do
		args={}
		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
		
	end if actions.include?(:destroy) || options.keys.include?(:destroy)

	test "#{brand}should NOT get index without login" do
		get :index
		
	end if actions.include?(:index) || options.keys.include?(:index)

end

#awil_title(options = {}) ⇒ Object



25
26
27
# File 'lib/simply_testable/action_controller_extension/accessible_via_user.rb', line 25

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

#nawil_title(options = {}) ⇒ Object



251
252
253
# File 'lib/simply_testable/action_controller_extension/accessible_via_user.rb', line 251

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