forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMiscellaneousModelTest.php
More file actions
183 lines (144 loc) · 5.46 KB
/
MiscellaneousModelTest.php
File metadata and controls
183 lines (144 loc) · 5.46 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
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Models;
use CodeIgniter\Database\Exceptions\DataException;
use CodeIgniter\Events\Events;
use CodeIgniter\Exceptions\InvalidArgumentException;
use CodeIgniter\I18n\Time;
use PHPUnit\Framework\Attributes\Group;
use Tests\Support\Models\EntityModel;
use Tests\Support\Models\JobModel;
use Tests\Support\Models\SimpleEntity;
use Tests\Support\Models\UserModel;
use Tests\Support\Models\ValidModel;
/**
* @internal
*/
#[Group('DatabaseLive')]
final class MiscellaneousModelTest extends LiveModelTestCase
{
public function testChunk(): void
{
$rowCount = 0;
$this->createModel(UserModel::class)->chunk(2, static function ($row) use (&$rowCount): void {
$rowCount++;
});
$this->assertSame(4, $rowCount);
}
public function testChunkThrowsOnZeroSize(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('chunk() requires a positive integer for the $size argument.');
$this->createModel(UserModel::class)->chunk(0, static function ($row): void {});
}
public function testChunkThrowsOnNegativeSize(): void
{
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage('chunk() requires a positive integer for the $size argument.');
$this->createModel(UserModel::class)->chunk(-1, static function ($row): void {});
}
public function testChunkEarlyExit(): void
{
$rowCount = 0;
$this->createModel(UserModel::class)->chunk(2, static function ($row) use (&$rowCount): bool {
$rowCount++;
return false;
});
$this->assertSame(1, $rowCount);
}
public function testChunkDoesNotRunExtraQuery(): void
{
$queryCount = 0;
$listener = static function () use (&$queryCount): void {
$queryCount++;
};
Events::on('DBQuery', $listener);
$this->createModel(UserModel::class)->chunk(4, static function ($row): void {});
Events::removeListener('DBQuery', $listener);
$this->assertSame(2, $queryCount);
}
public function testChunkEmptyTable(): void
{
$this->db->table('user')->truncate();
$rowCount = 0;
$this->createModel(UserModel::class)->chunk(2, static function ($row) use (&$rowCount): void {
$rowCount++;
});
$this->assertSame(0, $rowCount);
}
public function testCanCreateAndSaveEntityClasses(): void
{
$entity = $this->createModel(EntityModel::class)->where('name', 'Developer')->first();
$this->assertInstanceOf(SimpleEntity::class, $entity);
$this->assertSame('Developer', $entity->name);
$this->assertSame('Awesome job, but sometimes makes you bored', $entity->description);
$time = time();
$entity->name = 'Senior Developer';
$entity->created_at = $time;
$this->assertTrue($this->model->save($entity));
$result = $this->model->where('name', 'Senior Developer')->first();
$this->assertSame(
Time::createFromTimestamp($time)->toDateTimeString(),
$result->created_at->toDateTimeString(),
);
}
/**
* @see https://github.com/codeigniter4/CodeIgniter4/issues/580
*/
public function testPasswordsStoreCorrectly(): void
{
$data = [
'name' => password_hash('secret123', PASSWORD_BCRYPT),
'email' => '[email protected]',
'country' => 'US',
];
$this->createModel(UserModel::class)->insert($data);
$this->seeInDatabase('user', $data);
}
public function testReplaceObject(): void
{
$data = [
'id' => 1,
'name' => 'my name',
'description' => 'some description',
];
$this->createModel(ValidModel::class)->replace($data);
$this->seeInDatabase('job', ['id' => 1, 'name' => 'my name']);
}
public function testGetValidationMessagesForReplace(): void
{
$jobData = [
'name' => 'Comedian',
'description' => null,
];
$this->createModel(JobModel::class);
$this->setPrivateProperty($this->model, 'validationRules', ['description' => 'required']);
$this->assertFalse($this->model->replace($jobData));
$error = $this->model->errors();
$this->assertArrayHasKey('description', $error);
}
public function testUndefinedTypeInTransformDataToArray(): void
{
$this->expectException('InvalidArgumentException');
$this->expectExceptionMessage('Invalid type "whatever" used upon transforming data to array.');
$this->createModel(JobModel::class);
$method = self::getPrivateMethodInvoker($this->model, 'transformDataToArray');
$method([], 'whatever');
}
public function testEmptyDataInTransformDataToArray(): void
{
$this->expectException(DataException::class);
$this->expectExceptionMessage('There is no data to insert.');
$this->createModel(JobModel::class);
$method = self::getPrivateMethodInvoker($this->model, 'transformDataToArray');
$method([], 'insert');
}
}