aboutsummaryrefslogtreecommitdiff
blob: 4fdbbcfacd761b3a4597e1c4d35e2f17bfa00923 (plain)
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
require 'spec_helper.rb'
describe User do
  include Permissions::TestPermissions

  it "should be non-admin recruit" do
    new_user  = User.new(:name => "Some", :email_address => "some@some.com")
    new_user.should_not   be_administrator
    new_user.role.should  == :recruit
  end

  it { should allow_value(:mentor).for(:role) }
  it { should allow_value(:recruiter).for(:role) }

  it "should be valid if recruiter is administrator" do
    Factory(:administrator).should be_valid
  end

  it "should be invalid if non-recruiter is administrator" do
    user = Factory(:recruit)
    user .administrator = true

    for new_role in [:recruit, :mentor]
      user.role        =  new_role
      user.should_not  be_valid
    end
  end

  it "should be prohibited for recruits and mentors to change anyone role to recruiter" do
    user = Factory(:recruit)
    for new_role in [:recruiter, :mentor]
      user.role        =  new_role
      for updater in [Factory(:recruit), Factory(:mentor), Guest.new]
        user.should_not  be_updatable_by(updater)
        user.should_not  be_editable_by(updater, :role)
      end
    end
  end

  it "should be allowed for admin to change anyone else role" do
    for other_user in [:recruit, :administrator]
      for new_role in [:recruit, :mentor, :recruiter]
        user  = Factory(other_user)
        user.role   = new_role
        user.should be_updatable_by(Factory(:administrator))
        user.should be_editable_by(Factory(:administrator), :role)
      end
    end
  end

  it 'should be invalid for recruit to mentor someone' do
    for user in [Factory(:administrator), Factory(:recruiter), Factory(:mentor)] do
      user.mentor = Factory(:recruit)
      user.should_not be_valid
    end
  end

  it 'should be allowed for mentors and recruiters to mentor someone' do
    for user in [Factory(:administrator), Factory(:recruiter), Factory(:mentor)] do
      recruit     = Factory(:recruit, :mentor => user)
      user.should be_valid
    end
  end

  it "should prohibit non-recruiter to change user role" do
    recruit       = Factory(:recruit)
    recruit.role  = :mentor
    for user in [Factory(:recruit), Factory(:mentor)]
      recruit.should_not be_updatable_by(user)
      recruit.should_not be_editable_by(user, :role)
    end
  end

  it "should allow recruiter to promote recruits to mentors" do
    recruit       = Factory(:recruit)
    recruit.role  = :mentor
    for user in [Factory(:recruiter), Factory(:administrator)]
      recruit.should be_updatable_by(user)
      recruit.should be_editable_by(user, :role)
    end
  end

  it "should allow recruiter to demote mentors to recruits" do
    recruit       = Factory(:mentor)
    recruit.role  = :recruit
    for user in [Factory(:recruiter), Factory(:administrator)]
      recruit.should be_updatable_by(user)
      recruit.should be_editable_by(user, :role)
    end
  end


  it "should return proper all_questions" do
    r = recruit_with_answered_and_unanswered_questions

    for question in r.answered + r.unanswered
      r.recruit.all_questions.include?(question).should be_true
    end
    r.recruit.all_questions.count.should == r.recruit.all_questions.uniq.count
  end

  it "should return proper answered_questions" do
    r = recruit_with_answered_and_unanswered_questions
    for question in r.answered
      r.recruit.answered_questions.include?(question).should be_true
    end
    for question in r.unanswered
      r.recruit.answered_questions.include?(question).should be_false
    end
    r.recruit.answered_questions.should == r.recruit.answered_questions.uniq
  end

  it "should return proper unanswered_questions" do
    r = recruit_with_answered_and_unanswered_questions
    unanswered = r.recruit.unanswered_questions
    (r.unanswered - unanswered).should be_empty
    (unanswered - r.unanswered).should be_empty
    unanswered.should == unanswered.uniq
  end

  it "should properly check if user answered all questions" do
    r = recruit_with_answered_and_unanswered_questions
    r.recruit.answered_all_questions?.should          be_false
    Factory(:recruit).answered_all_questions?.should  be_true
  end

  it "should return proper recruits with all questions` answered" do
    # recruits that should be returned
    correct_answered_all = [Factory(:recruit)]
    correct_answered_all.push recruit_with_answers_in_categories.recruit

    # and some other users
    recruit_with_answered_and_unanswered_questions
    Factory(:administrator)
    Factory(:mentor)
    Factory(:recruiter)

    answered_all = User.recruits_answered_all

    (answered_all - correct_answered_all).should be_empty
    (correct_answered_all - answered_all).should be_empty
  end

  it "should allow recruiters to change nick of other users" do
    for u in fabricate_all_roles
      u.should be_editable_by Factory(:recruiter), :nick
      u.should be_viewable_by Factory(:recruiter), :nick
      u.nick = 'changed'
      u.should be_updatable_by Factory(:recruiter)
    end
  end

  it "should allow user to change their nicks" do
    for u in fabricate_all_roles
      u.should be_editable_by u, :nick
      u.should be_viewable_by u, :nick
      u.nick = 'changed'
      u.should be_updatable_by u
    end
  end

  it "that is mentorless recruit should allow mentor to pick up" do
    recruit = Factory(:recruit, :mentor => nil)
    mentor  = Factory(:mentor)
    recruit.should be_editable_by(mentor)
    recruit.should be_editable_by(mentor, :mentor)
    recruit.mentor = mentor
    recruit.should be_updatable_by(mentor)
  end

  it "that is mentorless recruit should allow recruiter to pick up" do
    recruit = Factory(:recruit, :mentor => nil)
    mentor  = Factory(:recruiter)
    recruit.should be_editable_by(mentor)
    recruit.should be_editable_by(mentor, :mentor)
    recruit.mentor = mentor
    recruit.should be_updatable_by(mentor)
  end

  it "should allow mentor to resign" do
    recruit = Factory(:recruit)
    mentor  = recruit.mentor
    recruit.should be_editable_by(mentor)
    recruit.should be_editable_by(mentor, :mentor)
    recruit.mentor = nil
    recruit.should be_updatable_by(mentor)
  end

  it "should allow administartor to change mentor to resign" do
    recruit = Factory(:recruit)
    recruit.should be_editable_by(Factory(:administrator))
    recruit.should be_editable_by(Factory(:administrator), :mentor)
  end
  it "should check if mentors were Gentoo devs long enough if configured to" do
    user            = Factory(:recruit)

    # Configure to check using test data
    old_config                              =  APP_CONFIG.to_json # to restore it after his test
                                                                  # it behaves like reference if
                                                                  # I copy a hash
    APP_CONFIG['developer_data']['check']   = true
    APP_CONFIG['developer_data']['min_months_mentor_is_dev']  = '6'
    APP_CONFIG['developer_data']['data']    = %{{"developers": [
      {"joined": "#{4.years.ago.strftime('%Y/%m/%d')}", "nick": "long"},
      {"joined": "#{4.months.ago.strftime('%Y/%m/%d')}", "nick": "short"}
    ]}}

    user.role       = :mentor

    user.nick       = "long"
    user.should     be_valid

    user.nick       = "short"
    user.should_not be_valid

    user.nick       = "invalid"
    user.should_not be_valid

    silence_warnings { APP_CONFIG = JSON.load(old_config) } # restore config
  end

  it "should allow only recruiters to edit project acceptances" do
    user = Factory(:recruit)
    user.should be_editable_by(Factory(:recruiter), :project_acceptances)

    user.should_not be_editable_by(Factory(:mentor, :project_lead => true), :project_acceptances)
    user.should_not be_editable_by(Factory(:mentor), :project_acceptances)
    user.should_not be_editable_by(Factory(:recruit), :project_acceptances)
    user.should_not be_editable_by(Guest.new, :project_acceptances)
  end

  it "should have token right after creation" do
    for u in fabricate_all_roles
      u.token.should_not be_nil
    end
  end

  it "should make mentors users that register with OpenID https://dev.gentoo.org/~nick, deducing nick from OpenID" do
    user = User.new :email_address => "example@example.com", :name => "Example",
                    :openid => "https://dev.gentoo.org/~example"
    user.save!
    user.nick.should == "example"
    user.role.is_mentor?.should be_true
  end

  it "should not make mentors users that set their OpenID after registration" do
    user = Factory(:recruit)
    user.openid = "https://dev.gentoo.org/~example"
    user.save!
    user.nick.should be_nil
    user.role.is_mentor?.should be_false
  end

  it "should not make mentors users who use faked dev.gentoo.org OpenID" do
    user = User.new :email_address => "example@example.com", :name => "Example",
                    :openid => "https://fake.com/dev.gentoo.org/~example"
    user.save!
    user.nick.should be_nil
    user.role.is_mentor?.should be_false

    user = User.new :email_address => "example@fake.com", :name => "Fake",
                    :openid => "https://fake.com/https://dev.gentoo.org/~example"
    user.save!
    user.nick.should be_nil
    user.role.is_mentor?.should be_false
  end

  it "should not be creatable by anyone" do
    user = User.new :name => "name", :email_address => "email@example.com"
    for u in fabricate_all_roles + [Guest.new]
      user.should_not be_creatable_by(u)
    end
  end

  it "should allow only administrator to destroy" do
    user = Factory(:recruit)
    for u in fabricate_users(:recruit, :mentor, :recruiter) + [Guest.new]
      user.should_not be_destroyable_by(u)
    end

    user.should be_destroyable_by(Factory(:administrator))
  end

  it "should properly recognize if there are pending project acceptances" do
    lead = Factory(:mentor)
    lead.any_pending_project_acceptances?.should be_false

    ProjectAcceptance.create! :accepting_nick => lead.nick, :user => Factory(:recruit)
    lead.any_pending_project_acceptances?.should be_true

    ProjectAcceptance.first.update_attribute(:accepted, true)
    lead.any_pending_project_acceptances?.should be_false
  end

  it "should return proper questions to approve" do
    for u in fabricate_users(:recruit, :mentor, :recruiter) + [Guest.new]
      u.questions_to_approve.should == []
    end

    Factory(:administrator).questions_to_approve.should == []

    q = Factory(:question, :approved => false, :user => Factory(:recruit))

    Factory(:administrator).questions_to_approve.should == [q]
  end

  it "should properly recognize if user answered all multiple choice questions" do
    recruit = Factory(:recruit)
    recruit.answered_all_multi_choice_questions?.should be_true

    q1      = Factory(:question)
              Factory(:question_content_multiple_choice, :question => q1)
              Factory(:user_category,
                      :category => q1.categories.first,
                      :user => recruit)

    recruit.answered_all_multi_choice_questions?.should be_false

    Factory(:multiple_choice_answer, :question => q1, :owner => recruit)
    recruit.answered_all_multi_choice_questions?.should be_true

    q2      = Factory(:question, :question_group => Factory(:question_group))
    Factory(:question_content_multiple_choice, :question => q2)
    recruit.answered_all_multi_choice_questions?.should be_true

    Factory(:user_question_group,
            :user => recruit,
            :question => q2)
    recruit.answered_all_multi_choice_questions?.should be_false

    Factory(:multiple_choice_answer, :question => q2, :owner => recruit)
    recruit.answered_all_multi_choice_questions?.should be_true
  end

  it "shold return proper progress" do
    recruit = Factory(:recruit)
    recruit.progress.should == "Answered 0 of 0 questions."

    q1 = Factory(:question)
    Factory(:user_category, :user => recruit,
      :category => q1.categories.first)
    recruit.progress.should == "Answered 0 of 1 questions."

    Factory(:answer, :owner => recruit, :question => q1)
    recruit.progress.should == "Answered 1 of 1 questions."

    q2 = Factory(:question, :question_group => Factory(:question_group))
          Factory(:user_question_group, :question => q2, :user => recruit)
    recruit.progress.should == "Answered 1 of 2 questions."

    Factory(:answer, :owner => recruit, :question => q2)
    recruit.progress.should == "Answered 2 of 2 questions."
  end
end