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
|
<?php
namespace League\Csv;
use SplTempFileObject;
use ArrayIterator;
use PHPUnit_Framework_TestCase;
use DateTime;
date_default_timezone_set('UTC');
/**
* @group writer
*/
class WriterTest extends PHPUnit_Framework_TestCase
{
private $csv;
public function setUp()
{
$this->csv = new Writer(new SplTempFileObject);
}
public function testInsert()
{
$expected = [
['john', 'doe', 'john.doe@example.com'],
'john,doe,john.doe@example.com',
];
foreach ($expected as $row) {
$this->csv->insertOne($row);
}
foreach ($this->csv as $row) {
$this->assertSame(['john', 'doe', 'john.doe@example.com'], $row);
}
}
/**
* @expectedException InvalidArgumentException
*/
public function testFailedInsertWithWrongData()
{
$this->csv->insertOne(new DateTime);
}
/**
* @expectedException InvalidArgumentException
*/
public function testFailedInsertWithMultiDimensionArray()
{
$this->csv->insertOne(['john', new DateTime]);
}
public function testSave()
{
$multipleArray = [
['john', 'doe', 'john.doe@example.com'],
'jane,doe,jane.doe@example.com',
];
$this->csv->insertAll($multipleArray);
$this->csv->insertAll(new ArrayIterator($multipleArray));
foreach ($this->csv as $key => $row) {
$expected = ['jane', 'doe', 'jane.doe@example.com'];
if ($key%2 == 0) {
$expected = ['john', 'doe', 'john.doe@example.com'];
}
$this->assertSame($expected, $row);
}
}
/**
* @expectedException InvalidArgumentException
*/
public function testFailedSaveWithWrongType()
{
$this->csv->insertAll(new DateTime);
}
public function testGetReader()
{
$expected = [
['john', 'doe', 'john.doe@example.com'],
'john,doe,john.doe@example.com',
];
foreach ($expected as $row) {
$this->csv->insertOne($row);
}
$reader = $this->csv->getReader();
$this->assertSame(['john', 'doe', 'john.doe@example.com'], $reader->fetchOne(0));
}
}
|