forked from livewire/livewire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
squishy
executable file
·52 lines (37 loc) · 1.43 KB
/
squishy
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
#!/usr/bin/env php
<?php
require __DIR__.'/vendor/autoload.php';
use Symfony\Component\Console\Command\Command;
$application = new Symfony\Component\Console\Application();
$application->add(new class extends Command {
use \Illuminate\Console\Concerns\InteractsWithIO;
protected static $defaultName = 'make:dusk';
protected function configure()
{
$this->addArgument('name', \Symfony\Component\Console\Input\InputArgument::REQUIRED, 'Test folder name');
}
protected function execute($input, $output)
{
$this->input = $input;
$this->output = $output;
$name = $this->input->getArgument('name');
$testPath = __DIR__.'/tests/Browser';
$folderPath = $testPath.'/'.$name;
if (file_exists($folderPath)) throw new \Exception('Test folder already exists: '.$folderPath);
mkdir($folderPath);
file_put_contents(
$folderPath.'/Test.php',
str_replace('[name]', $name, file_get_contents(__DIR__.'/stubs/DuskTest.stub'))
);
file_put_contents(
$folderPath.'/Component.php',
str_replace('[name]', $name, file_get_contents(__DIR__.'/stubs/DuskComponent.stub'))
);
file_put_contents(
$folderPath.'/view.blade.php',
str_replace('[name]', $name, file_get_contents(__DIR__.'/stubs/DuskView.stub'))
);
return Command::SUCCESS;
}
});
$application->run();