Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[10.x] Set prompt interactivity mode #48468

Merged
merged 9 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"egulias/email-validator": "^3.2.1|^4.0",
"fruitcake/php-cors": "^1.2",
"guzzlehttp/uri-template": "^1.0",
"laravel/prompts": "^0.1",
"laravel/prompts": "^0.1.9",
"laravel/serializable-closure": "^1.3",
"league/commonmark": "^2.2.1",
"league/flysystem": "^3.8.0",
Expand Down
4 changes: 3 additions & 1 deletion src/Illuminate/Console/Concerns/ConfiguresPrompts.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ protected function configurePrompts(InputInterface $input)
{
Prompt::setOutput($this->output);

Prompt::fallbackWhen(! $input->isInteractive() || windows_os() || $this->laravel->runningUnitTests());
Prompt::interactive(($input->isInteractive() && stream_isatty(STDIN)) || $this->laravel->runningUnitTests());

Prompt::fallbackWhen(windows_os() || $this->laravel->runningUnitTests());

TextPrompt::fallbackUsing(fn (TextPrompt $prompt) => $this->promptUntilValid(
fn () => $this->components->ask($prompt->label, $prompt->default ?: null) ?? '',
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Console/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"illuminate/collections": "^10.0",
"illuminate/contracts": "^10.0",
"illuminate/macroable": "^10.0",
"laravel/prompts": "^0.1",
"laravel/prompts": "^0.1.9",
"illuminate/support": "^10.0",
"illuminate/view": "^10.0",
"nunomaduro/termwind": "^1.13",
Expand Down
8 changes: 4 additions & 4 deletions tests/Console/CommandMutexTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

use Illuminate\Console\Command;
use Illuminate\Console\CommandMutex;
use Illuminate\Container\Container;
use Illuminate\Contracts\Console\Isolatable;
use Illuminate\Foundation\Application;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Input\ArrayInput;
Expand Down Expand Up @@ -37,9 +37,9 @@ public function __invoke()

$this->commandMutex = m::mock(CommandMutex::class);

$container = Container::getInstance();
$container->instance(CommandMutex::class, $this->commandMutex);
$this->command->setLaravel($container);
$app = new Application;
$app->instance(CommandMutex::class, $this->commandMutex);
$this->command->setLaravel($app);
}

public function testCanRunIsolatedCommandIfNotBlocked()
Expand Down
4 changes: 3 additions & 1 deletion tests/Console/ConsoleApplicationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,15 @@ public function testCallFullyStringCommandLine()
public function testCommandInputPromptsWhenRequiredArgumentIsMissing()
{
$app = new Application(
$app = new \Illuminate\Foundation\Application(__DIR__),
$laravel = new \Illuminate\Foundation\Application(__DIR__),
$events = m::mock(Dispatcher::class, ['dispatch' => null, 'fire' => null]),
'testing'
);

$app->addCommands([$command = new FakeCommandWithInputPrompting()]);

$command->setLaravel($laravel);

$statusCode = $app->call('fake-command-for-testing');

$this->assertTrue($command->prompted);
Expand Down
7 changes: 3 additions & 4 deletions tests/Console/Fixtures/FakeCommandWithInputPrompting.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,23 @@
use Laravel\Prompts\Prompt;
use Laravel\Prompts\TextPrompt;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class FakeCommandWithInputPrompting extends Command implements PromptsForMissingInput
{
protected $signature = 'fake-command-for-testing {name : An argument}';

public $prompted = false;

protected function interact(InputInterface $input, OutputInterface $output)
protected function configurePrompts(InputInterface $input)
{
Prompt::interactive(true);
Prompt::fallbackWhen(true);

TextPrompt::fallbackUsing(function () {
$this->prompted = true;

return 'foo';
});

parent::interact($input, $output);
}

public function handle(): int
Expand Down