-
Notifications
You must be signed in to change notification settings - Fork 22
/
FormatTest.php
292 lines (248 loc) · 7.02 KB
/
FormatTest.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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<?php
use Adamlc\AddressFormat\Format;
class FormatTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Adamlc\AddressFormat\Format
*/
protected $container;
/**
* Setup procedure which runs before each test.
*
* @return void
*/
public function setUp(): void
{
$this->container = new Format;
}
/**
* Test setting a locale
*
* @return void
*/
public function testSettingLocale()
{
$this->assertTrue(
$this->container->setLocale('GB')
);
}
/**
* Test setting an invalid locale
*
* @return void
*/
public function testSettingInvalidLocale()
{
$this->expectException(Adamlc\AddressFormat\Exceptions\LocaleNotSupportedException::class);
$this->container->setLocale('FOO');
}
/**
* Test setting an invalid locale
*
* @return void
*/
public function testLocaleWithInvalidMetaData()
{
$this->expectException(Adamlc\AddressFormat\Exceptions\LocaleParseErrorException::class);
$this->container->setLocale('Test');
}
/**
* Test setting a valid attribute
*
* @return void
*/
public function testSetAttributeWithValidAttribute()
{
$this->assertEquals(
$this->container->setAttribute('ADMIN_AREA', 'Foo Land'),
'Foo Land'
);
}
/**
* Test setting an invalid attribute
*
* @return void
*/
public function testSetAttributeWithInvalidAttribute()
{
$this->expectException(Adamlc\AddressFormat\Exceptions\AttributeInvalidException::class);
$this->container->setAttribute('PLACE_OF_FOO', 'Foo Land');
}
/**
* Test getting a valid attribute
*
* @return void
*/
public function testGetAttributeWithValidAttribute()
{
$this->container->setAttribute('ADMIN_AREA', 'Foo Land');
$this->assertEquals(
$this->container->getAttribute('ADMIN_AREA'),
'Foo Land'
);
}
/**
* Test getting an invalid attribute
*
* @return void
*/
public function testGetAttributeWithInvalidAttribute()
{
$this->expectException(Adamlc\AddressFormat\Exceptions\AttributeInvalidException::class);
$this->container->getAttribute('PLACE_OF_FOO');
}
/**
* Check the format of a GB address is expected
*
* @return void
*/
public function testGbAddressFormat()
{
//Clear any previously set attributes
$this->container->clearAttributes();
//Set Locale and attributes
$this->container->setLocale('GB');
$this->container->setAttribute('ADMIN_AREA', 'London');
$this->container->setAttribute('LOCALITY', 'Greenwich');
$this->container->setAttribute('RECIPIENT', 'Joe Bloggs');
$this->container->setAttribute('ORGANIZATION', 'Novotel London');
$this->container->setAttribute('POSTAL_CODE', 'SE10 8JA');
$this->container->setAttribute('STREET_ADDRESS', '173-185 Greenwich High Road');
$this->container->setAttribute('COUNTRY', 'United Kingdom');
$this->assertEquals(
$this->container->formatAddress(),
"Joe Bloggs\nNovotel London\n173-185 Greenwich High Road\nGreenwich\nSE10 8JA"
);
}
/**
* Check the format of a DE address is expected
*
* @return void
*/
public function testDeAddressFormat()
{
//Clear any previously set attributes
$this->container->clearAttributes();
//Set Locale and attributes
$this->container->setLocale('DE');
$this->container->setAttribute('LOCALITY', 'Oyenhausen');
$this->container->setAttribute('RECIPIENT', 'Eberhard Wellhausen');
$this->container->setAttribute('ORGANIZATION', 'Wittekindshof');
$this->container->setAttribute('POSTAL_CODE', '32547');
$this->container->setAttribute('STREET_ADDRESS', 'Schulstrasse 4');
$this->assertEquals(
$this->container->formatAddress(),
"Eberhard Wellhausen\nWittekindshof\nSchulstrasse 4\n32547 Oyenhausen"
);
}
/**
* Check that an exception is thrown for invlidate locale
*
* @return void
*/
public function testUnsupportedLocaleThrowsException()
{
$this->expectException(Adamlc\AddressFormat\Exceptions\LocaleNotSupportedException::class);
//Clear any previously set attributes
$this->container->clearAttributes();
//Set Locale
$this->container->setLocale('XX');
//Set expected Exception
$this->setExpectedException('Adamlc\AddressFormat\Exceptions\LocaleNotSupportedException');
$this->container->formatAddress();
}
/**
* Check that an exception is thrown for invlidate locale
*
* @return void
*/
public function testNotGivenFormatThrowsException()
{
//Clear any previously set attributes
$this->container->clearAttributes();
//Set expected Exception
$this->expectException(Adamlc\AddressFormat\Exceptions\LocaleMissingFormatException::class);
$this->container->formatAddress();
}
/**
* Test setting attributes using array access
*
* @return void
*/
public function testArrayAccess()
{
//Clear any previously set attributes
$this->container->clearAttributes();
$this->container['LOCALITY'] = 'Oyenhausen';
$this->container['RECIPIENT'] = 'Eberhard Wellhausen';
$this->container['ORGANIZATION'] = 'Wittekindshof';
$this->container['POSTAL_CODE'] = '32547';
$this->container['STREET_ADDRESS'] = 'Schulstrasse 4';
$this->assertEquals(
$this->container['LOCALITY'],
'Oyenhausen'
);
$this->assertEquals(
$this->container['RECIPIENT'],
'Eberhard Wellhausen'
);
$this->assertEquals(
$this->container['ORGANIZATION'],
'Wittekindshof'
);
$this->assertEquals(
$this->container['POSTAL_CODE'],
'32547'
);
$this->assertEquals(
$this->container['STREET_ADDRESS'],
'Schulstrasse 4'
);
}
/**
* Check that an exception is thrown for validAddressPieces by invlidate locale
*
* @return void
*/
public function testValidAddressPiecesLocaleMissingFormatException()
{
//Clear any previously set attributes
$this->container->clearAttributes();
$this->expectException(Adamlc\AddressFormat\Exceptions\LocaleMissingFormatException::class);
$this->container->validAddressPieces();
}
/**
* Test get the ordered adress pieces for this locale
*
* @return void
*/
public function testValidAddressPieces()
{
//Clear any previously set attributes
$this->container->clearAttributes();
//Set Locale
$this->container->setLocale('DE');
//get the ordered adress pieces for this locale
$validAddressPieces = $this->container->validAddressPieces();
$this->assertEquals(
$validAddressPieces[0],
"RECIPIENT"
);
$this->assertEquals(
$validAddressPieces[1],
"ORGANIZATION"
);
$this->assertEquals(
$validAddressPieces[2],
"STREET_ADDRESS"
);
$this->assertEquals(
$validAddressPieces[3],
"POSTAL_CODE"
);
$this->assertEquals(
$validAddressPieces[4],
"LOCALITY"
);
}
}