-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathGenerateKeyTest.php
More file actions
208 lines (171 loc) · 7.28 KB
/
GenerateKeyTest.php
File metadata and controls
208 lines (171 loc) · 7.28 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
<?php
declare(strict_types=1);
/**
* 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\Commands\Encryption;
use CodeIgniter\Config\Services;
use CodeIgniter\Superglobals;
use CodeIgniter\Test\CIUnitTestCase;
use CodeIgniter\Test\Filters\CITestStreamFilter;
use CodeIgniter\Test\StreamFilterTrait;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\Attributes\PreserveGlobalState;
use PHPUnit\Framework\Attributes\RunInSeparateProcess;
use PHPUnit\Framework\Attributes\WithoutErrorHandler;
/**
* @internal
*/
#[Group('SeparateProcess')]
final class GenerateKeyTest extends CIUnitTestCase
{
use StreamFilterTrait;
private string $envPath;
private string $backupEnvPath;
#[WithoutErrorHandler]
protected function setUp(): void
{
parent::setUp();
Services::injectMock('superglobals', new Superglobals());
$this->envPath = ROOTPATH . '.env';
$this->backupEnvPath = ROOTPATH . '.env.backup';
if (is_file($this->envPath)) {
rename($this->envPath, $this->backupEnvPath);
}
$this->resetEnvironment();
}
protected function tearDown(): void
{
if (is_file($this->envPath)) {
unlink($this->envPath);
}
if (is_file($this->backupEnvPath)) {
rename($this->backupEnvPath, $this->envPath);
}
$this->resetEnvironment();
}
/**
* Gets buffer contents then releases it.
*/
protected function getBuffer(): string
{
return $this->getStreamFilterBuffer();
}
protected function resetEnvironment(): void
{
putenv('encryption.key');
unset($_ENV['encryption.key']);
service('superglobals')->unsetServer('encryption.key');
}
public function testGenerateKeyShowsEncodedKey(): void
{
command('key:generate --show');
$this->assertStringContainsString('hex2bin:', $this->getBuffer());
command('key:generate --prefix base64 --show');
$this->assertStringContainsString('base64:', $this->getBuffer());
command('key:generate --prefix hex2bin --show');
$this->assertStringContainsString('hex2bin:', $this->getBuffer());
}
#[PreserveGlobalState(false)]
#[RunInSeparateProcess]
public function testGenerateKeyCreatesNewKey(): void
{
command('key:generate');
$this->assertStringContainsString('successfully set.', $this->getBuffer());
$this->assertStringContainsString(env('encryption.key'), (string) file_get_contents($this->envPath));
$this->assertStringContainsString('hex2bin:', (string) file_get_contents($this->envPath));
command('key:generate --prefix base64 --force');
$this->assertStringContainsString('successfully set.', $this->getBuffer());
$this->assertStringContainsString(env('encryption.key'), (string) file_get_contents($this->envPath));
$this->assertStringContainsString('base64:', (string) file_get_contents($this->envPath));
command('key:generate --prefix hex2bin --force');
$this->assertStringContainsString('successfully set.', $this->getBuffer());
$this->assertStringContainsString(env('encryption.key'), (string) file_get_contents($this->envPath));
$this->assertStringContainsString('hex2bin:', (string) file_get_contents($this->envPath));
}
public function testDefaultShippedEnvIsMissing(): void
{
rename(ROOTPATH . 'env', ROOTPATH . 'lostenv');
command('key:generate');
rename(ROOTPATH . 'lostenv', ROOTPATH . 'env');
$this->assertStringContainsString('Both default shipped', $this->getBuffer());
$this->assertStringContainsString('Error in setting', $this->getBuffer());
}
/**
* @see https://github.com/codeigniter4/CodeIgniter4/issues/6838
*/
public function testKeyGenerateWhenKeyIsMissingInDotEnvFile(): void
{
file_put_contents($this->envPath, '');
command('key:generate');
$this->assertStringContainsString('Application\'s new encryption key was successfully set.', $this->getBuffer());
$this->assertSame("\nencryption.key = " . env('encryption.key'), file_get_contents($this->envPath));
}
public function testKeyGenerateWhenNewHexKeyIsSubsequentlyCommentedOut(): void
{
command('key:generate');
$key = env('encryption.key', '');
file_put_contents($this->envPath, str_replace(
'encryption.key = ' . $key,
'# encryption.key = ' . $key,
file_get_contents($this->envPath),
$count,
));
$this->assertSame(1, $count, 'Failed commenting out the previously set application key.');
CITestStreamFilter::$buffer = '';
command('key:generate --force');
$this->assertStringContainsString('was successfully set.', $this->getBuffer());
$this->assertNotSame($key, env('encryption.key', $key), 'Failed replacing the commented out key.');
}
public function testKeyGenerateWhenNewBase64KeyIsSubsequentlyCommentedOut(): void
{
command('key:generate --prefix base64');
$key = env('encryption.key', '');
file_put_contents($this->envPath, str_replace(
'encryption.key = ' . $key,
'# encryption.key = ' . $key,
file_get_contents($this->envPath),
$count,
));
$this->assertSame(1, $count, 'Failed commenting out the previously set application key.');
CITestStreamFilter::$buffer = '';
command('key:generate --force');
$this->assertStringContainsString('was successfully set.', $this->getBuffer());
$this->assertNotSame($key, env('encryption.key', $key), 'Failed replacing the commented out key.');
}
public function testKeyGenerateReplacesExportPrefixedEncryptionKey(): void
{
$existingKey = 'hex2bin:' . str_repeat('a', 64);
file_put_contents($this->envPath, "export encryption.key = {$existingKey}\n");
command('key:generate --force');
$contents = (string) file_get_contents($this->envPath);
$this->assertMatchesRegularExpression(
'/^export encryption\.key = hex2bin:[a-f0-9]{64}$/m',
$contents,
'The `export` prefix should be preserved and the value rewritten.',
);
$this->assertStringNotContainsString($existingKey, $contents, 'The old key value should be replaced.');
}
public function testKeyGenerateNotFooledByCommentMentioningEncryptionKey(): void
{
$envContents = "# Note: encryption.key is set automatically by spark key:generate.\n";
file_put_contents($this->envPath, $envContents);
command('key:generate --force');
$contents = (string) file_get_contents($this->envPath);
$this->assertStringContainsString(
$envContents,
$contents,
'The doc comment must be left intact.',
);
$this->assertMatchesRegularExpression(
'/^encryption\.key = hex2bin:[a-f0-9]{64}$/m',
$contents,
'A real `encryption.key` setting must be appended even when a comment mentions the name.',
);
}
}