* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Test\Question; use Composer\Question\StrictConfirmationQuestion; use Composer\Test\TestCase; use Symfony\Component\Console\Helper\QuestionHelper; use Symfony\Component\Console\Input\ArrayInput; use Symfony\Component\Console\Output\StreamOutput; /** * based on Symfony\Component\Console\Tests\Helper\QuestionHelperTest * * @author Theo Tonge */ class StrictConfirmationQuestionTest extends TestCase { /** * @return string[][] * * @phpstan-return list */ public function getAskConfirmationBadData() { return array( array('not correct'), array('no more'), array('yes please'), array('yellow'), ); } /** * @dataProvider getAskConfirmationBadData * * @param string $answer */ public function testAskConfirmationBadAnswer($answer): void { list($input, $dialog) = $this->createInput($answer."\n"); self::expectException('InvalidArgumentException'); self::expectExceptionMessage('Please answer yes, y, no, or n.'); $question = new StrictConfirmationQuestion('Do you like French fries?'); $question->setMaxAttempts(1); $dialog->ask($input, $this->createOutputInterface(), $question); } /** * @dataProvider getAskConfirmationData * * @param string $question * @param bool $expected * @param bool $default */ public function testAskConfirmation($question, $expected, $default = true): void { list($input, $dialog) = $this->createInput($question."\n"); $question = new StrictConfirmationQuestion('Do you like French fries?', $default); $this->assertEquals($expected, $dialog->ask($input, $this->createOutputInterface(), $question), 'confirmation question should '.($expected ? 'pass' : 'cancel')); } /** * @return mixed[][] * * @phpstan-return list|list */ public function getAskConfirmationData() { return array( array('', true), array('', false, false), array('y', true), array('yes', true), array('n', false), array('no', false), ); } public function testAskConfirmationWithCustomTrueAndFalseAnswer(): void { $question = new StrictConfirmationQuestion('Do you like French fries?', false, '/^ja$/i', '/^nein$/i'); list($input, $dialog) = $this->createInput("ja\n"); $this->assertTrue($dialog->ask($input, $this->createOutputInterface(), $question)); list($input, $dialog) = $this->createInput("nein\n"); $this->assertFalse($dialog->ask($input, $this->createOutputInterface(), $question)); } /** * @param string $input * * @return resource */ protected function getInputStream($input) { $stream = fopen('php://memory', 'r+', false); $this->assertNotFalse($stream); fwrite($stream, $input); rewind($stream); return $stream; } /** * @return StreamOutput */ protected function createOutputInterface() { return new StreamOutput(fopen('php://memory', 'r+', false)); } /** * @param string $entry * * @return object[] * * @phpstan-return array{ArrayInput, QuestionHelper} */ protected function createInput($entry) { $input = new ArrayInput(array('--no-interaction')); $input->setStream($this->getInputStream($entry)); $dialog = new QuestionHelper(); return array($input, $dialog); } }