application_helper_test.rb
18.6 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
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
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
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
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
require File.dirname(__FILE__) + '/../test_helper'
class ApplicationHelperTest < Test::Unit::TestCase
include ApplicationHelper
def setup
self.stubs(:session).returns({})
end
should 'calculate correctly partial for object' do
self.stubs(:params).returns({:controller => 'test'})
File.expects(:exists?).with("#{RAILS_ROOT}/app/views/test/_float.rhtml").returns(false)
File.expects(:exists?).with("#{RAILS_ROOT}/app/views/test/_numeric.rhtml").returns(true).times(2)
File.expects(:exists?).with("#{RAILS_ROOT}/app/views/test/_runtime_error.rhtml").returns(true).at_least_once
assert_equal 'numeric', partial_for_class(Float)
assert_equal 'numeric', partial_for_class(Numeric)
assert_equal 'runtime_error', partial_for_class(RuntimeError)
end
should 'give error when there is no partial for class' do
assert_raises ArgumentError do
partial_for_class(nil)
end
end
should 'generate link to stylesheet' do
File.expects(:exists?).with(File.join(RAILS_ROOT, 'public', 'stylesheets', 'something.css')).returns(true)
expects(:filename_for_stylesheet).with('something', nil).returns('/stylesheets/something.css')
assert_match '@import url(/stylesheets/something.css)', stylesheet_import('something')
end
should 'not generate link to unexisting stylesheet' do
File.expects(:exists?).with(File.join(RAILS_ROOT, 'public', 'stylesheets', 'something.css')).returns(false)
expects(:filename_for_stylesheet).with('something', nil).returns('/stylesheets/something.css')
assert_no_match %r{@import url(/stylesheets/something.css)}, stylesheet_import('something')
end
should 'handle nil dates' do
assert_equal '', show_date(nil)
end
should 'append with-text class and keep existing classes' do
expects(:button_without_text).with('type', 'label', 'url', { :class => 'with-text class1'})
button('type', 'label', 'url', { :class => 'class1' })
end
should 'generate correct link to category' do
cat = mock
cat.expects(:path).returns('my-category/my-subcatagory')
cat.expects(:full_name).returns('category name')
cat.expects(:environment).returns(Environment.default)
Environment.any_instance.expects(:default_hostname).returns('example.com')
result = "/cat/my-category/my-subcatagory"
expects(:link_to).with('category name', :controller => 'search', :action => 'category_index', :category_path => ['my-category', 'my-subcatagory'], :host => 'example.com').returns(result)
assert_same result, link_to_category(cat)
end
should 'nil theme option when no exists theme' do
stubs(:current_theme).returns('something-very-unlikely')
File.expects(:exists?).returns(false)
assert_nil theme_option()
end
should 'nil javascript theme when no exists theme' do
stubs(:current_theme).returns('something-very-unlikely')
File.expects(:exists?).returns(false)
assert_nil theme_javascript
end
should 'role color for admin role' do
assert_equal 'blue', role_color(Profile::Roles.admin(Environment.default.id), Environment.default.id)
end
should 'role color for member role' do
assert_equal 'green', role_color(Profile::Roles.member(Environment.default.id), Environment.default.id)
end
should 'role color for moderator role' do
assert_equal 'gray', role_color(Profile::Roles.moderator(Environment.default.id), Environment.default.id)
end
should 'default role color' do
assert_equal 'black', role_color('none', Environment.default.id)
end
should 'rolename for' do
person = create_user('usertest').person
community = Community.create!(:name => 'new community', :identifier => 'new-community', :environment => Environment.default)
community.add_member(person)
assert_equal 'Profile Member', rolename_for(person, community)
end
should 'display categories' do
# FIXME implement this test!!!
assert true
#category = Category.create!(:name => 'parent category for testing', :environment_id => Environment.default)
#child = Category.create!(:name => 'child category for testing', :environment => Environment.default, :display_in_menu => true, :parent => category)
#owner = create_user('testuser').person
#@article = owner.articles.create!(:name => 'ytest')
#@article.add_category(category)
#expects(:environment).returns(Environment.default)
#result = select_categories(:article)
#assert_match /parent category/, result
end
should 'not display categories if has no child' do
# FIXME implement this test!!!
assert true
#category = Category.create!(:name => 'parent category for testing', :environment_id => Environment.default)
#owner = create_user('testuser').person
#@article = owner.articles.create!(:name => 'ytest')
#@article.add_category(category)
#expects(:environment).returns(Environment.default)
#result = select_categories(:article)
#assert_no_match /parent category/, result
end
should 'get theme from environment by default' do
@environment = mock
@environment.stubs(:theme).returns('my-environment-theme')
stubs(:profile).returns(nil)
assert_equal 'my-environment-theme', current_theme
end
should 'get theme from profile when profile is present' do
profile = mock
profile.stubs(:theme).returns('my-profile-theme')
stubs(:profile).returns(profile)
assert_equal 'my-profile-theme', current_theme
end
should 'override theme with testing theme from session' do
stubs(:session).returns(:theme => 'theme-under-test')
assert_equal 'theme-under-test', current_theme
end
should 'point to system theme path by default' do
expects(:current_theme).returns('my-system-theme')
assert_equal '/designs/themes/my-system-theme', theme_path
end
should 'point to user theme path when testing theme' do
stubs(:session).returns({:theme => 'theme-under-test'})
assert_equal '/user_themes/theme-under-test', theme_path
end
should 'render theme footer' do
stubs(:theme_path).returns('/user_themes/mytheme')
footer_path = RAILS_ROOT + '/public/user_themes/mytheme/footer.rhtml'
File.expects(:exists?).with(footer_path).returns(true)
expects(:render).with(:file => footer_path, :use_full_path => false).returns("BLI")
assert_equal "BLI", theme_footer
end
should 'ignore unexisting theme footer' do
stubs(:theme_path).returns('/user_themes/mytheme')
footer_path = RAILS_ROOT + '/public/user_themes/mytheme/footer.rhtml'
File.expects(:exists?).with(footer_path).returns(false)
expects(:render).with(:file => footer).never
assert_nil theme_footer
end
should 'expose theme owner' do
theme = mock
profile = mock
Theme.expects(:find).with('theme-under-test').returns(theme)
theme.expects(:owner).returns(profile)
profile.expects(:identifier).returns('sampleuser')
stubs(:current_theme).returns('theme-under-test')
assert_equal 'sampleuser', theme_owner
end
should 'use default template when there is no profile' do
stubs(:profile).returns(nil)
assert_equal "@import url(/designs/templates/default/stylesheets/style.css);", template_stylesheet_tag
end
should 'use template from profile' do
profile = mock
profile.expects(:layout_template).returns('mytemplate')
stubs(:profile).returns(profile)
foo = mock
expects(:stylesheet_import).with('/designs/templates/mytemplate/stylesheets/style.css').returns(foo)
assert_same foo, template_stylesheet_tag
end
should 'use https:// for login_url' do
environment = Environment.default
environment.update_attribute(:enable_ssl, true)
environment.domains << Domain.new(:name => "test.domain.net", :is_default => true)
stubs(:environment).returns(environment)
stubs(:url_for).with(has_entries(:protocol => 'https://', :host => 'test.domain.net')).returns('LALALA')
assert_equal 'LALALA', login_url
end
should 'not force ssl in login_url when environment has ssl disabled' do
environment = mock
environment.expects(:enable_ssl).returns(false).at_least_once
stubs(:environment).returns(environment)
request = mock
request.stubs(:host).returns('localhost')
stubs(:request).returns(request)
expects(:url_for).with(has_entries(:protocol => 'https://')).never
expects(:url_for).with(has_key(:controller)).returns("LALALA")
assert_equal "LALALA", login_url
end
should 'return nil if disable_categories is enabled' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
assert_not_nil env
env.enable(:disable_categories)
assert env.enabled?(:disable_categories)
assert_nil select_categories(mock)
end
should 'create rss feed link to blog' do
@controller = mock
@controller.stubs(:controller_name).returns('content_viewer')
p = create_user('testuser').person
b = Blog.create!(:profile => p, :name => 'blog_feed_test')
assert_tag_in_string meta_tags_for_article(b), :tag => 'link', :attributes => {:type => 'application/rss+xml', :title => 'feed'}
end
should 'provide sex icon for males' do
stubs(:environment).returns(Environment.default)
expects(:content_tag).with(anything, 'male').returns('MALE!!')
expects(:content_tag).with(anything, 'MALE!!', is_a(Hash)).returns("FINAL")
assert_equal "FINAL", profile_sex_icon(Person.new(:sex => 'male'))
end
should 'provide sex icon for females' do
stubs(:environment).returns(Environment.default)
expects(:content_tag).with(anything, 'female').returns('FEMALE!!')
expects(:content_tag).with(anything, 'FEMALE!!', is_a(Hash)).returns("FINAL")
assert_equal "FINAL", profile_sex_icon(Person.new(:sex => 'female'))
end
should 'provide undef sex icon' do
stubs(:environment).returns(Environment.default)
expects(:content_tag).with(anything, 'undef').returns('UNDEF!!')
expects(:content_tag).with(anything, 'UNDEF!!', is_a(Hash)).returns("FINAL")
assert_equal "FINAL", profile_sex_icon(Person.new(:sex => nil))
end
should 'not draw sex icon for non-person profiles' do
assert_equal '', profile_sex_icon(Community.new)
end
should 'not draw sex icon when disabled in the environment' do
env = Environment.create!(:name => 'env test')
env.expects(:enabled?).with('disable_gender_icon').returns(true)
stubs(:environment).returns(env)
assert_equal '', profile_sex_icon(Person.new(:sex => 'male'))
end
should 'display field on signup' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
controller = mock
stubs(:controller).returns(controller)
controller.expects(:action_name).returns('signup')
profile = Person.new
profile.expects(:signup_fields).returns(['field'])
assert_equal 'SIGNUP_FIELD', optional_field(profile, 'field', 'SIGNUP_FIELD')
end
should 'not display field on signup' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
controller = mock
stubs(:controller).returns(controller)
controller.expects(:action_name).returns('signup')
profile = Person.new
profile.expects(:signup_fields).returns([])
assert_equal '', optional_field(profile, 'field', 'SIGNUP_FIELD')
end
should 'display active fields' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
controller = mock
stubs(:controller).returns(controller)
controller.expects(:action_name).returns('edit')
profile = Person.new
profile.expects(:active_fields).returns(['field'])
assert_equal 'SIGNUP_FIELD', optional_field(profile, 'field', 'SIGNUP_FIELD')
end
should 'not display active fields' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
controller = mock
stubs(:controller).returns(controller)
controller.expects(:action_name).returns('edit')
profile = Person.new
profile.expects(:active_fields).returns([])
assert_equal '', optional_field(profile, 'field', 'SIGNUP_FIELD')
end
should 'display required fields' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
controller = mock
stubs(:controller).returns(controller)
controller.expects(:action_name).returns('edit')
stubs(:required).with('SIGNUP_FIELD').returns('<span>SIGNUP_FIELD</span>')
profile = Person.new
profile.expects(:active_fields).returns(['field'])
profile.expects(:required_fields).returns(['field'])
assert_equal '<span>SIGNUP_FIELD</span>', optional_field(profile, 'field', 'SIGNUP_FIELD')
end
should 'display required fields on signup even if admin did not marked field to show up in signup' do
env = Environment.create!(:name => 'env test')
stubs(:environment).returns(env)
controller = mock
stubs(:controller).returns(controller)
controller.expects(:action_name).returns('signup')
stubs(:required).with('SIGNUP_FIELD').returns('<span>SIGNUP_FIELD</span>')
profile = Person.new
profile.stubs(:required_fields).returns(['field'])
profile.stubs(:signup_fields).returns([])
assert_equal '<span>SIGNUP_FIELD</span>', optional_field(profile, 'field', 'SIGNUP_FIELD')
end
should 'not ask_to_join unless profile defined' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
stubs(:profile).returns(nil)
assert ! ask_to_join?
end
should 'not ask_to_join unless profile is community' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
p = create_user('test_user').person
stubs(:profile).returns(p)
assert ! ask_to_join?
end
should 'not ask_to_join if action join' do
expects(:params).returns({:action => 'join'})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(false)
assert ! ask_to_join?
end
should 'ask_to_join if its not logged and in a community' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(false)
assert ask_to_join?
end
should 'ask_to_join if user say so' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(true)
p = create_user('test_user').person
p.stubs(:ask_to_join?).with(c).returns(true)
stubs(:user).returns(p)
assert ask_to_join?
end
should 'not ask_to_join if user say no' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(true)
p = create_user('test_user').person
p.stubs(:ask_to_join?).with(c).returns(false)
stubs(:user).returns(p)
assert !ask_to_join?
end
should 'not ask_to_join if environment say no even if its not logged and in a community' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(false)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(false)
assert !ask_to_join?
end
should 'not ask_to_join if environment say no even if user say so' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(false)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(true)
p = create_user('test_user').person
p.stubs(:ask_to_join?).with(c).returns(true)
stubs(:user).returns(p)
assert !ask_to_join?
end
should 'not ask_to_join if its recorded in the session' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(false)
stubs(:session).returns({:no_asking => [c.id]})
assert !ask_to_join?
end
should 'not ask_to_join if its recorded in the session even for authenticated users' do
stubs(:params).returns({})
e = Environment.default
e.stubs(:enabled?).with(:join_community_popup).returns(true)
stubs(:environment).returns(e)
c = Community.create(:name => 'test_comm', :identifier => 'test_comm')
stubs(:profile).returns(c)
stubs(:logged_in?).returns(true)
stubs(:session).returns({:no_asking => [c.id]})
assert !ask_to_join?
end
should 'give default icon theme when no exists stylesheet file' do
e = Environment.default
e.icon_theme = 'something-very-unlikely'
stubs(:environment).returns(e)
assert_equal "@import url(/designs/icons/default/style.css);", icon_theme_stylesheet_tag
end
should 'not display active field if only required' do
profile = mock
profile.expects(:required_fields).returns([])
assert_equal '', optional_field(profile, :field_name, '<html tags>', true)
end
should 'display name on page title if profile doesnt have nickname' do
stubs(:environment).returns(Environment.default)
c = Community.create(:name => 'Comm name', :identifier => 'test_comm')
stubs(:profile).returns(c)
assert_match(/Comm name/, page_title)
end
should 'display nickname on page title if profile has nickname' do
stubs(:environment).returns(Environment.default)
c = Community.create(:name => 'Community for tests', :nickname => 'Community nickname', :identifier => 'test_comm')
stubs(:profile).returns(c)
assert_match(/Community nickname/, page_title)
end
protected
def url_for(args = {})
args
end
def content_tag(tag, content, options = {})
content.strip
end
def javascript_tag(any)
''
end
def link_to(label, action, options = {})
label
end
def check_box_tag(name, value = 1, checked = false, options = {})
name
end
def stylesheet_link_tag(arg)
arg
end
end