-
Notifications
You must be signed in to change notification settings - Fork 17
/
FtpAdapterTestCase.php
391 lines (326 loc) · 11.4 KB
/
FtpAdapterTestCase.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<?php
declare(strict_types=1);
namespace League\Flysystem\Ftp;
use Generator;
use League\Flysystem\AdapterTestUtilities\FilesystemAdapterTestCase;
use League\Flysystem\Config;
use League\Flysystem\FileAttributes;
use League\Flysystem\StorageAttributes;
use League\Flysystem\UnableToCopyFile;
use League\Flysystem\UnableToDeleteDirectory;
use League\Flysystem\UnableToDeleteFile;
use League\Flysystem\UnableToMoveFile;
use League\Flysystem\UnableToRetrieveMetadata;
use League\Flysystem\UnableToWriteFile;
use League\Flysystem\Visibility;
use function iterator_to_array;
/**
* @group ftp
*
* @codeCoverageIgnore
*/
abstract class FtpAdapterTestCase extends FilesystemAdapterTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->retryOnException(UnableToConnectToFtpHost::class);
}
protected static ConnectivityCheckerThatCanFail $connectivityChecker;
protected static ?StubConnectionProvider $connectionProvider;
/**
* @after
*/
public function resetFunctionMocks(): void
{
reset_function_mocks();
}
public static function clearFilesystemAdapterCache(): void
{
parent::clearFilesystemAdapterCache();
static::$connectionProvider = null;
}
/**
* @test
*/
public function using_empty_string_for_root(): void
{
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'root' => '',
'username' => 'foo',
'password' => 'pass',
]);
$this->runScenario(function () use ($options) {
$adapter = new FtpAdapter($options);
$adapter->write('dirname1/dirname2/path.txt', 'contents', new Config());
$adapter->write('dirname1/dirname2/path.txt', 'contents', new Config());
$this->assertTrue($adapter->fileExists('dirname1/dirname2/path.txt'));
$this->assertSame('contents', $adapter->read('dirname1/dirname2/path.txt'));
});
}
/**
* @test
*/
public function reconnecting_after_failure(): void
{
$this->runScenario(function () {
$adapter = $this->adapter();
static::$connectivityChecker->failNextCall();
$contents = iterator_to_array($adapter->listContents('', false));
$this->assertIsArray($contents);
});
}
/**
* @test
*
* @see https://github.com/thephpleague/flysystem/issues/1522
*/
public function reading_a_file_twice_for_issue_1522(): void
{
$this->givenWeHaveAnExistingFile('some/nested/path.txt', 'this is it');
$this->runScenario(function () {
$adapter = $this->adapter();
self::assertEquals('this is it', $adapter->read('some/nested/path.txt'));
self::assertEquals('this is it', $adapter->read('some/nested/path.txt'));
self::assertEquals('this is it', $adapter->read('some/nested/path.txt'));
});
}
/**
* @test
*
* @dataProvider scenariosCausingWriteFailure
*/
public function failing_to_write_a_file(callable $scenario): void
{
$this->runScenario(function () use ($scenario) {
$scenario();
});
$this->expectException(UnableToWriteFile::class);
$this->runScenario(function () {
$this->adapter()->write('some/path.txt', 'contents', new Config([
Config::OPTION_VISIBILITY => Visibility::PUBLIC,
Config::OPTION_DIRECTORY_VISIBILITY => Visibility::PUBLIC
]));
});
}
public static function scenariosCausingWriteFailure(): Generator
{
yield "Not being able to create the parent directory" => [function () {
mock_function('ftp_mkdir', false);
}];
yield "Not being able to set the parent directory visibility" => [function () {
mock_function('ftp_chmod', false);
}];
yield "Not being able to write the file" => [function () {
mock_function('ftp_fput', false);
}];
yield "Not being able to set the visibility" => [function () {
mock_function('ftp_chmod', true, false);
}];
}
/**
* @test
*
* @dataProvider scenariosCausingDirectoryDeleteFailure
*/
public function scenarios_causing_directory_deletion_to_fail(callable $scenario): void
{
$this->runScenario($scenario);
$this->givenWeHaveAnExistingFile('some/nested/path.txt');
$this->expectException(UnableToDeleteDirectory::class);
$this->runScenario(function () {
$this->adapter()->deleteDirectory('some');
});
}
public static function scenariosCausingDirectoryDeleteFailure(): Generator
{
yield "ftp_delete failure" => [function () {
mock_function('ftp_delete', false);
}];
yield "ftp_rmdir failure" => [function () {
mock_function('ftp_rmdir', false);
}];
}
/**
* @test
*
* @dataProvider scenariosCausingCopyFailure
*/
public function failing_to_copy(callable $scenario): void
{
$this->givenWeHaveAnExistingFile('path.txt');
$scenario();
$this->expectException(UnableToCopyFile::class);
$this->runScenario(function () {
$this->adapter()->copy('path.txt', 'new/path.txt', new Config());
});
}
/**
* @test
*/
public function failing_to_move_because_creating_the_directory_fails(): void
{
$this->givenWeHaveAnExistingFile('path.txt');
mock_function('ftp_mkdir', false);
$this->expectException(UnableToMoveFile::class);
$this->runScenario(function () {
$this->adapter()->move('path.txt', 'new/path.txt', new Config());
});
}
public static function scenariosCausingCopyFailure(): Generator
{
yield "failing to read" => [function () {
mock_function('ftp_fget', false);
}];
yield "failing to write" => [function () {
mock_function('ftp_fput', false);
}];
}
/**
* @test
*/
public function failing_to_delete_a_file(): void
{
$this->givenWeHaveAnExistingFile('path.txt', 'contents');
mock_function('ftp_delete', false);
$this->expectException(UnableToDeleteFile::class);
$this->runScenario(function () {
$this->adapter()->delete('path.txt');
});
}
/**
* @test
*/
public function formatting_a_directory_listing_with_a_total_indicator(): void
{
$response = [
'total 1',
'-rw-r--r-- 1 ftp ftp 409 Aug 19 09:01 file1.txt',
];
mock_function('ftp_rawlist', $response);
$this->runScenario(function () {
$adapter = $this->adapter();
$contents = iterator_to_array($adapter->listContents('/', false), false);
$this->assertCount(1, $contents);
$this->assertContainsOnlyInstancesOf(FileAttributes::class, $contents);
});
}
/**
* @test
*
* @runInSeparateProcess
*/
public function receiving_a_windows_listing(): void
{
$response = [
'2015-05-23 12:09 <DIR> dir1',
'05-23-15 12:09PM 684 file2.txt',
];
mock_function('ftp_rawlist', $response);
$this->runScenario(function () {
$adapter = $this->adapter();
$contents = iterator_to_array($adapter->listContents('/', false), false);
$this->assertCount(2, $contents);
$this->assertContainsOnlyInstancesOf(StorageAttributes::class, $contents);
});
}
/**
* @test
*/
public function receiving_an_invalid_windows_listing(): void
{
$response = [
'05-23-15 12:09PM file2.txt',
];
mock_function('ftp_rawlist', $response);
$this->expectException(InvalidListResponseReceived::class);
$this->runScenario(function () {
$adapter = $this->adapter();
iterator_to_array($adapter->listContents('/', false), false);
});
}
/**
* @test
*/
public function getting_an_invalid_listing_response_for_unix_listings(): void
{
$response = [
'total 1',
'-rw-r--r-- 1 ftp 409 Aug 19 09:01 file1.txt',
];
mock_function('ftp_rawlist', $response);
$this->expectException(InvalidListResponseReceived::class);
$this->runScenario(function () {
$adapter = $this->adapter();
iterator_to_array($adapter->listContents('/', false), false);
});
}
/**
* @test
*/
public function failing_to_get_the_file_size_of_a_directory(): void
{
$adapter = $this->adapter();
$this->runScenario(function () use ($adapter) {
$adapter->createDirectory('directory_name', new Config());
});
$this->expectException(UnableToRetrieveMetadata::class);
$this->runScenario(function () use ($adapter) {
$adapter->fileSize('directory_name');
});
}
/**
* @test
*/
public function formatting_non_manual_recursive_listings(): void
{
$response = [
'drwxr-xr-x 4 ftp ftp 4096 Nov 24 13:58 .',
'drwxr-xr-x 16 ftp ftp 4096 Sep 2 13:01 ..',
'drwxr-xr-x 2 ftp ftp 4096 Oct 13 2012 cgi-bin',
'drwxr-xr-x 2 ftp ftp 4096 Nov 24 13:59 folder',
'-rw-r--r-- 1 ftp ftp 409 Oct 13 2012 index.html',
'',
'somewhere/cgi-bin:',
'drwxr-xr-x 2 ftp ftp 4096 Oct 13 2012 .',
'drwxr-xr-x 4 ftp ftp 4096 Nov 24 13:58 ..',
'',
'somewhere/folder:',
'drwxr-xr-x 2 ftp ftp 4096 Nov 24 13:59 .',
'drwxr-xr-x 4 ftp ftp 4096 Nov 24 13:58 ..',
'-rw-r--r-- 1 ftp ftp 0 Nov 24 13:59 dummy.txt',
];
mock_function('ftp_rawlist', $response);
$options = FtpConnectionOptions::fromArray([
'host' => 'localhost',
'port' => 2121,
'timestampsOnUnixListingsEnabled' => true,
'recurseManually' => false,
'root' => '/home/foo/upload/',
'username' => 'foo',
'password' => 'pass',
]);
$this->runScenario(function () use ($options) {
$adapter = new FtpAdapter($options);
$contents = iterator_to_array($adapter->listContents('somewhere', true), false);
$this->assertCount(4, $contents);
$this->assertContainsOnlyInstancesOf(StorageAttributes::class, $contents);
});
}
/**
* @test
*/
public function filenames_and_dirnames_with_spaces_are_supported(): void
{
$this->givenWeHaveAnExistingFile('some dirname/file name.txt');
$this->runScenario(function () {
$adapter = $this->adapter();
$this->assertTrue($adapter->fileExists('some dirname/file name.txt'));
$contents = iterator_to_array($adapter->listContents('', true));
$this->assertCount(2, $contents);
$this->assertContainsOnlyInstancesOf(StorageAttributes::class, $contents);
});
}
}