-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathGenerateKeyTest.php
More file actions
167 lines (137 loc) · 5.7 KB
/
GenerateKeyTest.php
File metadata and controls
167 lines (137 loc) · 5.7 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
<?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;
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();
$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'], $_SERVER['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.');
}
}