-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInputTest.php
More file actions
126 lines (101 loc) · 3.58 KB
/
Copy pathInputTest.php
File metadata and controls
126 lines (101 loc) · 3.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?php
declare(strict_types=1);
namespace DotTest\Maker\IO;
use Dot\Maker\IO\Input;
use Dot\Maker\IO\Output;
use PHPUnit\Framework\TestCase;
use function fclose;
use function fopen;
use function fwrite;
use function rewind;
use function stream_get_contents;
use function stream_get_meta_data;
use const PHP_EOL;
class InputTest extends TestCase
{
public function testWillModifyInputStream(): void
{
$oldStream = Input::getStream();
$this->assertIsResource($oldStream);
$oldMetadata = stream_get_meta_data($oldStream);
$this->assertSame('STDIO', $oldMetadata['stream_type']);
$this->assertSame('php://stdin', $oldMetadata['uri']);
Input::setStream(fopen('php://memory', 'w+'));
$newStream = Input::getStream();
$this->assertIsResource($oldStream);
$newMetadata = stream_get_meta_data($newStream);
$this->assertSame('MEMORY', $newMetadata['stream_type']);
$this->assertSame('php://memory', $newMetadata['uri']);
$this->assertNotSame($oldStream, $newStream);
fclose($oldStream);
fclose($newStream);
}
public function testPromptWillOutputMessageAndReadInput(): void
{
$outputStream = fopen('php://memory', 'w+');
Output::setOutputStream($outputStream);
$inputStream = fopen('php://memory', 'w+');
fwrite($inputStream, 'Test' . PHP_EOL);
rewind($inputStream);
Input::setStream($inputStream);
$message = Input::prompt('Message: ');
rewind($outputStream);
$this->assertSame('Test', $message);
$this->assertSame(PHP_EOL . 'Message: ', stream_get_contents($outputStream));
fclose($inputStream);
fclose($outputStream);
}
/**
* @testWith [""]
* ["y"]
* ["yes"]
* ["Y"]
* ["Yes"]
*/
public function testConfirmWillOutputMessageAndReadPositiveAnswer(string $input): void
{
$outputStream = fopen('php://memory', 'w+');
Output::setOutputStream($outputStream);
$inputStream = fopen('php://memory', 'w+');
fwrite($inputStream, $input . PHP_EOL);
rewind($inputStream);
Input::setStream($inputStream);
$confirmation = Input::confirm('Confirm?');
rewind($outputStream);
$this->assertTrue($confirmation);
$this->assertSame(PHP_EOL . 'Confirm? [Y(es)/n(o)]: ', stream_get_contents($outputStream));
fclose($inputStream);
fclose($outputStream);
}
/**
* @testWith [""]
* ["n"]
* ["no"]
* ["N"]
* ["No"]
*/
public function testConfirmWillOutputMessageAndReadNegativeAnswer(string $input): void
{
$outputStream = fopen('php://memory', 'w+');
Output::setOutputStream($outputStream);
$inputStream = fopen('php://memory', 'w+');
fwrite($inputStream, $input . PHP_EOL);
rewind($inputStream);
Input::setStream($inputStream);
$confirmation = Input::confirm('Confirm?', 'no');
rewind($outputStream);
$this->assertFalse($confirmation);
$this->assertSame(PHP_EOL . 'Confirm? [y(es)/N(o)]: ', stream_get_contents($outputStream));
fclose($inputStream);
fclose($outputStream);
}
public function testWillAlwaysGetInputStream(): void
{
Input::setStream(fopen('php://memory', 'w+'));
$stream = Input::getStream();
$this->assertIsResource($stream);
fclose($stream);
$stream = Input::getStream();
$this->assertIsResource($stream);
}
}