generated from spawnia/php-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSVArrayTest.php
200 lines (185 loc) · 5.02 KB
/
CSVArrayTest.php
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<?php declare(strict_types=1);
namespace MLL\Utils\Tests;
use MLL\Utils\CSVArray;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
/** @phpstan-import-type CSVPrimitive from CSVArray */
final class CSVArrayTest extends TestCase
{
/** @return iterable<array{string, array<int, array<string, string>>}> */
public static function csvAndArrayStringValues(): iterable
{
yield [
"Spalte1;Spalte2\r\n"
. "Wert11;Wert21\r\n"
. "Wert12;Wert22\r\n",
[
1 => [
'Spalte1' => 'Wert11',
'Spalte2' => 'Wert21',
],
2 => [
'Spalte1' => 'Wert12',
'Spalte2' => 'Wert22',
],
],
];
yield [
"empty;int;float;bool;null\r\n"
. ";1;2.3;true;null\r\n",
[
1 => [
'empty' => '',
'int' => '1',
'float' => '2.3',
'bool' => 'true',
'null' => 'null',
],
],
];
}
/**
* @dataProvider csvAndArrayStringValues
*
* @param array<int, array<string, string>> $array
*/
#[DataProvider('csvAndArrayStringValues')]
public function testStringValues(string $csv, array $array): void
{
self::assertSame($array, CSVArray::toArray($csv));
self::assertSame($csv, CSVArray::toCSV($array));
}
public function testEscapesDelimiter(): void
{
self::assertSame(
"foo\r\n"
. "\"bar;baz\"\r\n",
CSVArray::toCSV(
[
1 => [
'foo' => 'bar;baz',
],
]
)
);
}
public function testUnixLike(): void
{
self::assertSame(
<<<CSV
foo,bar
1,2
CSV,
CSVArray::toCSV(
[
[
'foo' => 1,
'bar' => 2,
],
],
',',
"\n"
)
);
}
public function testPrimitives(): void
{
self::assertSame(
"empty;int;float;bool;null\r\n"
. ";1;2.3;1;\r\n",
CSVArray::toCSV(
[
1 => [
'empty' => '',
'int' => 1,
'float' => 2.3,
'bool' => true,
'null' => null,
],
],
),
);
}
public function testToArrayOptionalParameters(): void
{
self::assertSame(
[
1 => [
'foo' => 'bar,baz',
'bar' => 'ba\\',
],
],
CSVArray::toArray(
"foo,bar\r\n"
. "%bar,baz%,ba\\\r\n",
',',
'%',
'~'
)
);
}
public function testToArrayDefaultsMissingColumnsToEmptyStrings(): void
{
self::assertSame(
[
1 => [
'Spalte1' => 'Wert11',
'Spalte2' => 'Wert21',
],
2 => [
'Spalte1' => 'Wert12',
'Spalte2' => CSVArray::DEFAULT_EMPTY_VALUE,
],
3 => [
'Spalte1' => '',
'Spalte2' => '',
],
5 => [
'Spalte1' => 'Wert14',
'Spalte2' => 'Wert24',
],
],
CSVArray::toArray(
"Spalte1;Spalte2\r\n"
. "Wert11;Wert21\r\n"
. "Wert12\r\n"
. ";\r\n"
. "\r\n"
. 'Wert14;Wert24;Wert34'
. "\r\n"
)
);
}
public function testHandlesMultilineStrings(): void
{
$multilineCsv = <<<CSV
h1;h2\r
a1;"multi\r
line\r
content"\r
"more\r
multi";b2\r
CSV;
$multilineArray = [
1 => [
'h1' => 'a1',
'h2' => <<<STR
multi\r
line\r
content
STR,
],
2 => [
'h1' => <<<STR
more\r
multi
STR,
'h2' => 'b2',
],
];
self::assertSame($multilineCsv, CSVArray::toCSV($multilineArray));
self::markTestIncomplete('This does not work correctly yet');
// @phpstan-ignore-next-line https://github.com/phpstan/phpstan-phpunit/issues/52
self::assertSame($multilineArray, CSVArray::toArray($multilineCsv));
}
}