-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathFsConnectionFactoryConfigTest.php
125 lines (107 loc) · 3.26 KB
/
FsConnectionFactoryConfigTest.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
<?php
namespace Enqueue\Fs\Tests;
use Enqueue\Fs\FsConnectionFactory;
use Enqueue\Test\ClassExtensionTrait;
use PHPUnit\Framework\TestCase;
/**
* The class contains the factory tests dedicated to configuration.
*/
class FsConnectionFactoryConfigTest extends TestCase
{
use ClassExtensionTrait;
public function testThrowNeitherArrayStringNorNullGivenAsConfig()
{
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('The config must be either an array of options, a DSN string or null');
new FsConnectionFactory(new \stdClass());
}
public function testThrowIfSchemeIsNotAmqp()
{
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('The given DSN "http://example.com" is not supported. Must start with "file:');
new FsConnectionFactory('http://example.com');
}
public function testThrowIfDsnCouldNotBeParsed()
{
$this->expectException(\LogicException::class);
$this->expectExceptionMessage('Failed to parse DSN path ":@/". The path must start with "/"');
new FsConnectionFactory('file://:@/');
}
/**
* @dataProvider provideConfigs
*
* @param mixed $config
* @param mixed $expectedConfig
*/
public function testShouldParseConfigurationAsExpected($config, $expectedConfig)
{
$factory = new FsConnectionFactory($config);
$this->assertAttributeEquals($expectedConfig, 'config', $factory);
}
public static function provideConfigs()
{
yield [
null,
[
'path' => sys_get_temp_dir().'/enqueue',
'pre_fetch_count' => 1,
'chmod' => 0600,
'polling_interval' => 100,
],
];
yield [
'',
[
'path' => sys_get_temp_dir().'/enqueue',
'pre_fetch_count' => 1,
'chmod' => 0600,
'polling_interval' => 100,
],
];
yield [
[],
[
'path' => sys_get_temp_dir().'/enqueue',
'pre_fetch_count' => 1,
'chmod' => 0600,
'polling_interval' => 100,
],
];
yield [
'file:',
[
'path' => sys_get_temp_dir().'/enqueue',
'pre_fetch_count' => 1,
'chmod' => 0600,
'polling_interval' => 100,
],
];
yield [
'/foo/bar/baz',
[
'path' => '/foo/bar/baz',
'pre_fetch_count' => 1,
'chmod' => 0600,
'polling_interval' => 100,
],
];
yield [
'file:///foo/bar/baz',
[
'path' => '/foo/bar/baz',
'pre_fetch_count' => 1,
'chmod' => 0600,
'polling_interval' => 100,
],
];
yield [
'file:///foo/bar/baz?pre_fetch_count=100&chmod=0666',
[
'path' => '/foo/bar/baz',
'pre_fetch_count' => 100,
'chmod' => 0666,
'polling_interval' => 100,
],
];
}
}