This repository was archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathInputFilterPluginManagerTest.php
235 lines (198 loc) · 7.77 KB
/
InputFilterPluginManagerTest.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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ZendTest\InputFilter;
use PHPUnit\Framework\TestCase;
use PHPUnit_Framework_MockObject_MockObject as MockObject;
use Zend\Filter\FilterPluginManager;
use Zend\InputFilter\CollectionInputFilter;
use Zend\InputFilter\Exception\RuntimeException;
use Zend\InputFilter\InputFilter;
use Zend\InputFilter\InputFilterInterface;
use Zend\InputFilter\InputFilterPluginManager;
use Zend\InputFilter\InputInterface;
use Zend\ServiceManager\AbstractPluginManager;
use Zend\ServiceManager\Exception\InvalidServiceException;
use Zend\ServiceManager\ServiceLocatorInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\Stdlib\InitializableInterface;
use Zend\Validator\ValidatorPluginManager;
/**
* @covers \Zend\InputFilter\InputFilterPluginManager
*/
class InputFilterPluginManagerTest extends TestCase
{
/**
* @var InputFilterPluginManager
*/
protected $manager;
/**
* @var ServiceManager
*/
protected $services;
protected function setUp()
{
$this->services = new ServiceManager();
$this->manager = new InputFilterPluginManager($this->services);
}
public function testIsASubclassOfAbstractPluginManager()
{
$this->assertInstanceOf(AbstractPluginManager::class, $this->manager);
}
public function testIsNotSharedByDefault()
{
$property = method_exists($this->manager, 'configure')
? 'sharedByDefault' // v3
: 'shareByDefault'; // v2
$this->assertAttributeSame(false, $property, $this->manager);
}
public function testRegisteringInvalidElementRaisesException()
{
$this->expectException($this->getServiceNotFoundException());
$this->expectExceptionMessage(
'must implement Zend\InputFilter\InputFilterInterface or Zend\InputFilter\InputInterface'
);
$this->manager->setService('test', $this);
}
public function testLoadingInvalidElementRaisesException()
{
$this->manager->setInvokableClass('test', get_class($this));
$this->expectException($this->getServiceNotFoundException());
$this->manager->get('test');
}
public function defaultInvokableClassesProvider()
{
return [
// Description => [$alias, $expectedInstance]
'inputfilter' => ['inputfilter', InputFilter::class],
'collection' => ['collection', CollectionInputFilter::class],
];
}
/**
* @dataProvider defaultInvokableClassesProvider
*/
public function testDefaultInvokableClasses($alias, $expectedInstance)
{
$service = $this->manager->get($alias);
$this->assertInstanceOf($expectedInstance, $service, 'get() return type not match');
}
public function testInputFilterInvokableClassSMDependenciesArePopulatedWithoutServiceLocator()
{
/** @var InputFilter $service */
$service = $this->manager->get('inputfilter');
$factory = $service->getFactory();
$this->assertSame(
$this->manager,
$factory->getInputFilterManager(),
'Factory::getInputFilterManager() is not populated with the expected plugin manager'
);
}
public function testInputFilterInvokableClassSMDependenciesArePopulatedWithServiceLocator()
{
$filterManager = $this->getMockBuilder(FilterPluginManager::class)
->disableOriginalConstructor()
->getMock();
$validatorManager = $this->getMockBuilder(ValidatorPluginManager::class)
->disableOriginalConstructor()
->getMock();
$this->services->setService('FilterManager', $filterManager);
$this->services->setService('ValidatorManager', $validatorManager);
/** @var InputFilter $service */
$service = $this->manager->get('inputfilter');
$factory = $service->getFactory();
$this->assertSame(
$this->manager,
$factory->getInputFilterManager(),
'Factory::getInputFilterManager() is not populated with the expected plugin manager'
);
$defaultFilterChain = $factory->getDefaultFilterChain();
$this->assertSame(
$filterManager,
$defaultFilterChain->getPluginManager(),
'Factory::getDefaultFilterChain() is not populated with the expected plugin manager'
);
$defaultValidatorChain = $factory->getDefaultValidatorChain();
$this->assertSame(
$validatorManager,
$defaultValidatorChain->getPluginManager(),
'Factory::getDefaultValidatorChain() is not populated with the expected plugin manager'
);
}
public function serviceProvider()
{
$inputFilterInterfaceMock = $this->createInputFilterInterfaceMock();
$inputInterfaceMock = $this->createInputInterfaceMock();
// @codingStandardsIgnoreStart
return [
// Description => [$serviceName, $service, $instanceOf]
'InputFilterInterface' => ['inputFilterInterfaceService', $inputFilterInterfaceMock, InputFilterInterface::class],
'InputInterface' => ['inputInterfaceService', $inputInterfaceMock, InputInterface::class],
];
// @codingStandardsIgnoreEnd
}
/**
* @dataProvider serviceProvider
*/
public function testGet($serviceName, $service)
{
$this->manager->setService($serviceName, $service);
$this->assertSame($service, $this->manager->get($serviceName), 'get() value not match');
}
/**
* @dataProvider serviceProvider
*/
public function testServicesAreInitiatedIfImplementsInitializableInterface($serviceName, $service, $instanceOf)
{
$initializableProphecy = $this->prophesize($instanceOf)->willImplement(InitializableInterface::class);
$service = $initializableProphecy->reveal();
$this->manager->setService($serviceName, $service);
$this->assertSame($service, $this->manager->get($serviceName), 'get() value not match');
/** @noinspection PhpUndefinedMethodInspection */
$initializableProphecy->init()->shouldBeCalled();
}
public function testPopulateFactoryCanAcceptInputFilterAsFirstArgumentAndWillUseFactoryWhenItDoes()
{
$inputFilter = new InputFilter();
$this->manager->populateFactory($inputFilter);
$this->assertSame($this->manager, $inputFilter->getFactory()->getInputFilterManager());
}
/**
* @return MockObject|InputFilterInterface
*/
protected function createInputFilterInterfaceMock()
{
/** @var InputFilterInterface|MockObject $inputFilter */
$inputFilter = $this->createMock(InputFilterInterface::class);
return $inputFilter;
}
/**
* @return MockObject|InputInterface
*/
protected function createInputInterfaceMock()
{
/** @var InputInterface|MockObject $input */
$input = $this->createMock(InputInterface::class);
return $input;
}
/**
* @return MockObject|ServiceLocatorInterface
*/
protected function createServiceLocatorInterfaceMock()
{
/** @var ServiceLocatorInterface|MockObject $serviceLocator */
$serviceLocator = $this->createMock(ServiceLocatorInterface::class);
return $serviceLocator;
}
protected function getServiceNotFoundException()
{
if (method_exists($this->manager, 'configure')) {
return InvalidServiceException::class;
}
return RuntimeException::class;
}
}