shlink/module/CLI/test-cli/Command/GenerateApiKeyTest.php

23 lines
596 B
PHP
Raw Normal View History

2022-02-13 14:20:02 +03:00
<?php
declare(strict_types=1);
namespace ShlinkioCliTest\Shlink\CLI\Command;
use PHPUnit\Framework\Attributes\Test;
2022-02-13 14:20:02 +03:00
use Shlinkio\Shlink\CLI\Command\Api\GenerateKeyCommand;
2023-05-15 10:43:05 +03:00
use Shlinkio\Shlink\CLI\Util\ExitCode;
2022-02-13 14:20:02 +03:00
use Shlinkio\Shlink\TestUtils\CliTest\CliTestCase;
class GenerateApiKeyTest extends CliTestCase
{
#[Test]
2022-02-13 14:20:02 +03:00
public function outputIsCorrect(): void
{
[$output, $exitCode] = $this->exec([GenerateKeyCommand::NAME]);
self::assertStringContainsString('[OK] Generated API key', $output);
2023-05-15 10:43:05 +03:00
self::assertEquals(ExitCode::EXIT_SUCCESS, $exitCode);
2022-02-13 14:20:02 +03:00
}
}