1
1
<?php
2
+
3
+ declare (strict_types=1 );
4
+
2
5
namespace Bcremer \LineReaderTests ;
3
6
4
7
use Bcremer \LineReader \LineReader ;
5
8
use PHPUnit \Framework \TestCase ;
6
9
7
10
class LineReaderTest extends TestCase
8
11
{
9
- private static $ maxLines ;
10
- private static $ testFile ;
12
+ private static int $ maxLines ;
13
+
14
+ private static string $ testFile ;
11
15
12
16
public static function setUpBeforeClass (): void
13
17
{
14
- self ::$ maxLines = (int )getenv ('TEST_MAX_LINES ' ) ?: 10000 ;
15
- self ::$ testFile = __DIR__ . '/testfile_ ' . self ::$ maxLines. '.txt ' ;
18
+ self ::$ maxLines = (int ) getenv ('TEST_MAX_LINES ' ) ?: 10000 ;
19
+ self ::$ testFile = __DIR__ . '/testfile_ ' . self ::$ maxLines . '.txt ' ;
16
20
17
21
if (is_file (self ::$ testFile )) {
18
22
return ;
19
23
}
20
24
21
25
$ fh = fopen (self ::$ testFile , 'w ' );
26
+ self ::assertIsResource ($ fh );
22
27
for ($ i = 1 ; $ i <= self ::$ maxLines ; $ i ++) {
23
28
fwrite ($ fh , "Line $ i \n" );
24
29
}
@@ -45,8 +50,6 @@ public function testReadsAllLines(): void
45
50
{
46
51
$ result = LineReader::readLines (self ::$ testFile );
47
52
48
- self ::assertInstanceOf (\Traversable::class, $ result );
49
-
50
53
$ firstLine = 1 ;
51
54
$ lastLine = self ::$ maxLines ;
52
55
$ lineCount = self ::$ maxLines ;
@@ -60,7 +63,7 @@ public function testReadsLinesByStartline(): void
60
63
61
64
$ firstLine = 51 ;
62
65
$ lastLine = self ::$ maxLines ;
63
- $ lineCount = self ::$ maxLines- 50 ;
66
+ $ lineCount = self ::$ maxLines - 50 ;
64
67
$ this ->assertLines ($ lineGenerator , $ firstLine , $ lastLine , $ lineCount );
65
68
}
66
69
@@ -90,15 +93,15 @@ public function testReadsLinesBackwardsWithOffsetAndLimit(): void
90
93
$ lineGenerator = LineReader::readLinesBackwards (self ::$ testFile );
91
94
$ lineGenerator = new \LimitIterator ($ lineGenerator , 10 , 50 );
92
95
93
- $ firstLine = self ::$ maxLines- 10 ;
94
- $ lastLine = self ::$ maxLines- 59 ;
96
+ $ firstLine = self ::$ maxLines - 10 ;
97
+ $ lastLine = self ::$ maxLines - 59 ;
95
98
$ lineCount = 50 ;
96
99
$ this ->assertLines ($ lineGenerator , $ firstLine , $ lastLine , $ lineCount );
97
100
}
98
101
99
102
public function testEmptyFile (): void
100
103
{
101
- $ testFile = __DIR__ . '/testfile_empty.txt ' ;
104
+ $ testFile = __DIR__ . '/testfile_empty.txt ' ;
102
105
$ content = '' ;
103
106
file_put_contents ($ testFile , $ content );
104
107
@@ -111,7 +114,7 @@ public function testEmptyFile(): void
111
114
112
115
public function testFileWithLeadingAndTrailingNewlines (): void
113
116
{
114
- $ testFile = __DIR__ . '/testfile_space.txt ' ;
117
+ $ testFile = __DIR__ . '/testfile_space.txt ' ;
115
118
116
119
$ content = <<<CONTENT
117
120
@@ -159,20 +162,20 @@ public function testFileWithLeadingAndTrailingNewlines(): void
159
162
/**
160
163
* Runs the generator and asserts on first, last and the total line count
161
164
*
162
- * @param \Traversable $generator
165
+ * @param \Traversable<string> $generator
163
166
*/
164
- private function assertLines (\Traversable $ generator , string $ firstLine , int $ lastLine , int $ lineCount ): void
167
+ private function assertLines (\Traversable $ generator , int $ firstLine , int $ lastLine , int $ lineCount ): void
165
168
{
166
169
$ count = 0 ;
167
170
$ line = '' ;
168
171
foreach ($ generator as $ line ) {
169
172
if ($ count === 0 ) {
170
- self ::assertSame (" Line $ firstLine" , $ line , 'Expect first line ' );
173
+ self ::assertSame (sprintf ( ' Line %s ' , $ firstLine) , $ line , 'Expect first line ' );
171
174
}
172
175
$ count ++;
173
176
}
174
177
175
- self ::assertSame (" Line $ lastLine" , $ line , 'Expect last line ' );
178
+ self ::assertSame (sprintf ( ' Line %s ' , $ lastLine) , $ line , 'Expect last line ' );
176
179
self ::assertSame ($ lineCount , $ count , 'Expect total line count ' );
177
180
}
178
181
}
0 commit comments