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
|
require_relative '../test_helper'
class AccountTest < ActiveSupport::TestCase
setup do
@testcode = InviteCode.new
@testcode.save!
end
teardown do
Identity.destroy_all_orphaned
end
test "create a new account when invited" do
user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
assert user.valid?, "unexpected errors: #{user.errors.inspect}"
assert user.persisted?
assert id = user.identity
assert_equal user.email_address, id.address
assert_equal user.email_address, id.destination
user.account.destroy
end
test "fail to create account without invite" do
with_config invite_required: true do
user = Account.create(FactoryGirl.attributes_for(:user))
assert !user.valid?, "user should not be valid"
assert !user.persisted?, "user should not have been saved"
assert_has_errors user, invite_code: "This is not a valid code"
end
end
test "allow invite_required override" do
with_config invite_required: true do
user = Account.create(FactoryGirl.attributes_for(:user), :invite_required => false)
assert user.valid?, "unexpected errors: #{user.errors.inspect}"
assert user.persisted?, "user should have been saved"
user.account.destroy
end
end
test "create a new account" do
with_config invite_required: false do
user = Account.create(FactoryGirl.attributes_for(:user))
assert user.valid?, "unexpected errors: #{user.errors.inspect}"
assert user.persisted?
user.account.destroy
end
end
test "error on reused username" do
with_config invite_required: false do
attributes = FactoryGirl.attributes_for :user
user = Account.create attributes
dup = Account.create attributes
assert !dup.valid?
assert_has_errors dup, login: "has already been taken"
user.account.destroy
end
end
test "error on invalid username" do
with_config invite_required: false do
attributes = FactoryGirl.attributes_for :user, login: "a"
user = Account.create attributes
assert !user.valid?
assert_has_errors user, login: "Must have at least two characters"
end
end
test "create and remove a user account" do
# We keep an identity that will block the handle from being reused.
assert_difference "Identity.count" do
assert_no_difference "User.count" do
user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
user.account.destroy
end
end
end
test "change username and create alias" do
user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
old_id = user.identity
old_email = user.email_address
user.account.update(FactoryGirl.attributes_for(:user))
user.reload
old_id.reload
assert user.valid?
assert user.persisted?
assert id = user.identity
assert id.persisted?
assert_equal user.email_address, id.address
assert_equal user.email_address, id.destination
assert_equal user.email_address, old_id.destination
assert_equal old_email, old_id.address
user.account.destroy
end
test "create recovery code if it does not exist" do
user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
user.account.update(:recovery_code_verifier => "abc", :recovery_code_salt => "123")
user.reload
assert_equal "abc", user.recovery_code_verifier
assert_equal "123", user.recovery_code_salt
user.account.destroy
end
test "update recovery code that already exists" do
user = Account.create(FactoryGirl.attributes_for(:user,
:invite_code => @testcode.invite_code,
:recovery_code_verifier => "000",
:recovery_code_salt => "111"))
user.account.update(:recovery_code_verifier => "abc", :recovery_code_salt => "123")
user.reload
assert_equal "abc", user.recovery_code_verifier
assert_equal "123", user.recovery_code_salt
user.account.destroy
end
test "update password" do
user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
user.account.update(:password_verifier => "551A8B", :password_salt => "551A8B")
assert_equal "551A8B", user.password_verifier
assert_equal "551A8B", user.password_salt
user.account.destroy
end
test "Invite code count goes up by 1 when the invite code is entered" do
with_config invite_required: true do
user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
user_code = InviteCode.find_by_invite_code user.invite_code
user_code.save
user.save
assert user.persisted?
assert_equal 1, user_code.invite_count
end
end
test "Invite code stays zero when invite code is not used" do
#user = Account.create(FactoryGirl.attributes_for(:user, :invite_code => @testcode.invite_code))
invalid_user = FactoryGirl.build(:user, :invite_code => @testcode.invite_code)
invalid_user.save
user_code = InviteCode.find_by_invite_code invalid_user.invite_code
user_code.save
assert_equal 0, user_code.invite_count
end
test "disabled accounts have no cert fingerprints" do
user = Account.create(FactoryGirl.attributes_for(:user))
cert = stub(expiry: 1.month.from_now, fingerprint: SecureRandom.hex)
user.identity.register_cert cert
user.identity.save
assert_equal(cert.fingerprint, Identity.for(user).cert_fingerprints.keys.first)
user.account.disable
assert_equal({}, Identity.for(user).cert_fingerprints)
assert_equal(cert.fingerprint, Identity.for(user).read_attribute(:disabled_cert_fingerprints).keys.first)
user.account.enable
assert_equal(cert.fingerprint, Identity.for(user).cert_fingerprints.keys.first)
end
# Pixelated relies on the ability to test invite codes without sending a
# username and password yet.
# So we better make sure we return the appropriate errors
test "errors trying to create account with invite only" do
with_config invite_required: true do
user = Account.create invite_code: @testcode.invite_code
assert user.errors[:invite_code].blank?
end
end
test "errors trying to create account with invalid invite only" do
with_config invite_required: true do
user = Account.create invite_code: "wrong_invite_code"
assert_has_errors user, invite_code: "This is not a valid code"
end
end
# Tests for the presence of the errors given.
# Does not test for the absence of other errors - so there may be more.
def assert_has_errors(record, errors)
errors.each do |field, field_errors|
Array(field_errors).each do |error|
assert_includes record.errors[field], error
end
end
end
end
|