This repository was archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathAbstractConfigFactoryTest.php
146 lines (128 loc) · 4.21 KB
/
AbstractConfigFactoryTest.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
<?php
/**
* @see https://github.com/zendframework/zend-config for the canonical source repository
* @copyright Copyright (c) 2005-2017 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-config/blob/master/LICENSE.md New BSD License
*/
namespace ZendTest\Config;
use PHPUnit\Framework\TestCase;
use Zend\Config\AbstractConfigFactory;
use Zend\ServiceManager;
use Zend\ServiceManager\Config as SMConfig;
/**
* Class AbstractConfigFactoryTest
*/
class AbstractConfigFactoryTest extends TestCase
{
/**
* @var array
*/
protected $config;
/**
* @var ServiceManager
*/
protected $serviceManager;
/**
* @return void
*/
public function setUp()
{
$this->config = [
'MyModule' => [
'foo' => [
'bar'
]
],
'phly-blog' => [
'foo' => [
'bar'
]
]
];
$this->serviceManager = new ServiceManager\ServiceManager;
$smConfig = new SMConfig([
'abstract_factories' => [
AbstractConfigFactory::class,
],
'services' => [
'config' => $this->config,
],
]);
$smConfig->configureServiceManager($this->serviceManager);
}
/**
* @expectedException InvalidArgumentException
* @return void
*/
public function testInvalidPattern()
{
$factory = new AbstractConfigFactory();
$factory->addPattern(new \stdClass());
}
/**
* @expectedException InvalidArgumentException
* @return void
*/
public function testInvalidPatternIterator()
{
$factory = new AbstractConfigFactory();
$factory->addPatterns('invalid');
}
/**
* @return void
*/
public function testPatterns()
{
$factory = new AbstractConfigFactory();
$defaults = $factory->getPatterns();
// Tests that the accessor returns an array
$this->assertInternalType('array', $defaults);
$this->assertGreaterThan(0, count($defaults));
// Tests adding a single pattern
$this->assertSame($factory, $factory->addPattern('#foobarone#i'));
$this->assertCount(count($defaults) + 1, $factory->getPatterns());
// Tests adding multiple patterns at once
$patterns = $factory->getPatterns();
$this->assertSame($factory, $factory->addPatterns(['#foobartwo#i', '#foobarthree#i']));
$this->assertCount(count($patterns) + 2, $factory->getPatterns());
// Tests whether the latest added pattern is the first in stack
$patterns = $factory->getPatterns();
$this->assertSame('#foobarthree#i', $patterns[0]);
}
/**
* @return void
*/
public function testCanCreateService()
{
$factory = new AbstractConfigFactory();
$serviceLocator = $this->serviceManager;
$this->assertFalse($factory->canCreate($serviceLocator, 'MyModule\Fail'));
$this->assertTrue($factory->canCreate($serviceLocator, 'MyModule\Config'));
}
/**
* @depends testCanCreateService
* @return void
*/
public function testCreateService()
{
$serviceLocator = $this->serviceManager;
$this->assertInternalType('array', $serviceLocator->get('MyModule\Config'));
$this->assertInternalType('array', $serviceLocator->get('MyModule_Config'));
$this->assertInternalType('array', $serviceLocator->get('Config.MyModule'));
$this->assertInternalType('array', $serviceLocator->get('phly-blog.config'));
$this->assertInternalType('array', $serviceLocator->get('phly-blog-config'));
$this->assertInternalType('array', $serviceLocator->get('config-phly-blog'));
}
/**
* @depends testCreateService
*
* @group 7142
* @group 7144
*/
public function testCreateServiceWithRequestedConfigKey()
{
$serviceLocator = $this->serviceManager;
$this->assertSame($this->config['MyModule'], $serviceLocator->get('MyModule\Config'));
$this->assertSame($this->config['phly-blog'], $serviceLocator->get('phly-blog-config'));
}
}