1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 |
5
|
|
|
* @copyright Aimeos (aimeos.org), 2017-2023 |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
|
9
|
|
|
namespace Aimeos\Controller\Frontend\Locale\Decorator; |
10
|
|
|
|
11
|
|
|
|
12
|
|
|
class BaseTest extends \PHPUnit\Framework\TestCase |
13
|
|
|
{ |
14
|
|
|
private $context; |
15
|
|
|
private $object; |
16
|
|
|
private $stub; |
17
|
|
|
|
18
|
|
|
|
19
|
|
|
protected function setUp() : void |
20
|
|
|
{ |
21
|
|
|
$this->context = \TestHelper::context(); |
22
|
|
|
|
23
|
|
|
$this->stub = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Standard::class ) |
24
|
|
|
->disableOriginalConstructor() |
25
|
|
|
->getMock(); |
26
|
|
|
|
27
|
|
|
$this->object = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ) |
28
|
|
|
->setConstructorArgs( [$this->stub, $this->context] ) |
29
|
|
|
->getMockForAbstractClass(); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
|
33
|
|
|
protected function tearDown() : void |
34
|
|
|
{ |
35
|
|
|
unset( $this->context, $this->object, $this->stub ); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
|
39
|
|
|
public function testCall() |
40
|
|
|
{ |
41
|
|
|
$stub = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Standard::class ) |
42
|
|
|
->disableOriginalConstructor() |
43
|
|
|
->onlyMethods( ['__call'] ) |
44
|
|
|
->getMock(); |
45
|
|
|
|
46
|
|
|
$object = $this->getMockBuilder( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ) |
47
|
|
|
->setConstructorArgs( [$stub, $this->context] ) |
48
|
|
|
->getMockForAbstractClass(); |
49
|
|
|
|
50
|
|
|
$stub->expects( $this->once() )->method( '__call' )->will( $this->returnValue( true ) ); |
51
|
|
|
|
52
|
|
|
$this->assertTrue( $object->invalid() ); |
53
|
|
|
} |
54
|
|
|
|
55
|
|
|
|
56
|
|
|
public function testCompare() |
57
|
|
|
{ |
58
|
|
|
$this->assertSame( $this->object, $this->object->compare( '==', 'locale.status', 1 ) ); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
|
62
|
|
|
public function testGet() |
63
|
|
|
{ |
64
|
|
|
$item = \Aimeos\MShop::create( $this->context, 'locale' )->create(); |
65
|
|
|
|
66
|
|
|
$this->stub->expects( $this->once() )->method( 'get' ) |
67
|
|
|
->will( $this->returnValue( $item ) ); |
68
|
|
|
|
69
|
|
|
$this->assertInstanceOf( \Aimeos\MShop\Locale\Item\Iface::class, $this->object->get( -1 ) ); |
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
|
73
|
|
|
public function testParse() |
74
|
|
|
{ |
75
|
|
|
$this->assertSame( $this->object, $this->object->parse( [] ) ); |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
|
79
|
|
|
public function testSearch() |
80
|
|
|
{ |
81
|
|
|
$item = \Aimeos\MShop::create( $this->context, 'locale' )->create(); |
82
|
|
|
|
83
|
|
|
$this->stub->expects( $this->once() )->method( 'search' ) |
84
|
|
|
->will( $this->returnValue( map( [$item] ) ) ); |
85
|
|
|
|
86
|
|
|
$this->assertEquals( [$item], $this->object->search()->toArray() ); |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
|
90
|
|
|
public function testSlice() |
91
|
|
|
{ |
92
|
|
|
$this->assertSame( $this->object, $this->object->slice( 0, 100 ) ); |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
|
96
|
|
|
public function testSort() |
97
|
|
|
{ |
98
|
|
|
$this->assertSame( $this->object, $this->object->sort( 'position' ) ); |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
|
102
|
|
|
public function testGetController() |
103
|
|
|
{ |
104
|
|
|
$this->assertSame( $this->stub, $this->access( 'getController' )->invokeArgs( $this->object, [] ) ); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
|
108
|
|
|
protected function access( $name ) |
109
|
|
|
{ |
110
|
|
|
$class = new \ReflectionClass( \Aimeos\Controller\Frontend\Locale\Decorator\Base::class ); |
111
|
|
|
$method = $class->getMethod( $name ); |
112
|
|
|
$method->setAccessible( true ); |
113
|
|
|
|
114
|
|
|
return $method; |
115
|
|
|
} |
116
|
|
|
} |
117
|
|
|
|