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
|
<?php
namespace League\Csv\Test;
use League\Csv\Reader;
use League\Csv\Writer;
use lib\FilterReplace;
use SplFileObject;
use SplTempFileObject;
/**
* @group csv
*/
class StreamFilterTest extends AbstractTestCase
{
public function testInitStreamFilterWithWriterStream()
{
$filter = 'php://filter/write=string.rot13/resource='.__DIR__.'/foo.csv';
$csv = Reader::createFromPath($filter);
$this->assertTrue($csv->hasStreamFilter('string.rot13'));
$this->assertSame(STREAM_FILTER_WRITE, $csv->getStreamFilterMode());
}
public function testInitStreamFilterWithReaderStream()
{
$filter = 'php://filter/read=string.toupper/resource='.__DIR__.'/foo.csv';
$csv = Reader::createFromPath($filter);
$this->assertTrue($csv->hasStreamFilter('string.toupper'));
$this->assertSame(STREAM_FILTER_READ, $csv->getStreamFilterMode());
}
public function testInitStreamFilterWithBothStream()
{
$filter = 'php://filter/string.toupper/resource='.__DIR__.'/foo.csv';
$csv = Reader::createFromPath($filter);
$this->assertTrue($csv->hasStreamFilter('string.toupper'));
$this->assertSame(STREAM_FILTER_ALL, $csv->getStreamFilterMode());
}
/**
* @expectedException LogicException
*/
public function testInitStreamFilterWithSplFileObject()
{
Reader::createFromFileObject(new SplFileObject(__DIR__.'/foo.csv'))->getStreamFilterMode();
}
public function testappendStreamFilter()
{
$csv = Reader::createFromPath(__DIR__.'/foo.csv');
$csv->appendStreamFilter('string.toupper');
foreach ($csv->getIterator() as $row) {
$this->assertSame($row, ['JOHN', 'DOE', 'JOHN.DOE@EXAMPLE.COM']);
}
}
/**
* @expectedException LogicException
*/
public function testFailedprependStreamFilter()
{
$csv = Reader::createFromFileObject(new SplTempFileObject());
$this->assertFalse($csv->isActiveStreamFilter());
$csv->prependStreamFilter('string.toupper');
}
/**
* @expectedException LogicException
*/
public function testFailedapppendStreamFilter()
{
$csv = Writer::createFromFileObject(new SplTempFileObject());
$this->assertFalse($csv->isActiveStreamFilter());
$csv->appendStreamFilter('string.toupper');
}
/**
* @expectedException OutOfBoundsException
*/
public function testaddMultipleStreamFilter()
{
$csv = Reader::createFromPath(__DIR__.'/foo.csv');
$csv->appendStreamFilter('string.tolower');
$csv->prependStreamFilter('string.rot13');
$csv->appendStreamFilter('string.toupper');
$this->assertTrue($csv->hasStreamFilter('string.tolower'));
$csv->removeStreamFilter('string.tolower');
$this->assertFalse($csv->hasStreamFilter('string.tolower'));
foreach ($csv->getIterator() as $row) {
$this->assertSame($row, ['WBUA', 'QBR', 'WBUA.QBR@RKNZCYR.PBZ']);
}
$csv->clearStreamFilter();
$this->assertFalse($csv->hasStreamFilter('string.rot13'));
$csv->appendStreamFilter('string.toupper');
$this->assertSame(STREAM_FILTER_READ, $csv->getStreamFilterMode());
$csv->setStreamFilterMode(STREAM_FILTER_WRITE);
$this->assertSame(STREAM_FILTER_WRITE, $csv->getStreamFilterMode());
foreach ($csv->getIterator() as $row) {
$this->assertSame($row, ['john', 'doe', 'john.doe@example.com']);
}
$csv->setStreamFilterMode(34);
}
public function testGetFilterPath()
{
$csv = Writer::createFromPath(__DIR__.'/foo.csv');
$csv->appendStreamFilter('string.rot13');
$csv->prependStreamFilter('string.toupper');
$this->assertFalse($csv->getIterator()->getRealPath());
}
public function testGetFilterPathWithAllStream()
{
$filter = 'php://filter/string.toupper/resource='.__DIR__.'/foo.csv';
$csv = Reader::createFromPath($filter);
$this->assertFalse($csv->getIterator()->getRealPath());
}
public function testSetStreamFilterWriterNewLine()
{
stream_filter_register(FilterReplace::FILTER_NAME.'*', '\lib\FilterReplace');
$csv = Writer::createFromPath(__DIR__.'/newline.csv');
$csv->appendStreamFilter(FilterReplace::FILTER_NAME."\r\n:\n");
$this->assertTrue($csv->hasStreamFilter(FilterReplace::FILTER_NAME."\r\n:\n"));
$csv->insertOne([1, 'two', 3, "new\r\nline"]);
}
}
|