| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?php
- declare(strict_types=1);
- /**
- * CakePHP : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP Project
- * @since 3.7.3
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Console;
- use Cake\Console\ConsoleInput;
- use Cake\Console\Exception\ConsoleException;
- use Cake\TestSuite\TestCase;
- use function Cake\Core\env;
- /**
- * ConsoleInput test.
- */
- class ConsoleInputTest extends TestCase
- {
- /**
- * @var \Cake\Console\ConsoleInput
- */
- protected $in;
- /**
- * setUp method
- */
- public function setUp(): void
- {
- parent::setUp();
- $this->in = new ConsoleInput();
- }
- /**
- * Test dataAvailable method
- */
- public function testDataAvailable(): void
- {
- $this->skipIf(
- (bool)env('GITHUB_ACTIONS'),
- 'Skip test for ConsoleInput::dataAvailable() on Github VM as stream_select() incorrectly return 1 even though no data is available on STDIN.'
- );
- try {
- $this->assertFalse($this->in->dataAvailable());
- } catch (ConsoleException) {
- $this->markTestSkipped(
- 'stream_select raised an exception. ' .
- 'This can happen when FD_SETSIZE is too small.'
- );
- }
- }
- }
|