forked from codeigniter4/shield
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserModelGeneratorTest.php
More file actions
142 lines (107 loc) · 4.97 KB
/
UserModelGeneratorTest.php
File metadata and controls
142 lines (107 loc) · 4.97 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
<?php
declare(strict_types=1);
namespace Tests\Commands;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Filters\CITestStreamFilter;
/**
* @internal
*/
final class UserModelGeneratorTest extends CIUnitTestCase
{
private $streamFilter;
protected function setUp(): void
{
parent::setUp();
CITestStreamFilter::$buffer = '';
$this->streamFilter = stream_filter_append(STDOUT, 'CITestStreamFilter');
$this->streamFilter = stream_filter_append(STDERR, 'CITestStreamFilter');
if (is_file(HOMEPATH . 'src/Models/UserModel.php')) {
copy(HOMEPATH . 'src/Models/UserModel.php', HOMEPATH . 'src/Models/UserModel.php.bak');
}
$this->deleteTestFiles();
}
protected function tearDown(): void
{
parent::tearDown();
stream_filter_remove($this->streamFilter);
$this->deleteTestFiles();
if (is_file(HOMEPATH . 'src/Models/UserModel.php.bak')) {
copy(HOMEPATH . 'src/Models/UserModel.php.bak', HOMEPATH . 'src/Models/UserModel.php');
unlink(HOMEPATH . 'src/Models/UserModel.php.bak');
}
}
private function deleteTestFiles(): void
{
$possibleFiles = [
APPPATH . 'Models/UserModel.php',
HOMEPATH . 'src/Models/UserModel.php',
];
foreach ($possibleFiles as $file) {
clearstatcache(true, $file);
if (is_file($file)) {
unlink($file);
}
}
}
private function getFileContents(string $filepath): string
{
return (string) @file_get_contents($filepath);
}
public function testGenerateUserModel(): void
{
command('shield:model UserModel');
$filepath = APPPATH . 'Models/UserModel.php';
$this->assertStringContainsString('File created: ', CITestStreamFilter::$buffer);
$this->assertFileExists($filepath);
$contents = $this->getFileContents($filepath);
$this->assertStringContainsString('namespace App\Models;', $contents);
$this->assertStringContainsString('class UserModel extends ShieldUserModel', $contents);
$this->assertStringContainsString('use CodeIgniter\Shield\Models\UserModel as ShieldUserModel;', $contents);
$this->assertStringContainsString('protected function initialize(): void', $contents);
}
public function testGenerateUserModelCustomNamespace(): void
{
command('shield:model UserModel --namespace CodeIgniter\\\\Shield');
$filepath = HOMEPATH . 'src/Models/UserModel.php';
$this->assertStringContainsString('File created: ', CITestStreamFilter::$buffer);
$this->assertFileExists($filepath);
$contents = $this->getFileContents($filepath);
$this->assertStringContainsString('namespace CodeIgniter\Shield\Models;', $contents);
$this->assertStringContainsString('class UserModel extends ShieldUserModel', $contents);
$this->assertStringContainsString('use CodeIgniter\Shield\Models\UserModel as ShieldUserModel;', $contents);
$this->assertStringContainsString('protected function initialize(): void', $contents);
}
public function testGenerateUserModelWithForce(): void
{
command('shield:model UserModel');
command('shield:model UserModel --force');
$this->assertStringContainsString('File overwritten: ', CITestStreamFilter::$buffer);
$this->assertFileExists(APPPATH . 'Models/UserModel.php');
}
public function testGenerateUserModelWithSuffix(): void
{
command('shield:model User --suffix');
$this->assertStringContainsString('File created: ', CITestStreamFilter::$buffer);
$filepath = APPPATH . 'Models/UserModel.php';
$this->assertFileExists($filepath);
$this->assertStringContainsString('class UserModel extends ShieldUserModel', $this->getFileContents($filepath));
}
public function testGenerateUserModelWithoutClassNameInput(): void
{
command('shield:model');
$this->assertStringContainsString('File created: ', CITestStreamFilter::$buffer);
$filepath = APPPATH . 'Models/UserModel.php';
$this->assertFileExists($filepath);
$this->assertStringContainsString('class UserModel extends ShieldUserModel', $this->getFileContents($filepath));
}
public function testGenerateUserCannotAcceptShieldUserModelAsInput(): void
{
command('shield:model ShieldUserModel');
$this->assertStringContainsString('Cannot use `ShieldUserModel` as class name as this conflicts with the parent class.', CITestStreamFilter::$buffer);
$this->assertFileDoesNotExist(APPPATH . 'Models/UserModel.php');
CITestStreamFilter::$buffer = '';
command('shield:model ShieldUser --suffix');
$this->assertStringContainsString('Cannot use `ShieldUserModel` as class name as this conflicts with the parent class.', CITestStreamFilter::$buffer);
$this->assertFileDoesNotExist(APPPATH . 'Models/UserModel.php');
}
}