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
|
<?php
namespace Illuminate\Tests\Integration\Console;
use Illuminate\Console\Command;
use Illuminate\Contracts\Console\Kernel;
use Orchestra\Testbench\TestCase;
use function Laravel\Prompts\text;
class PromptsValidationTest extends TestCase
{
protected function defineEnvironment($app)
{
$app[Kernel::class]->registerCommand(new DummyPromptsValidationCommand());
}
public function testValidationForPrompts()
{
$this
->artisan(DummyPromptsValidationCommand::class)
->expectsQuestion('Test', 'bar')
->expectsOutputToContain('error!');
}
}
class DummyPromptsValidationCommand extends Command
{
protected $signature = 'prompts-validation-test';
public function handle()
{
text('Test', validate: fn ($value) => $value == 'foo' ? '' : 'error!');
}
}
|