-
-
Notifications
You must be signed in to change notification settings - Fork 625
Expand file tree
/
Copy pathSetupCpViteTest.php
More file actions
257 lines (212 loc) · 6.92 KB
/
SetupCpViteTest.php
File metadata and controls
257 lines (212 loc) · 6.92 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
<?php
namespace Tests\Console\Commands;
use Illuminate\Support\Facades\Process;
use PHPUnit\Framework\Attributes\Test;
use Tests\Console\Commands\Concerns\CleansUpGeneratedPaths;
use Tests\TestCase;
class SetupCpViteTest extends TestCase
{
use CleansUpGeneratedPaths;
private $files;
public function setUp(): void
{
parent::setUp();
$this->files = app('files');
$this->makeNecessaryFiles();
Process::fake();
}
public function tearDown(): void
{
$this->cleanupPaths();
parent::tearDown();
}
#[Test]
public function it_installs_dependencies()
{
$this->files->put(base_path('package.json'), <<<'JSON'
{
"dependencies": {
"axios": "^1.4.0",
"tailwindcss": "^4.0.6"
},
"devDependencies": {
"postcss": "^8.4.24"
}
}
JSON);
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Installed dependencies');
Process::assertRan('npm install --ignore-scripts');
$this->assertStringContainsString(<<<'JSON'
"dependencies": {
"axios": "^1.4.0",
"tailwindcss": "^4.0.6",
"@statamic/cms": "file:./vendor/statamic/cms/resources/dist-package"
},
"devDependencies": {
"postcss": "^8.4.24",
"vite": "^8.0.0"
}
JSON, $this->files->get(base_path('package.json')));
}
#[Test]
public function it_does_not_override_existing_vite_or_statamic_cms_dependencies()
{
$this->files->put(base_path('package.json'), <<<'JSON'
{
"dependencies": {
"@statamic/cms": "file:./some/other/path"
},
"devDependencies": {
"vite": "^9.0.0"
}
}
JSON);
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Installed dependencies');
$this->assertStringContainsString(<<<'JSON'
"dependencies": {
"@statamic/cms": "file:./some/other/path"
},
"devDependencies": {
"vite": "^9.0.0"
}
JSON, $this->files->get(base_path('package.json')));
}
#[Test]
public function it_adds_scripts_to_package_json()
{
$this->files->put(base_path('package.json'), <<<'JSON'
{
"scripts": {
"build": "vite build",
"dev": "vite",
"watch": "vite"
}
}
JSON);
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Added cp:dev and cp:build scripts to package.json');
$this->assertStringContainsString(<<<'JSON'
"scripts": {
"build": "vite build",
"dev": "vite",
"watch": "vite",
"cp:dev": "vite --config vite-cp.config.js",
"cp:build": "vite build --config vite-cp.config.js"
}
JSON, $this->files->get(base_path('package.json')));
}
#[Test]
public function it_publishes_vite_config()
{
$this->assertFileDoesNotExist(base_path('vite-cp.config.js'));
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Published vite-cp.config.js');
$this->assertFileExists(base_path('vite-cp.config.js'));
}
#[Test]
public function it_publishes_stubs()
{
$this->assertFileDoesNotExist(resource_path('css/cp.css'));
$this->assertFileDoesNotExist(resource_path('js/cp.js'));
$this->assertFileDoesNotExist(resource_path('js/components/fieldtypes/ExampleFieldtype.vue'));
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Published stubs for Control Panel CSS & JavaScript.');
$this->assertFileExists(resource_path('css/cp.css'));
$this->assertFileExists(resource_path('js/cp.js'));
$this->assertFileExists(resource_path('js/components/fieldtypes/ExampleFieldtype.vue'));
}
#[Test]
public function it_only_publishes_necessary_stubs()
{
$this->assertFileDoesNotExist(resource_path('css/cp.css'));
$this->assertFileDoesNotExist(resource_path('js/cp.js'));
$this->assertFileDoesNotExist(resource_path('js/components/fieldtypes/ExampleFieldtype.vue'));
$this
->artisan('statamic:setup-cp-vite', ['--only-necessary' => true])
->expectsOutputToContain('Published stubs for Control Panel CSS & JavaScript.');
$this->assertFileExists(resource_path('css/cp.css'));
$this->assertFileExists(resource_path('js/cp.js'));
$this->assertFileDoesNotExist(resource_path('js/components/fieldtypes/ExampleFieldtype.vue'));
}
#[Test]
public function it_publishes_dev_build()
{
$this->assertDirectoryDoesNotExist(public_path('vendor/statamic/cp-dev'));
$this
->artisan('statamic:setup-cp-vite', ['--only-necessary' => true])
->expectsOutputToContain('Publishing [statamic-cp-dev] assets.');
$this->assertDirectoryExists(public_path('vendor/statamic/cp-dev'));
}
#[Test]
public function it_appends_vite_snippet_to_app_service_provider()
{
$this->assertStringNotContainsString("Statamic::vite('app', [", $this->files->get(app_path('Providers/AppServiceProvider.php')));
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Added Statamic::vite() snippet to AppServiceProvider.');
$this->assertStringContainsString(<<<'PHP'
public function boot(): void
{
Statamic::vite('app', [
'input' => [
'resources/js/cp.js',
'resources/css/cp.css',
],
'hotFile' => public_path('cp-hot'),
'buildDirectory' => 'vendor/app',
]);
//
}
PHP, $this->files->get(app_path('Providers/AppServiceProvider.php')));
}
#[Test]
public function it_shows_error_when_npm_install_fails_but_continues()
{
Process::fake([
'*' => Process::result(
output: '',
errorOutput: 'npm ERR! code ERESOLVE',
exitCode: 1,
),
]);
$this
->artisan('statamic:setup-cp-vite')
->expectsOutputToContain('Failed to install dependencies')
->expectsOutputToContain('npm ERR! code ERESOLVE')
->expectsOutputToContain('Added cp:dev and cp:build scripts to package.json');
}
private function makeNecessaryFiles(): void
{
$this->files->put(app_path('Providers/AppServiceProvider.php'), <<<'PHP'
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*/
public function register(): void
{
//
}
/**
* Bootstrap any application services.
*/
public function boot(): void
{
//
}
}
PHP);
$this->files->put(base_path('package.json'), json_encode([]));
$this->files->makeDirectory(__DIR__.'/../../../resources/dist-dev', 0755, true, true);
}
}