-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathControllerCommandTest.php
More file actions
469 lines (408 loc) · 15.1 KB
/
ControllerCommandTest.php
File metadata and controls
469 lines (408 loc) · 15.1 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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 0.1.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Bake\Test\TestCase\Command;
use Bake\Command\ControllerCommand;
use Bake\Test\App\Model\Table\BakeArticlesTable;
use Bake\Test\TestCase\TestCase;
use Cake\Console\Arguments;
use Cake\Console\CommandInterface;
use Cake\Core\Plugin;
use PHPUnit\Framework\Attributes\DataProvider;
/**
* ControllerCommand Test
*/
class ControllerCommandTest extends TestCase
{
/**
* fixtures
*
* @var array<string>
*/
protected array $fixtures = [
'plugin.Bake.BakeArticles',
'plugin.Bake.BakeArticlesBakeTags',
'plugin.Bake.BakeComments',
'plugin.Bake.BakeTags',
'plugin.Bake.News',
'plugin.Bake.Users',
];
/**
* setUp method
*
* @return void
*/
public function setUp(): void
{
parent::setUp();
$this->_compareBasePath = Plugin::path('Bake') . 'tests' . DS . 'comparisons' . DS . 'Controller' . DS;
$this->setAppNamespace('Bake\Test\App');
$this->getTableLocator()->get('BakeArticles', [
'className' => BakeArticlesTable::class,
]);
}
/**
* tearDown method
*
* @return void
*/
public function tearDown(): void
{
parent::tearDown();
$this->getTableLocator()->clear();
$this->removePlugins(['ControllerTest', 'Company/Pastry', 'Authorization', 'BakeTest']);
}
/**
* test main listing available models.
*
* @return void
*/
public function testMainListAvailable()
{
$this->exec('bake controller');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertOutputContains('- BakeArticles');
$this->assertOutputContains('- BakeArticlesBakeTags');
$this->assertOutputContains('- BakeComments');
$this->assertOutputContains('- BakeTags');
}
/**
* test component generation
*
* @return void
*/
public function testGetComponents()
{
$command = new ControllerCommand();
$args = new Arguments([], [], []);
$result = $command->getComponents($args);
$this->assertSame([], $result);
$args = new Arguments([], ['components' => ' , Auth, , RequestHandler'], []);
$result = $command->getComponents($args);
$this->assertSame(['Auth', 'RequestHandler'], $result);
}
/**
* test component generation with auto-detect for core plugins
*
* @return void
*/
public function testGetComponentsInferredDefaults()
{
$this->_loadTestPlugin('Authorization');
$command = new ControllerCommand();
$args = new Arguments([], [], []);
$result = $command->getComponents($args);
$this->assertSame(['Authorization.Authorization'], $result);
$args = new Arguments([], ['components' => 'Flash, FormProtection'], []);
$result = $command->getComponents($args);
$this->assertSame(['Flash', 'FormProtection'], $result);
}
/**
* test helper generation
*
* @return void
*/
public function testGetHelpers()
{
$command = new ControllerCommand();
$args = new Arguments([], [], []);
$result = $command->getHelpers($args);
$this->assertSame([], $result);
$args = new Arguments([], ['helpers' => ' , Session , , Number'], []);
$result = $command->getHelpers($args);
$this->assertSame(['Session', 'Number'], $result);
}
/**
* test bake with various component name variants
*
* @return void
*/
public function testBakeComponents()
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec(
'bake controller --connection test --no-test --no-actions ' .
'--components "FormProtection, Flash, Company/TestBakeThree.Something, TestBake.Other, Apple, NonExistent" ' .
'BakeArticles',
);
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* test the bake method
*
* @return void
*/
public function testBakeActionsOption()
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec(
'bake controller --connection test --no-test ' .
'--helpers Html,Time --components FormProtection,Flash ' .
'--actions index BakeArticles',
);
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* test the bake method
*
* @return void
*/
public function testBakeNoActions()
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec(
'bake controller --connection test --no-test ' .
'--helpers Html,Time --components FormProtection,Flash --no-actions BakeArticles',
);
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* test bake with actions.
*
* @return void
*/
public function testBakeActions()
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec(
'bake controller --connection test --no-test ' .
'--helpers Html,Time --components "FormProtection, Flash" BakeArticles',
);
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* Test the integration with Authorization plugin
*/
public function testBakeActionsAuthorizationPlugin()
{
$this->_loadTestPlugin('Authorization');
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test BakeArticles');
$this->assertExitSuccess();
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* Test the integration with Authentication plugin
*/
public function testBakeActionsAuthenticationPlugin()
{
$this->_loadTestPlugin('Authentication');
$generatedFile = APP . 'Controller/UsersController.php';
$exists = file_exists($generatedFile);
if ($exists) {
rename($generatedFile, $generatedFile . '.tmp');
}
$this->exec('bake controller --connection test --no-test Users');
$this->assertExitSuccess();
$result = file_get_contents($generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
if ($exists) {
rename($generatedFile . '.tmp', $generatedFile);
}
}
/**
* test bake actions prefixed.
*
* @return void
*/
public function testBakePrefixed()
{
$this->generatedFile = APP . 'Controller/Admin/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test --prefix admin BakeArticles');
$this->assertFileContains('namespace Bake\Test\App\Controller\Admin;', $this->generatedFile);
$this->assertFileContains('use Bake\Test\App\Controller\AppController;', $this->generatedFile);
$this->assertFileContains('class BakeArticlesController extends', $this->generatedFile);
}
/**
* test bake actions with nested prefixes.
*
* @return void
*/
public function testBakePrefixNested()
{
$this->generatedFile = APP . 'Controller/Admin/Management/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test --prefix admin/management BakeArticles');
$this->assertFileContains('namespace Bake\Test\App\Controller\Admin\Management;', $this->generatedFile);
$this->assertFileContains('use Bake\Test\App\Controller\AppController;', $this->generatedFile);
$this->assertFileContains('class BakeArticlesController extends', $this->generatedFile);
}
/**
* test bake() with a -plugin param
*
* @return void
*/
public function testBakeWithPlugin()
{
$this->_loadTestPlugin('BakeTest');
$path = Plugin::path('BakeTest');
$this->generatedFile = $path . 'src/Controller/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test BakeTest.BakeArticles');
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* test that bakeActions is creating the correct controller Code. (Using sessions)
*
* @return void
*/
public function testBakeActionsContent()
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test BakeArticles');
$result = file_get_contents($this->generatedFile);
$this->assertSameAsFile(__FUNCTION__ . '.php', $result);
}
/**
* test baking a test
*
* @return void
*/
public function testBakeTest()
{
$this->generatedFiles = [
APP . 'Controller/BakeArticlesController.php',
ROOT . 'tests/TestCase/Controller/BakeArticlesControllerTest.php',
];
$this->exec('bake controller --connection test BakeArticles');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertFilesExist($this->generatedFiles);
$this->assertFileContains(
'class BakeArticlesControllerTest extends TestCase',
$this->generatedFiles[1],
);
$this->assertFileContains(
'use IntegrationTestTrait',
$this->generatedFiles[1],
);
}
/**
* test baking a test
*
* @return void
*/
public function testBakeTestDisabled()
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test BakeArticles');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertFileDoesNotExist(ROOT . 'tests/TestCase/Controller/BakeArticlesControllerTest.php');
$this->assertFileExists($this->generatedFile);
}
/**
* Test execute no args.
*
* @return void
*/
public function testMainNoArgs()
{
$this->exec('bake controller');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertOutputContains('Possible controllers based on your current database');
$this->assertOutputContains('- BakeArticles');
}
/**
* data provider for testMainWithControllerNameVariations
*
* @return void
*/
public static function nameVariations()
{
return [
['BakeArticles'], ['bake_articles'],
];
}
/**
* test that both plural and singular forms work for controller baking.
*
* @return void
*/
#[DataProvider('nameVariations')]
public function testMainWithControllerNameVariations($name)
{
$this->generatedFile = APP . 'Controller/BakeArticlesController.php';
$this->exec("bake controller --connection test --no-test {$name}");
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertFileExists($this->generatedFile);
$this->assertFileContains('BakeArticlesController extends AppController', $this->generatedFile);
}
/**
* test main with plugin.name
*
* @return void
*/
public function testMainWithPluginDot()
{
$this->_loadTestPlugin('Company/Pastry');
$path = Plugin::path('Company/Pastry');
$this->generatedFile = $path . 'src/Controller/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test Company/Pastry.BakeArticles');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertFileExists($this->generatedFile);
$this->assertFileContains('namespace Company\Pastry\Controller;', $this->generatedFile);
$this->assertFileContains('use Company\Pastry\Controller\AppController;', $this->generatedFile);
$this->assertFileContains('BakeArticlesController extends AppController', $this->generatedFile);
}
/**
* test main with plugin.name
*
* @return void
*/
public function testMainWithPluginOption()
{
$this->_loadTestPlugin('Company/Pastry');
$path = Plugin::path('Company/Pastry');
$this->generatedFile = $path . 'src/Controller/BakeArticlesController.php';
$this->exec('bake controller --connection test --no-test --plugin Company/Pastry bake_articles');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertFileExists($this->generatedFile);
$this->assertFileContains('namespace Company\Pastry\Controller;', $this->generatedFile);
$this->assertFileContains('use Company\Pastry\Controller\AppController;', $this->generatedFile);
$this->assertFileContains('BakeArticlesController extends AppController', $this->generatedFile);
}
/**
* Test baking controller for models where singular and plural are identical.
*
* This tests the fix for generating variable collisions like `$news` for both
* the entity and the paginated collection when the model name is both singular
* and plural (e.g., "news", "sheep", "fish").
*
* @return void
*/
public function testBakeControllerWithSingularPluralCollision(): void
{
$this->generatedFile = APP . 'Controller/NewsController.php';
if (file_exists($this->generatedFile)) {
unlink($this->generatedFile);
}
$this->exec('bake controller --connection test --no-test News');
$this->assertExitCode(CommandInterface::CODE_SUCCESS);
$this->assertFileExists($this->generatedFile);
$result = file_get_contents($this->generatedFile);
// In view/edit/add/delete actions, the entity should use 'newsEntity' to avoid collision
$this->assertStringContainsString('$newsEntity = $this->News->get(', $result);
// In index action, the paginated collection should still use 'news'
$this->assertStringContainsString('$news = $this->paginate(', $result);
$this->assertStringContainsString("compact('news')", $result);
}
}