-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathVoucherTest.php
More file actions
157 lines (115 loc) · 4.53 KB
/
VoucherTest.php
File metadata and controls
157 lines (115 loc) · 4.53 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
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
<?php
declare(strict_types=1);
namespace Sysix\LexOffice\Tests\Clients;
use GuzzleHttp\Psr7\Response;
use Psr\Http\Message\ResponseInterface;
use Sysix\LexOffice\Clients\Voucher;
use Sysix\LexOffice\Config\FileClient\VoucherConfig;
use Sysix\LexOffice\Exceptions\LexOfficeApiException;
use Sysix\LexOffice\Tests\TestClient;
final class VoucherTest extends TestClient
{
public function testCreate(): void
{
[$api, $stub] = $this->createClientMockObject(Voucher::class);
$response = $stub->create([
'version' => 0
]);
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('POST', $api->getRequest()->getMethod());
$this->assertEquals(
$api->apiUrl . '/v1/vouchers',
$api->getRequest()->getUri()->__toString()
);
}
public function testGet(): void
{
[$api, $stub] = $this->createClientMockObject(Voucher::class);
$response = $stub->get('resource-id');
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('GET', $api->getRequest()->getMethod());
$this->assertEquals(
$api->apiUrl . '/v1/vouchers/resource-id',
$api->getRequest()->getUri()->__toString()
);
}
public function testUpdate(): void
{
[$api, $stub] = $this->createClientMockObject(Voucher::class);
$response = $stub->update('resource-id', []);
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('PUT', $api->getRequest()->getMethod());
$this->assertEquals(
$api->apiUrl . '/v1/vouchers/resource-id',
$api->getRequest()->getUri()->__toString()
);
}
public function testUploadNotSupportedExtension(): void
{
$this->expectException(LexOfficeApiException::class);
[, $stub] = $this->createClientMockObject(Voucher::class);
$stub->upload('resource-id', 'not_allowed.gif');
}
public function testUploadNotFound(): void
{
$this->expectException(LexOfficeApiException::class);
[, $stub] = $this->createClientMockObject(Voucher::class);
$stub->upload('resource-id', 'not_existing.jpg');
}
public function testUploadToBig(): void
{
$this->expectException(LexOfficeApiException::class);
[, $stub] = $this->createClientMockObject(Voucher::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('resource-id', $file);
unlink($file);
}
public function testUploadSuccess(): void
{
[$api, $stub] = $this->createClientMockObject(Voucher::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('resource-id', $file);
unlink($file);
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('POST', $api->getRequest()->getMethod());
$this->assertEquals(
$api->apiUrl . '/v1/vouchers/resource-id/files',
$api->getRequest()->getUri()->__toString()
);
$this->assertStringContainsString(
'multipart/form-data',
$api->getRequest()->getHeaderLine('Content-Type')
);
}
public function testGetAll(): void
{
$this->expectDeprecationV1Warning('getAll');
[$api, $stub] = $this->createClientMultiMockObject(
Voucher::class,
[new Response(200, [], '{"content": [], "totalPages": 1}')]
);
$response = $stub->getAll();
$this->assertInstanceOf(ResponseInterface::class, $response);
$this->assertEquals('GET', $api->getRequest()->getMethod());
$this->assertEquals(
$api->apiUrl . '/v1/voucherlist?page=0&voucherType=salesinvoice%2Csalescreditnote%2Cpurchaseinvoice%2Cpurchasecreditnote&voucherStatus=open%2Cpaid%2Cpaidoff%2Cvoided%2Ctransferred%2Csepadebit&size=100&sort=voucherNumber%2CDESC',
$api->getRequest()->getUri()->__toString()
);
}
}