-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathUserModelTest.php
More file actions
285 lines (227 loc) · 7.9 KB
/
UserModelTest.php
File metadata and controls
285 lines (227 loc) · 7.9 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
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter Shield.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace Tests\Unit;
use CodeIgniter\Database\Exceptions\DataException;
use CodeIgniter\Shield\Entities\User;
use CodeIgniter\Shield\Exceptions\LogicException;
use CodeIgniter\Shield\Models\UserModel;
use Tests\Support\DatabaseTestCase;
/**
* @internal
*/
final class UserModelTest extends DatabaseTestCase
{
protected $namespace;
protected $refresh = true;
private function createUserModel(): UserModel
{
return new UserModel();
}
public function testSaveInsertUser(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$this->seeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'foo@bar.com',
]);
$this->seeInDatabase($this->tables['users'], [
'id' => $user->id,
'active' => 0,
]);
}
/**
* @see https://github.com/codeigniter4/shield/issues/546
*/
public function testFindByCredentialsEmptyEmail(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => '']);
$this->assertNull($user);
$user = $users->findByCredentials([]);
$this->assertNull($user);
}
public function testInsertUserObject(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->insert($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$this->seeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'foo@bar.com',
]);
$this->seeInDatabase($this->tables['users'], [
'id' => $user->id,
'active' => 0,
]);
}
/**
* @see https://github.com/codeigniter4/shield/issues/450
*/
public function testSaveNewUserAndGetEmailIdentity(): void
{
$this->expectException(LogicException::class);
$this->expectExceptionMessage('"$user->id" is null. You should not use the incomplete User object.');
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user->getEmailIdentity();
}
/**
* This test is not correct.
*
* Entity's `toArray()` method returns array with properties and values.
* The array may have different keys with the DB column names.
* And the values may be different types with the DB column types.
* So $userArray is not data to be inserted into the database.
*/
public function testInsertUserArray(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$userArray = $user->toArray();
// Fix value type
$userArray['active'] = (int) $userArray['active'];
$id = $users->insert($userArray);
$this->dontSeeInDatabase($this->tables['identities'], [
'user_id' => $id,
'secret' => 'foo@bar.com',
]);
$this->seeInDatabase($this->tables['users'], [
'id' => $id,
'active' => 0,
]);
}
private function createNewUser(): User
{
$user = new User();
$user->username = 'foo';
$user->email = 'foo@bar.com';
$user->password = 'password';
$user->active = false;
return $user;
}
public function testSaveUpdateUserObjectWithUserDataToUpdate(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$user->username = 'bar';
$user->email = 'bar@bar.com';
$user->active = true;
$this->assertInstanceOf(User::class, $user);
$users->save($user);
$this->seeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'bar@bar.com',
]);
$this->seeInDatabase($this->tables['users'], [
'id' => $user->id,
'active' => 1,
]);
}
public function testUpdateUserObjectWithUserDataToUpdate(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$user->username = 'bar';
$user->email = 'bar@bar.com';
$user->active = true;
$this->assertInstanceOf(User::class, $user);
$users->update($user->id, $user);
$this->seeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'bar@bar.com',
]);
$this->seeInDatabase($this->tables['users'], [
'id' => $user->id,
'active' => 1,
]);
}
/**
* This test is not correct.
*
* Entity's `toArray()` method returns array with properties and values.
* The array may have different keys with the DB column names.
* And the values may be different types with the DB column types.
* So $userArray is not data to be inserted into the database.
*/
public function testUpdateUserArrayWithUserDataToUpdate(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$this->assertInstanceOf(User::class, $user);
$user->username = 'bar';
$user->email = 'bar@bar.com';
$user->active = true;
$userArray = $user->toArray();
// Fix value type
$userArray['active'] = (int) $userArray['active'];
$users->update($user->id, $userArray);
$this->dontSeeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'bar@bar.com',
]);
$this->seeInDatabase($this->tables['users'], [
'id' => $user->id,
'active' => 1,
]);
}
public function testSaveUpdateUserObjectWithoutUserDataToUpdate(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$user->email = 'bar@bar.com';
$this->assertInstanceOf(User::class, $user);
$users->save($user);
$this->seeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'bar@bar.com',
]);
}
public function testUpdateUserObjectWithoutUserDataToUpdate(): void
{
$users = $this->createUserModel();
$user = $this->createNewUser();
$users->save($user);
$user = $users->findByCredentials(['email' => 'foo@bar.com']);
$user->email = 'bar@bar.com';
$this->assertInstanceOf(User::class, $user);
$users->update(null, $user);
$this->seeInDatabase($this->tables['identities'], [
'user_id' => $user->id,
'secret' => 'bar@bar.com',
]);
}
/**
* @see https://github.com/codeigniter4/shield/issues/471
*/
public function testSaveArrayNoDataToUpdate(): void
{
$this->expectException(DataException::class);
$this->expectExceptionMessage('There is no data to update.');
$users = $this->createUserModel();
$user = fake(UserModel::class);
$users->save(['id' => $user->id]);
}
}