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
|
# == Schema Information
#
# Table name: users
#
# id :integer not null, primary key
# email :string(255) not null
# name :string(255) not null
# hashed_password :string(255) not null
# salt :string(255) not null
# created_at :datetime not null
# updated_at :datetime not null
# email_confirmed :boolean default(FALSE), not null
# url_name :text not null
# last_daily_track_email :datetime default(Sat Jan 01 00:00:00 UTC 2000)
# admin_level :string(255) default("none"), not null
# ban_text :text default(""), not null
# about_me :text default(""), not null
# locale :string(255)
# email_bounced_at :datetime
# email_bounce_message :text default(""), not null
# no_limit :boolean default(FALSE), not null
# receive_email_alerts :boolean default(TRUE), not null
# can_make_batch_requests :boolean default(FALSE), not null
#
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe User, "making up the URL name" do
before do
@user = User.new
end
it 'should remove spaces, and make lower case' do
@user.name = 'Some Name'
@user.url_name.should == 'some_name'
end
it 'should not allow a numeric name' do
@user.name = '1234'
@user.url_name.should == 'user'
end
end
describe User, "showing the name" do
before do
@user = User.new
@user.name = 'Some Name '
end
it 'should strip whitespace' do
@user.name.should == 'Some Name'
end
describe 'if user has been banned' do
before do
@user.ban_text = "Naughty user"
end
it 'should show an "Account suspended" suffix' do
@user.name.should == 'Some Name (Account suspended)'
end
it 'should return a string when the user has been banned, not a SafeBuffer' do
@user.name.class.should == String
end
end
end
describe User, " when authenticating" do
before do
@empty_user = User.new
@full_user = User.new
@full_user.name = "Sensible User"
@full_user.password = "foolishpassword"
@full_user.email = "sensible@localhost"
@full_user.save
end
it "should create a hashed password when the password is set" do
@empty_user.hashed_password.should be_nil
@empty_user.password = "a test password"
@empty_user.hashed_password.should_not be_nil
end
it "should have errors when given the wrong password" do
found_user = User.authenticate_from_form({ :email => "sensible@localhost", :password => "iownzyou" })
found_user.errors.size.should > 0
end
it "should not find the user when given the wrong email" do
found_user = User.authenticate_from_form( { :email => "soccer@localhost", :password => "foolishpassword" })
found_user.errors.size.should > 0
end
it "should find the user when given the right email and password" do
found_user = User.authenticate_from_form( { :email => "sensible@localhost", :password => "foolishpassword" })
found_user.errors.size.should == 0
found_user.should == (@full_user)
end
end
describe User, " when saving" do
before do
@user = User.new
end
it "should not save without setting some parameters" do
lambda { @user.save! }.should raise_error(ActiveRecord::RecordInvalid)
end
it "should not save with misformatted email" do
@user.name = "Mr. Silly"
@user.password = "insecurepassword"
@user.email = "mousefooble"
@user.should have(1).error_on(:email)
end
it "should not allow an email address as a name" do
@user.name = "silly@example.com"
@user.email = "silly@example.com"
@user.password = "insecurepassword"
@user.should have(1).error_on(:name)
end
it "should not save with no password" do
@user.name = "Mr. Silly"
@user.password = ""
@user.email = "silly@localhost"
@user.should have(1).error_on(:hashed_password)
end
it "should save with reasonable name, password and email" do
@user.name = "Mr. Reasonable"
@user.password = "insecurepassword"
@user.email = "reasonable@localhost"
@user.save!
end
it "should let you make two users with same name" do
@user.name = "Mr. Flobble"
@user.password = "insecurepassword"
@user.email = "flobble@localhost"
@user.save!
@user2 = User.new
@user2.name = "Mr. Flobble"
@user2.password = "insecurepassword"
@user2.email = "flobble2@localhost"
@user2.save!
end
it 'should mark the model for reindexing in xapian if the no_xapian_reindex flag is set to false' do
@user.name = "Mr. First"
@user.password = "insecurepassword"
@user.email = "reasonable@localhost"
@user.no_xapian_reindex = false
@user.should_receive(:xapian_mark_needs_index)
@user.save!
end
it 'should mark the model for reindexing in xapian if the no_xapian_reindex flag is not set' do
@user.name = "Mr. Second"
@user.password = "insecurepassword"
@user.email = "reasonable@localhost"
@user.no_xapian_reindex = nil
@user.should_receive(:xapian_mark_needs_index)
@user.save!
end
it 'should not mark the model for reindexing in xapian if the no_xapian_reindex flag is set' do
@user.name = "Mr. Third"
@user.password = "insecurepassword"
@user.email = "reasonable@localhost"
@user.no_xapian_reindex = true
@user.should_not_receive(:xapian_mark_needs_index)
@user.save!
end
end
describe User, "when reindexing referencing models" do
before do
@request_event = mock_model(InfoRequestEvent, :xapian_mark_needs_index => true)
@request = mock_model(InfoRequest, :info_request_events => [@request_event])
@comment_event = mock_model(InfoRequestEvent, :xapian_mark_needs_index => true)
@comment = mock_model(Comment, :info_request_events => [@comment_event])
@user = User.new(:comments => [@comment], :info_requests => [@request])
end
it 'should reindex events associated with that user\'s comments when URL changes' do
@user.stub!(:changes).and_return({'url_name' => 1})
@comment_event.should_receive(:xapian_mark_needs_index)
@user.reindex_referencing_models
end
it 'should reindex events associated with that user\'s requests when URL changes' do
@user.stub!(:changes).and_return({'url_name' => 1})
@request_event.should_receive(:xapian_mark_needs_index)
@user.reindex_referencing_models
end
describe 'when no_xapian_reindex is set' do
before do
@user.no_xapian_reindex = true
end
it 'should not reindex events associated with that user\'s comments when URL changes' do
@user.stub!(:changes).and_return({'url_name' => 1})
@comment_event.should_not_receive(:xapian_mark_needs_index)
@user.reindex_referencing_models
end
it 'should not reindex events associated with that user\'s requests when URL changes' do
@user.stub!(:changes).and_return({'url_name' => 1})
@request_event.should_not_receive(:xapian_mark_needs_index)
@user.reindex_referencing_models
end
end
end
describe User, "when checking abilities" do
before do
@user = users(:bob_smith_user)
end
it "should not get admin links" do
@user.admin_page_links?.should be_false
end
it "should be able to file requests" do
@user.can_file_requests?.should be_true
end
end
describe User, 'when asked if a user owns every request' do
before do
@mock_user = mock_model(User)
end
it 'should return false if no user is passed' do
User.owns_every_request?(nil).should be_false
end
it 'should return true if the user has "requires admin" power' do
@mock_user.stub!(:owns_every_request?).and_return true
User.owns_every_request?(@mock_user).should be_true
end
it 'should return false if the user does not have "requires admin" power' do
@mock_user.stub!(:owns_every_request?).and_return false
User.owns_every_request?(@mock_user).should be_false
end
end
describe User, " when making name and email address" do
it "should generate a name and email" do
@user = User.new
@user.name = "Sensible User"
@user.email = "sensible@localhost"
@user.name_and_email.should == "Sensible User <sensible@localhost>"
end
it "should quote name and email with funny characters in the name" do
@user = User.new
@user.name = "Silly @ User"
@user.email = "silly@localhost"
@user.name_and_email.should == "\"Silly @ User\" <silly@localhost>"
end
end
# TODO: not finished
describe User, "when setting a profile photo" do
before do
@user = User.new
@user.name = "Sensible User"
@user.email = "sensible@localhost"
@user.password = "sensiblepassword"
end
it "should attach it to the user" do
data = load_file_fixture("parrot.png")
profile_photo = ProfilePhoto.new(:data => data)
@user.set_profile_photo(profile_photo)
profile_photo.user.should == @user
end
# it "should destroy old photos being replaced" do
# ProfilePhoto.count.should == 0
#
# data_1 = load_file_fixture("parrot.png")
# profile_photo_1 = ProfilePhoto.new(:data => data_1)
# data_2 = load_file_fixture("parrot.jpg")
# profile_photo_2 = ProfilePhoto.new(:data => data_2)
#
# @user.set_profile_photo(profile_photo_1)
# @user.save!
# ProfilePhoto.count.should == 1
# @user.set_profile_photo(profile_photo_2)
# @user.save!
# ProfilePhoto.count.should == 1
# end
end
describe User, "when unconfirmed" do
before do
@user = users(:unconfirmed_user)
end
it "should not be emailed" do
@user.should_be_emailed?.should be_false
end
end
describe User, "when emails have bounced" do
it "should record bounces" do
User.record_bounce_for_email("bob@localhost", "The reason we think the email bounced (e.g. a bounce message)")
user = User.find_user_by_email("bob@localhost")
user.email_bounced_at.should_not be_nil
user.email_bounce_message.should == "The reason we think the email bounced (e.g. a bounce message)"
end
end
describe User, "when calculating if a user has exceeded the request limit" do
before do
@info_request = FactoryGirl.create(:info_request)
@user = @info_request.user
end
it 'should return false if no request limit is set' do
AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return nil
@user.exceeded_limit?.should be_false
end
it 'should return false if the user has not submitted more than the limit' do
AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return(2)
@user.exceeded_limit?.should be_false
end
it 'should return true if the user has submitted more than the limit' do
AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return(0)
@user.exceeded_limit?.should be_true
end
it 'should return false if the user is allowed to make batch requests' do
@user.can_make_batch_requests = true
AlaveteliConfiguration.stub!(:max_requests_per_user_per_day).and_return(0)
@user.exceeded_limit?.should be_false
end
end
describe User do
describe :banned? do
it 'is banned if the user has ban_text' do
user = FactoryGirl.build(:user, :ban_text => 'banned')
expect(user).to be_banned
end
it 'is not banned if the user has no ban_text' do
user = FactoryGirl.build(:user, :ban_text => '')
expect(user).to_not be_banned
end
end
end
|