forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMiscellaneousModelTest.php
More file actions
123 lines (100 loc) · 3.65 KB
/
Copy pathMiscellaneousModelTest.php
File metadata and controls
123 lines (100 loc) · 3.65 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
<?php
/**
* This file is part of CodeIgniter 4 framework.
*
* (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 CodeIgniter\Models;
use CodeIgniter\Database\Exceptions\DataException;
use CodeIgniter\I18n\Time;
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;
/**
* @group DatabaseLive
*
* @internal
*/
final class MiscellaneousModelTest extends LiveModelTestCase
{
public function testChunk(): void
{
$rowCount = 0;
$this->createModel(UserModel::class)->chunk(2, static function ($row) use (&$rowCount) {
$rowCount++;
});
$this->assertSame(4, $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' => 'foo@example.com',
'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 = $this->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 = $this->getPrivateMethodInvoker($this->model, 'transformDataToArray');
$method([], 'insert');
}
}