forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilesystemsTest.php
150 lines (124 loc) · 4.61 KB
/
FilesystemsTest.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
<?php
namespace MongoDB\Laravel\Tests;
use Generator;
use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Storage;
use InvalidArgumentException;
use League\Flysystem\UnableToWriteFile;
use MongoDB\GridFS\Bucket;
use PHPUnit\Framework\Attributes\DataProvider;
use stdClass;
use function env;
use function microtime;
use function stream_get_contents;
class FilesystemsTest extends TestCase
{
public function tearDown(): void
{
$this->getBucket()->drop();
parent::tearDown();
}
public static function provideValidOptions(): Generator
{
yield 'connection-minimal' => [
[
'driver' => 'gridfs',
'connection' => 'mongodb',
],
];
yield 'connection-full' => [
[
'driver' => 'gridfs',
'connection' => 'mongodb',
'database' => env('MONGODB_DATABASE', 'unittest'),
'bucket' => 'fs',
'prefix' => 'foo/',
],
];
yield 'bucket-service' => [
[
'driver' => 'gridfs',
'bucket' => 'bucket',
],
];
yield 'bucket-factory' => [
[
'driver' => 'gridfs',
'bucket' => static fn (Application $app) => $app['db']
->connection('mongodb')
->getMongoDB()
->selectGridFSBucket(),
],
];
}
#[DataProvider('provideValidOptions')]
public function testValidOptions(array $options)
{
// Service used by "bucket-service"
$this->app->singleton('bucket', static fn (Application $app) => $app['db']
->connection('mongodb')
->getMongoDB()
->selectGridFSBucket());
$this->app['config']->set('filesystems.disks.' . $this->dataName(), $options);
$disk = Storage::disk($this->dataName());
$disk->put($filename = $this->dataName() . '.txt', $value = microtime());
$this->assertEquals($value, $disk->get($filename), 'File saved');
}
public static function provideInvalidOptions(): Generator
{
yield 'not-mongodb-connection' => [
['driver' => 'gridfs', 'connection' => 'sqlite'],
'The database connection "sqlite" does not use the "mongodb" driver.',
];
yield 'factory-not-bucket' => [
['driver' => 'gridfs', 'bucket' => static fn () => new stdClass()],
'Unexpected value for GridFS "bucket" configuration. Expecting "MongoDB\GridFS\Bucket". Got "stdClass"',
];
yield 'service-not-bucket' => [
['driver' => 'gridfs', 'bucket' => 'bucket'],
'Unexpected value for GridFS "bucket" configuration. Expecting "MongoDB\GridFS\Bucket". Got "stdClass"',
];
}
#[DataProvider('provideInvalidOptions')]
public function testInvalidOptions(array $options, string $message)
{
// Service used by "service-not-bucket"
$this->app->singleton('bucket', static fn () => new stdClass());
$this->app['config']->set('filesystems.disks.' . $this->dataName(), $options);
$this->expectException(InvalidArgumentException::class);
$this->expectExceptionMessage($message);
Storage::disk($this->dataName());
}
public function testReadOnlyAndThrowOptions()
{
$this->app['config']->set('filesystems.disks.gridfs-readonly', [
'driver' => 'gridfs',
'connection' => 'mongodb',
// Use ReadOnlyAdapter
'read-only' => true,
// Throw exceptions
'throw' => true,
]);
$disk = Storage::disk('gridfs-readonly');
$this->expectException(UnableToWriteFile::class);
$this->expectExceptionMessage('This is a readonly adapter.');
$disk->put('file.txt', '');
}
public function testPrefix()
{
$this->app['config']->set('filesystems.disks.gridfs-prefix', [
'driver' => 'gridfs',
'connection' => 'mongodb',
'prefix' => 'foo/bar/',
]);
$disk = Storage::disk('gridfs-prefix');
$disk->put('hello/world.txt', 'Hello World!');
$this->assertSame('Hello World!', $disk->get('hello/world.txt'));
$this->assertSame('Hello World!', stream_get_contents($this->getBucket()->openDownloadStreamByName('foo/bar/hello/world.txt')), 'File name is prefixed in the bucket');
}
private function getBucket(): Bucket
{
return DB::connection('mongodb')->getMongoDB()->selectGridFSBucket();
}
}