forked from top-think/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFilesystemTest.php
131 lines (101 loc) · 3.69 KB
/
FilesystemTest.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
<?php
namespace think\tests;
use League\Flysystem\Adapter\NullAdapter;
use League\Flysystem\AdapterInterface;
use Mockery as m;
use Mockery\MockInterface;
use org\bovigo\vfs\vfsStream;
use org\bovigo\vfs\vfsStreamDirectory;
use PHPUnit\Framework\TestCase;
use think\App;
use think\Cache;
use think\cache\driver\File;
use think\Config;
use think\Container;
use think\Filesystem;
use think\filesystem\Driver;
use think\filesystem\driver\Local;
class FilesystemTest extends TestCase
{
/** @var App|MockInterface */
protected $app;
/** @var Filesystem */
protected $filesystem;
/** @var Config|MockInterface */
protected $config;
/** @var vfsStreamDirectory */
protected $root;
protected function setUp()
{
$this->app = m::mock(App::class)->makePartial();
Container::setInstance($this->app);
$this->app->shouldReceive('make')->with(App::class)->andReturn($this->app);
$this->config = m::mock(Config::class);
$this->config->shouldReceive('get')->with('filesystem.default', null)->andReturn('local');
$this->app->shouldReceive('get')->with('config')->andReturn($this->config);
$this->filesystem = new Filesystem($this->app);
$this->root = vfsStream::setup('rootDir');
}
protected function tearDown(): void
{
m::close();
}
public function testDisk()
{
$this->config->shouldReceive('get')->with('filesystem.disks.local', null)->andReturn([
'type' => 'local',
'root' => $this->root->url(),
]);
$this->config->shouldReceive('get')->with('filesystem.disks.foo', null)->andReturn([
'type' => 'local',
'root' => $this->root->url(),
]);
$this->assertInstanceOf(Local::class, $this->filesystem->disk());
$this->assertInstanceOf(Local::class, $this->filesystem->disk('foo'));
}
public function testCache()
{
$this->config->shouldReceive('get')->with('filesystem.disks.local', null)->andReturn([
'type' => 'local',
'root' => $this->root->url(),
'cache' => true,
]);
$this->assertInstanceOf(Local::class, $this->filesystem->disk());
$this->config->shouldReceive('get')->with('filesystem.disks.cache', null)->andReturn([
'type' => NullDriver::class,
'root' => $this->root->url(),
'cache' => [
'store' => 'flysystem',
],
]);
$cache = m::mock(Cache::class);
$cacheDriver = m::mock(File::class);
$cache->shouldReceive('store')->once()->with('flysystem')->andReturn($cacheDriver);
$this->app->shouldReceive('make')->with(Cache::class)->andReturn($cache);
$cacheDriver->shouldReceive('get')->with('flysystem')->once()->andReturn(null);
$cacheDriver->shouldReceive('set')->withAnyArgs();
$this->filesystem->disk('cache')->put('test.txt', 'aa');
}
public function testPutFile()
{
$root = vfsStream::setup('rootDir', null, [
'foo.jpg' => 'hello',
]);
$this->config->shouldReceive('get')->with('filesystem.disks.local', null)->andReturn([
'type' => NullDriver::class,
'root' => $root->url(),
'cache' => true,
]);
$file = m::mock(\think\File::class);
$file->shouldReceive('hashName')->with(null)->once()->andReturn('foo.jpg');
$file->shouldReceive('getRealPath')->once()->andReturn($root->getChild('foo.jpg')->url());
$this->filesystem->putFile('test', $file);
}
}
class NullDriver extends Driver
{
protected function createAdapter(): AdapterInterface
{
return new NullAdapter();
}
}