-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathExcelFakeTest.php
316 lines (254 loc) · 9.99 KB
/
ExcelFakeTest.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
<?php
namespace Maatwebsite\Excel\Tests;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Bus\PendingDispatch;
use Illuminate\Support\Collection;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\ToModel;
use Maatwebsite\Excel\Facades\Excel as ExcelFacade;
use Maatwebsite\Excel\Fakes\ExcelFake;
use Maatwebsite\Excel\Tests\Data\Stubs\ChainedJobStub;
use Maatwebsite\Excel\Tests\Data\Stubs\Database\User;
use Symfony\Component\HttpFoundation\BinaryFileResponse;
class ExcelFakeTest extends TestCase
{
public function test_can_fake_an_export()
{
ExcelFacade::fake();
// Excel instance should be swapped to the fake now.
$this->assertInstanceOf(ExcelFake::class, $this->app->make('excel'));
}
public function test_can_assert_against_a_fake_downloaded_export()
{
ExcelFacade::fake();
$response = ExcelFacade::download($this->givenExport(), 'downloaded-filename.csv');
$this->assertInstanceOf(BinaryFileResponse::class, $response);
ExcelFacade::assertDownloaded('downloaded-filename.csv');
ExcelFacade::assertDownloaded('downloaded-filename.csv', function (FromCollection $export) {
return $export->collection()->contains('foo');
});
ExcelFacade::matchByRegex();
ExcelFacade::assertDownloaded('/\w{10}-\w{8}\.csv/');
}
public function test_can_assert_against_a_fake_stored_export()
{
ExcelFacade::fake();
$response = ExcelFacade::store($this->givenExport(), 'stored-filename.csv', 's3');
$this->assertTrue($response);
ExcelFacade::assertStored('stored-filename.csv', 's3');
ExcelFacade::assertStored('stored-filename.csv', 's3', function (FromCollection $export) {
return $export->collection()->contains('foo');
});
ExcelFacade::matchByRegex();
ExcelFacade::assertStored('/\w{6}-\w{8}\.csv/', 's3');
}
public function test_can_assert_regex_against_a_fake_stored_export_with_multiple_files()
{
ExcelFacade::fake();
$response = ExcelFacade::store($this->givenExport(), 'stored-filename-one.csv', 's3');
$this->assertTrue($response);
$response = ExcelFacade::store($this->givenExport(), 'stored-filename-two.csv', 's3');
$this->assertTrue($response);
ExcelFacade::matchByRegex();
ExcelFacade::assertStored('/\w{6}-\w{8}-one\.csv/', 's3');
ExcelFacade::assertStored('/\w{6}-\w{8}-two\.csv/', 's3');
}
public function test_a_callback_can_be_passed_as_the_second_argument_when_asserting_against_a_faked_stored_export()
{
ExcelFacade::fake();
$response = ExcelFacade::store($this->givenExport(), 'stored-filename.csv');
$this->assertTrue($response);
ExcelFacade::assertStored('stored-filename.csv');
ExcelFacade::assertStored('stored-filename.csv', function (FromCollection $export) {
return $export->collection()->contains('foo');
});
ExcelFacade::matchByRegex();
ExcelFacade::assertStored('/\w{6}-\w{8}\.csv/');
}
public function test_can_assert_against_a_fake_queued_export()
{
ExcelFacade::fake();
$response = ExcelFacade::queue($this->givenExport(), 'queued-filename.csv', 's3');
$this->assertInstanceOf(PendingDispatch::class, $response);
ExcelFacade::assertQueued('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3', function (FromCollection $export) {
return $export->collection()->contains('foo');
});
ExcelFacade::matchByRegex();
ExcelFacade::assertQueued('/\w{6}-\w{8}\.csv/', 's3');
}
public function test_can_assert_against_a_fake_implicitly_queued_export()
{
ExcelFacade::fake();
$response = ExcelFacade::store($this->givenQueuedExport(), 'queued-filename.csv', 's3');
$this->assertInstanceOf(PendingDispatch::class, $response);
ExcelFacade::assertStored('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3', function (FromCollection $export) {
return $export->collection()->contains('foo');
});
ExcelFacade::matchByRegex();
ExcelFacade::assertQueued('/\w{6}-\w{8}\.csv/', 's3');
}
public function test_can_assert_against_a_fake_queued_export_with_chain()
{
ExcelFacade::fake();
ExcelFacade::queue(
$this->givenQueuedExport(), 'queued-filename.csv', 's3'
)->chain([
new ChainedJobStub(),
]);
ExcelFacade::assertQueuedWithChain([
new ChainedJobStub(),
]);
}
public function test_can_assert_against_a_fake_raw_export()
{
ExcelFacade::fake();
$response = ExcelFacade::raw($this->givenExport(), \Maatwebsite\Excel\Excel::XLSX);
$this->assertIsString($response);
ExcelFacade::assertExportedInRaw(get_class($this->givenExport()));
ExcelFacade::assertExportedInRaw(get_class($this->givenExport()), function (FromCollection $export) {
return $export->collection()->contains('foo');
});
}
public function test_can_assert_against_a_fake_import()
{
ExcelFacade::fake();
ExcelFacade::import($this->givenImport(), 'stored-filename.csv', 's3');
ExcelFacade::assertImported('stored-filename.csv', 's3');
ExcelFacade::assertImported('stored-filename.csv', 's3', function (ToModel $import) {
return $import->model([]) instanceof User;
});
ExcelFacade::matchByRegex();
ExcelFacade::assertImported('/\w{6}-\w{8}\.csv/', 's3');
}
public function test_can_assert_against_a_fake_import_with_uploaded_file()
{
ExcelFacade::fake();
ExcelFacade::import($this->givenImport(), $this->givenUploadedFile(__DIR__ . '/Data/Disks/Local/import.xlsx'));
ExcelFacade::assertImported('import.xlsx');
ExcelFacade::assertImported('import.xlsx', function (ToModel $import) {
return $import->model([]) instanceof User;
});
ExcelFacade::matchByRegex();
ExcelFacade::assertImported('/\w{6}\.xlsx/');
}
public function test_can_assert_against_a_fake_queued_import()
{
ExcelFacade::fake();
$response = ExcelFacade::queueImport($this->givenQueuedImport(), 'queued-filename.csv', 's3');
$this->assertInstanceOf(PendingDispatch::class, $response);
ExcelFacade::assertImported('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3', function (ToModel $import) {
return $import->model([]) instanceof User;
});
ExcelFacade::matchByRegex();
ExcelFacade::assertQueued('/\w{6}-\w{8}\.csv/', 's3');
}
public function test_can_assert_against_a_fake_implicitly_queued_import()
{
ExcelFacade::fake();
$response = ExcelFacade::import($this->givenQueuedImport(), 'queued-filename.csv', 's3');
$this->assertInstanceOf(PendingDispatch::class, $response);
ExcelFacade::assertImported('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3');
ExcelFacade::assertQueued('queued-filename.csv', 's3', function (ToModel $import) {
return $import->model([]) instanceof User;
});
ExcelFacade::matchByRegex();
ExcelFacade::assertQueued('/\w{6}-\w{8}\.csv/', 's3');
}
public function test_can_assert_against_a_fake_queued_import_with_chain()
{
ExcelFacade::fake();
ExcelFacade::queueImport(
$this->givenQueuedImport(), 'queued-filename.csv', 's3'
)->chain([
new ChainedJobStub(),
]);
ExcelFacade::assertQueuedWithChain([
new ChainedJobStub(),
]);
}
public function test_a_callback_can_be_passed_as_the_second_argument_when_asserting_against_a_faked_queued_export()
{
ExcelFacade::fake();
$response = ExcelFacade::queue($this->givenExport(), 'queued-filename.csv');
$this->assertInstanceOf(PendingDispatch::class, $response);
ExcelFacade::assertQueued('queued-filename.csv');
ExcelFacade::assertQueued('queued-filename.csv', function (FromCollection $export) {
return $export->collection()->contains('foo');
});
ExcelFacade::matchByRegex();
ExcelFacade::assertQueued('/\w{6}-\w{8}\.csv/');
}
/**
* @return FromCollection
*/
private function givenExport()
{
return new class implements FromCollection
{
/**
* @return Collection
*/
public function collection()
{
return collect(['foo', 'bar']);
}
};
}
/**
* @return FromCollection
*/
private function givenQueuedExport()
{
return new class implements FromCollection, ShouldQueue
{
/**
* @return Collection
*/
public function collection()
{
return collect(['foo', 'bar']);
}
};
}
/**
* @return object
*/
private function givenImport()
{
return new class implements ToModel
{
/**
* @param array $row
* @return Model|null
*/
public function model(array $row)
{
return new User([]);
}
};
}
/**
* @return object
*/
private function givenQueuedImport()
{
return new class implements ToModel, ShouldQueue
{
/**
* @param array $row
* @return Model|null
*/
public function model(array $row)
{
return new User([]);
}
};
}
}