Practice_PHPUnit test of STDIN
1.0.0
이것은 "STDIN"(표준 입력)에서 값을 받아 해당 값을 반환하는 아래 함수의 기능을 확인하기 위한 샘플 PHPUnit 테스트입니다.
function getContentsFromStdin ()
{
$ contents = file_get_contents ( ' php://stdin ' );
if ( $ contents === false ){
throw new RuntimeException ( ' Failed to read contents from STDIN. ' );
}
return $ contents ;
}
PHPUnit을 사용하여 STDIN
의 기능을 테스트하는 한 가지 방법은 php://
스트림을 래퍼로 재정의하고 STDIN
의 값을 바꾸는 모의를 만드는 것입니다.
final class FunctionGetContentsFromStdinTest extends PHPUnit Framework TestCase
{
public function testRegularInput ()
{
$ result_expect = ' World! ' ;
// Register stream wrapper "MockPhpStream" to "php://" protocol
$ existed = in_array ( ' php ' , stream_get_wrappers ());
if ( $ existed ) {
stream_wrapper_unregister ( " php " );
}
stream_wrapper_register ( " php " , '\ KEINOSTestsMockPhpStream ' );
// Set value to STDIN
file_put_contents ( ' php://stdin ' , $ result_expect );
// Get value from function and restore registration
$ result_actual = KEINOS Sample getContentsFromStdin ();
stream_wrapper_restore ( " php " );
// Test
$ this -> assertSame ( $ result_expect , $ result_actual );
}
}
PHP://
스트림을 모의하는 래퍼 스크립트입니다.
이 유용한 래퍼는 Denis가 자신의 블로그 게시물에서 만들었습니다.
실제 테스트를 보려면 이 저장소를 복제하고 테스트를 실행하세요.
$ composer install
...
$ composer test
> ./vendor/bin/phpunit --testdox --bootstrap ./vendor/autoload.php tests
PHPUnit 7.5.20 by Sebastian Bergmann and contributors.
GetContentsFromFunction
Regular input
Time: 76 ms, Memory: 4.00 MB
OK (1 test, 1 assertion)
$ docker build -t test:local .
...
$ docker run --rm test:local
> ./vendor/bin/phpunit --testdox --bootstrap ./vendor/autoload.php tests
PHPUnit 9.1.3 by Sebastian Bergmann and contributors.
Get Contents From Function
Regular input
Time: 00:00.030, Memory: 4.00 MB
OK (1 test, 1 assertion)