-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathShipmentOptionsTest.php
More file actions
226 lines (180 loc) · 4.98 KB
/
ShipmentOptionsTest.php
File metadata and controls
226 lines (180 loc) · 4.98 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
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
<?php
namespace Mvdnbrk\DhlParcel\Tests\Unit\Resources;
use Mvdnbrk\DhlParcel\Resources\ShipmentOptions;
use Mvdnbrk\DhlParcel\Tests\TestCase;
class ShipmentOptionsTest extends TestCase
{
/** @test */
public function creating_a_shipments_options_resource()
{
$options = new ShipmentOptions([
'label_description' => 'Test',
]);
$this->assertEquals('Test', $options->label_description);
$this->assertFalse($options->signature);
$this->assertFalse($options->only_recipient);
$this->assertFalse($options->extra_assurance);
$this->assertFalse($options->evening_delivery);
}
/** @test */
public function description_may_be_used_as_an_alias_to_label_description()
{
$options = new ShipmentOptions([
'description' => 'Test',
]);
$this->assertEquals('Test', $options->label_description);
$this->assertEquals('Test', $options->description);
}
/** @test */
public function description_gets_truncated_to_fifteen_characters()
{
$options = new ShipmentOptions([
'label_description' => 'Long Description Test',
]);
$this->assertEquals('Long Descriptio', $options->description);
$options->description = 'Another Long Description';
$this->assertEquals('Another Long De', $options->description);
}
/** @test */
public function to_array()
{
$options = new ShipmentOptions;
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals(['key' => 'DOOR'], $array[0]);
}
/** @test */
public function to_array_with_label_description()
{
$options = new ShipmentOptions([
'label_description' => 'Test',
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'REFERENCE',
'input' => 'Test',
],
], $array);
}
/** @test */
public function to_array_with_signature()
{
$options = new ShipmentOptions([
'signature' => true,
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'HANDT',
],
], $array);
}
/** @test */
public function to_array_with_recipient_only()
{
$options = new ShipmentOptions([
'only_recipient' => true,
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'NBB',
],
], $array);
}
/** @test */
public function to_array_with_extra_assurance()
{
$options = new ShipmentOptions([
'extra_assurance' => true,
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'EA',
],
], $array);
}
/** @test */
public function to_array_with_evening_delivery()
{
$options = new ShipmentOptions([
'evening_delivery' => true,
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'EVE',
],
], $array);
}
/** @test */
public function to_array_with_mailbox_package()
{
$options = new ShipmentOptions([
'signature' => true,
'only_recipient' => true,
]);
$options->setMailboxPackage();
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals(['key' => 'BP'], $array[0]);
}
/** @test */
public function to_array_with_cash_on_delivery()
{
$options = new ShipmentOptions([
'cash_on_delivery' => 9.99,
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'COD_CASH',
'input' => '9.99',
],
], $array);
}
/** @test */
public function to_array_with_insured()
{
$options = new ShipmentOptions([
'insured' => 150,
]);
$array = $options->toArray();
$this->assertIsArray($array);
$this->assertEquals([
[
'key' => 'DOOR',
],
[
'key' => 'INS',
'input' => 150,
],
], $array);
}
}