-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathTestCase.php
112 lines (81 loc) · 2.98 KB
/
TestCase.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
<?php
namespace Spatie\PersonalDataExport\Tests;
use Carbon\Carbon;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\Storage;
use Orchestra\Testbench\TestCase as Orchestra;
use PHPUnit\Framework\Assert;
use Spatie\PersonalDataExport\PersonalDataExportServiceProvider;
use Spatie\TemporaryDirectory\TemporaryDirectory;
use ZipArchive;
class TestCase extends Orchestra
{
protected string $diskName;
protected function setUp(): void
{
parent::setUp();
$this->setUpDatabase($this->app);
$this->withFactories(__DIR__.'/factories');
Route::personalDataExports('personal-data-exports');
Carbon::setTestNow(Carbon::createFromFormat('Y-m-d H:i:s', '2019-01-01 00:00:00'));
$this->diskName = config('personal-data-export.disk');
$userDisk = Storage::fake('user-disk');
$userDisk->put('thumbnail.png', 'my content');
}
protected function setUpDatabase(Application $app)
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('email');
$table->string('username');
$table->timestamps();
});
}
public function getEnvironmentSetUp($app)
{
config()->set('database.default', 'sqlite');
config()->set('database.connections.sqlite', [
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => '',
]);
}
protected function getPackageProviders($app)
{
return [PersonalDataExportServiceProvider::class];
}
public function assertZipContains($zipFile, $expectedFileName, $expectedContents = null)
{
Assert::assertFileExists($zipFile);
$zip = new ZipArchive();
$zip->open($zipFile);
$temporaryDirectory = (new TemporaryDirectory())->create();
$zipDirectoryName = 'extracted-files';
$zip->extractTo($temporaryDirectory->path($zipDirectoryName));
$expectedZipFilePath = $temporaryDirectory->path($zipDirectoryName.'/'.$expectedFileName);
Assert::assertFileExists($expectedZipFilePath);
if (is_null($expectedContents)) {
return;
}
$actualContents = file_get_contents($expectedZipFilePath);
Assert::assertEquals(json_decode($expectedContents, true), json_decode($actualContents, true));
}
protected function progressDays(int $amountOfDays)
{
$newNow = now()->addDays($amountOfDays);
Carbon::setTestNow($newNow);
}
public function assertFileContents(string $path, string $expectedContents)
{
Assert::fileExists($path);
$actualContents = file_get_contents($path);
Assert::assertEquals($expectedContents, $actualContents);
}
public function getStubPath(string $file): string
{
return __DIR__."/stubs/{$file}";
}
}