1
0
Fork 0
composer/tests/Composer/Test/IO/NullIOTest.php

80 lines
1.8 KiB
PHP
Raw Normal View History

2012-03-09 18:30:37 +00:00
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Test\IO;
use Composer\IO\NullIO;
use Composer\Test\TestCase;
2012-03-09 18:30:37 +00:00
class NullIOTest extends TestCase
{
public function testIsInteractive(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
$this->assertFalse($io->isInteractive());
}
public function testhasAuthentication(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
$this->assertFalse($io->hasAuthentication('foo'));
2012-03-09 18:30:37 +00:00
}
public function testAskAndHideAnswer(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
$this->assertNull($io->askAndHideAnswer('foo'));
}
public function testgetAuthentications(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
$this->assertTrue(is_array($io->getAuthentications())); // @phpstan-ignore-line
$this->assertEmpty($io->getAuthentications());
$this->assertEquals(array('username' => null, 'password' => null), $io->getAuthentication('foo'));
2012-03-09 18:30:37 +00:00
}
public function testAsk(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
2012-03-10 08:53:03 +00:00
$this->assertEquals('foo', $io->ask('bar', 'foo'));
2012-03-09 18:30:37 +00:00
}
public function testAskConfirmation(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
$this->assertEquals(false, $io->askConfirmation('bar', false));
2012-03-09 18:30:37 +00:00
}
public function testAskAndValidate(): void
2012-03-09 18:30:37 +00:00
{
$io = new NullIO();
2022-02-21 12:42:28 +00:00
$this->assertEquals('foo', $io->askAndValidate('question', function ($x): bool {
2021-10-27 14:18:24 +00:00
return true;
}, null, 'foo'));
2012-03-09 18:30:37 +00:00
}
public function testSelect(): void
{
$io = new NullIO();
$this->assertEquals('1', $io->select('question', array('item1', 'item2'), '1', 2, 'foo', true));
}
2012-06-14 10:10:01 +00:00
}