-
Notifications
You must be signed in to change notification settings - Fork 17
/
FtpConnectionProviderTest.php
218 lines (182 loc) · 5.46 KB
/
FtpConnectionProviderTest.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
<?php
declare(strict_types=1);
namespace League\Flysystem\Ftp;
use League\Flysystem\AdapterTestUtilities\RetryOnTestException;
use PHPUnit\Framework\TestCase;
use function ftp_close;
/**
* @group ftp
*/
class FtpConnectionProviderTest extends TestCase
{
use RetryOnTestException;
/**
* @var FtpConnectionProvider
*/
private $connectionProvider;
protected function setUp(): void
{
$this->retryOnException(UnableToConnectToFtpHost::class);
}
/**
* @before
*/
public function setupConnectionProvider(): void
{
$this->connectionProvider = new FtpConnectionProvider();
}
/**
* @after
*/
public function resetFunctionMocks(): void
{
reset_function_mocks();
}
/**
* @test
*/
public function connecting_successfully(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'utf8' => true,
'passive' => true,
'ignorePassiveAddress' => true,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
$this->runScenario(function () use ($options) {
$connection = $this->connectionProvider->createConnection($options);
$this->assertTrue(ftp_close($connection));
});
}
/**
* @test
*/
public function not_being_able_to_enable_uft8_mode(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'utf8' => true,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
mock_function('ftp_raw', ['Error']);
$this->expectException(UnableToEnableUtf8Mode::class);
$this->runScenario(function () use ($options) {
$this->connectionProvider->createConnection($options);
});
}
/**
* @test
*/
public function uft8_mode_already_active_by_server(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'utf8' => true,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
mock_function('ftp_raw', ['202 UTF8 mode is always enabled. No need to send this command.']);
$this->expectNotToPerformAssertions();
$this->runScenario(function () use ($options) {
$this->connectionProvider->createConnection($options);
});
}
/**
* @test
*/
public function not_being_able_to_ignore_the_passive_address(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'ignorePassiveAddress' => true,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
mock_function('ftp_set_option', false);
$this->expectException(UnableToSetFtpOption::class);
$this->runScenario(function () use ($options) {
$this->connectionProvider->createConnection($options);
});
}
/**
* @test
*/
public function not_being_able_to_make_the_connection_passive(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'utf8' => true,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
mock_function('ftp_pasv', false);
$this->expectException(UnableToMakeConnectionPassive::class);
$this->runScenario(function () use ($options) {
$this->connectionProvider->createConnection($options);
});
}
/**
* @test
*/
public function not_being_able_to_connect(): void
{
$this->dontRetryOnException();
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 313131,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
$this->expectException(UnableToConnectToFtpHost::class);
$this->connectionProvider->createConnection($options);
}
/**
* @test
*/
public function not_being_able_to_connect_over_ssl(): void
{
$this->dontRetryOnException();
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'ssl' => true,
'port' => 313131,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'pass',
]);
$this->expectException(UnableToConnectToFtpHost::class);
$this->connectionProvider->createConnection($options);
}
/**
* @test
*/
public function not_being_able_to_authenticate(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'root' => '/home/foo/upload',
'username' => 'foo',
'password' => 'lolnope',
]);
$this->expectException(UnableToAuthenticate::class);
$this->retryOnException(UnableToConnectToFtpHost::class);
$this->runScenario(function () use ($options) {
$this->connectionProvider->createConnection($options);
});
}
}