1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Pagerfanta\Tests\Adapter; |
4
|
|
|
|
5
|
|
|
use Pagerfanta\Adapter\ArrayAdapter; |
6
|
|
|
use Pagerfanta\Adapter\CallbackAdapter; |
7
|
|
|
use Pagerfanta\Adapter\ConcatenationAdapter; |
8
|
|
|
use Pagerfanta\Adapter\FixedAdapter; |
9
|
|
|
use Pagerfanta\Adapter\NullAdapter; |
10
|
|
|
use PHPUnit\Framework\TestCase; |
11
|
|
|
|
12
|
|
|
class ConcatenationAdapterTest extends TestCase |
13
|
|
|
{ |
14
|
|
|
public function testConstructor() |
15
|
|
|
{ |
16
|
|
|
new ConcatenationAdapter(array( |
17
|
|
|
new ArrayAdapter(array()), |
18
|
|
|
new NullAdapter(), |
19
|
|
|
new FixedAdapter(0, array()) |
20
|
|
|
)); |
21
|
|
|
|
22
|
|
|
$this->setExpectedException( |
|
|
|
|
23
|
|
|
'\Pagerfanta\Exception\InvalidArgumentException', |
24
|
|
|
'Argument $adapters[1] expected to be a \Pagerfanta\Adapter\AdapterInterface instance, a string given' |
25
|
|
|
); |
26
|
|
|
new ConcatenationAdapter(array( |
|
|
|
|
27
|
|
|
new ArrayAdapter(array()), |
28
|
|
|
'foo' |
29
|
|
|
)); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
public function testGetNbResults() |
33
|
|
|
{ |
34
|
|
|
$adapter = new ConcatenationAdapter(array( |
35
|
|
|
new ArrayAdapter(array('foo', 'bar', 'baz')) |
36
|
|
|
)); |
37
|
|
|
$this->assertEquals(3, $adapter->getNbResults()); |
38
|
|
|
|
39
|
|
|
$adapter = new ConcatenationAdapter(array( |
40
|
|
|
new ArrayAdapter(array_fill(0, 4, 'foo')), |
41
|
|
|
new ArrayAdapter(array_fill(0, 6, 'bar')), |
42
|
|
|
new ArrayAdapter(array('baq')) |
43
|
|
|
)); |
44
|
|
|
$this->assertEquals(11, $adapter->getNbResults()); |
45
|
|
|
|
46
|
|
|
$adapter = new ConcatenationAdapter(array()); |
47
|
|
|
$this->assertEquals(0, $adapter->getNbResults()); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function testGetResults() |
51
|
|
|
{ |
52
|
|
|
$adapter = new ConcatenationAdapter(array( |
53
|
|
|
new ArrayAdapter(array(1, 2, 3, 4, 5, 6)), |
54
|
|
|
new ArrayAdapter(array(7, 8, 9, 10, 11, 12, 13, 14)), |
55
|
|
|
new ArrayAdapter(array(15, 16, 17)) |
56
|
|
|
)); |
57
|
|
|
$this->assertEquals(array(8, 9, 10), $adapter->getSlice(7, 3)); |
58
|
|
|
$this->assertEquals(array(5, 6, 7, 8), $adapter->getSlice(4, 4)); |
59
|
|
|
$this->assertEquals(array(6, 7, 8, 9, 10, 11, 12, 13, 14, 15), $adapter->getSlice(5, 10)); |
60
|
|
|
$this->assertEquals(array(16, 17), $adapter->getSlice(15, 5)); |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
public function testWithTraversableAdapter() |
64
|
|
|
{ |
65
|
|
|
$adapter = new ConcatenationAdapter(array( |
66
|
|
|
new CallbackAdapter( |
67
|
|
|
function () { |
68
|
|
|
return 5; |
69
|
|
|
}, |
70
|
|
|
function ($offset, $length) { |
71
|
|
|
return new \ArrayIterator(array_slice(array(1, 2, 3, 4, 5), $offset, $length)); |
72
|
|
|
} |
73
|
|
|
), |
74
|
|
|
new CallbackAdapter( |
75
|
|
|
function () { |
76
|
|
|
return 3; |
77
|
|
|
}, |
78
|
|
|
function ($offset, $length) { |
79
|
|
|
return new \ArrayIterator(array_slice(array(6, 7, 8), $offset, $length)); |
80
|
|
|
} |
81
|
|
|
) |
82
|
|
|
)); |
83
|
|
|
$this->assertEquals(array(2, 3), $adapter->getSlice(1, 2)); |
84
|
|
|
$this->assertEquals(array(4, 5, 6), $adapter->getSlice(3, 3)); |
85
|
|
|
} |
86
|
|
|
} |
87
|
|
|
|
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.