-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathFileTest.php
More file actions
124 lines (89 loc) · 3.38 KB
/
FileTest.php
File metadata and controls
124 lines (89 loc) · 3.38 KB
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
<?php
declare(strict_types=1);
namespace Sysix\LexOffice\Tests\Clients;
use InvalidArgumentException;
use Psr\Http\Message\ResponseInterface;
use Sysix\LexOffice\Clients\File;
use Sysix\LexOffice\Config\FileClient\VoucherConfig;
use Sysix\LexOffice\Exceptions\LexOfficeApiException;
use Sysix\LexOffice\Tests\TestClient;
final class FileTest extends TestClient
{
public function testGet(): void
{
[$api, $stub] = $this->createClientMockObject(File::class);
$response = $stub->get('resource-id');
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('GET', $api->getRequest()->getMethod());
$this->assertEquals('*/*', $api->getRequest()->getHeaderLine('Accept'));
$this->assertEquals(
$api->apiUrl . '/v1/files/resource-id',
$api->getRequest()->getUri()->__toString()
);
}
public function testGetWithAccceptHeader(): void
{
[$api, $stub] = $this->createClientMockObject(File::class);
$stub->get('resource-id', 'application/xml');
$this->assertEquals('application/xml', $api->getRequest()->getHeaderLine('Accept'));
}
public function testUploadNotSupportedType(): void
{
$this->expectException(InvalidArgumentException::class);
[, $stub] = $this->createClientMockObject(File::class);
$stub->upload('somefile.jpg', 'invalid-type');
}
public function testUploadNotSupportedExtension(): void
{
$this->expectException(LexOfficeApiException::class);
[, $stub] = $this->createClientMockObject(File::class);
$stub->upload('not_allowed.gif', 'voucher');
}
public function testUploadNotFound(): void
{
$this->expectException(LexOfficeApiException::class);
[, $stub] = $this->createClientMockObject(File::class);
$stub->upload('not_existing.jpg', 'voucher');
}
public function testUploadToBig(): void
{
$this->expectException(LexOfficeApiException::class);
[, $stub] = $this->createClientMockObject(File::class);
$this->createCacheDir();
$file = $this->getCacheDir() . '/somefile.jpg';
$fp = fopen($file, 'w+');
if ($fp === false) {
$this->fail('could not open file ' . $file);
}
fseek($fp, VoucherConfig::MAX_FILE_SIZE + 1, SEEK_CUR);
fwrite($fp, 'a');
fclose($fp);
$stub->upload($file, 'voucher');
unlink($file);
}
public function testUploadSuccess(): void
{
[$api, $stub] = $this->createClientMockObject(File::class);
$this->createCacheDir();
$file = $this->getCacheDir() . '/somefile2.jpg';
$fp = fopen($file, 'w+');
if ($fp === false) {
$this->fail('could not open file ' . $file);
}
fseek($fp, 5, SEEK_CUR);
fwrite($fp, 'a');
fclose($fp);
$response = $stub->upload($file, 'voucher');
unlink($file);
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('POST', $api->getRequest()->getMethod());
$this->assertEquals(
$api->apiUrl . '/v1/files',
$api->getRequest()->getUri()->__toString()
);
$this->assertStringContainsString(
'multipart/form-data',
$api->getRequest()->getHeaderLine('Content-Type')
);
}
}