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
|
<?php
namespace Illuminate\Tests\Console\View;
use Illuminate\Console\OutputStyle;
use Illuminate\Console\View\Components;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Question\ChoiceQuestion;
class ComponentsTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testAlert()
{
$output = new BufferedOutput();
with(new Components\Alert($output))->render('The application is in the [production] environment');
$this->assertStringContainsString(
'THE APPLICATION IS IN THE [PRODUCTION] ENVIRONMENT.',
$output->fetch()
);
}
public function testBulletList()
{
$output = new BufferedOutput();
with(new Components\BulletList($output))->render([
'ls -la',
'php artisan inspire',
]);
$output = $output->fetch();
$this->assertStringContainsString('⇂ ls -la', $output);
$this->assertStringContainsString('⇂ php artisan inspire', $output);
}
public function testError()
{
$output = new BufferedOutput();
with(new Components\Error($output))->render('The application is in the [production] environment');
$this->assertStringContainsString('ERROR The application is in the [production] environment.', $output->fetch());
}
public function testInfo()
{
$output = new BufferedOutput();
with(new Components\Info($output))->render('The application is in the [production] environment');
$this->assertStringContainsString('INFO The application is in the [production] environment.', $output->fetch());
}
public function testConfirm()
{
$output = m::mock(OutputStyle::class);
$output->shouldReceive('confirm')
->with('Question?', false)
->once()
->andReturnTrue();
$result = with(new Components\Confirm($output))->render('Question?');
$this->assertTrue($result);
$output->shouldReceive('confirm')
->with('Question?', true)
->once()
->andReturnTrue();
$result = with(new Components\Confirm($output))->render('Question?', true);
$this->assertTrue($result);
}
public function testChoice()
{
$output = m::mock(OutputStyle::class);
$output->shouldReceive('askQuestion')
->with(m::type(ChoiceQuestion::class))
->once()
->andReturn('a');
$result = with(new Components\Choice($output))->render('Question?', ['a', 'b']);
$this->assertSame('a', $result);
}
public function testTask()
{
$output = new BufferedOutput();
with(new Components\Task($output))->render('My task', fn () => true);
$result = $output->fetch();
$this->assertStringContainsString('My task', $result);
$this->assertStringContainsString('DONE', $result);
with(new Components\Task($output))->render('My task', fn () => false);
$result = $output->fetch();
$this->assertStringContainsString('My task', $result);
$this->assertStringContainsString('FAIL', $result);
}
public function testTwoColumnDetail()
{
$output = new BufferedOutput();
with(new Components\TwoColumnDetail($output))->render('First', 'Second');
$result = $output->fetch();
$this->assertStringContainsString('First', $result);
$this->assertStringContainsString('Second', $result);
}
public function testWarn()
{
$output = new BufferedOutput();
with(new Components\Warn($output))->render('The application is in the [production] environment');
$this->assertStringContainsString('WARN The application is in the [production] environment.', $output->fetch());
}
}
|