forked from acurrieclark/date-string-utilities
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDateInStringFinderTest.php
More file actions
253 lines (249 loc) · 6.48 KB
/
DateInStringFinderTest.php
File metadata and controls
253 lines (249 loc) · 6.48 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
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
<?php
declare(strict_types=1);
use acurrieclark\DateStringUtilities\DateInStringFinder;
use PHPUnit\Framework\TestCase;
/**
* @internal
* @coversNothing
*/
class DateInStringFinderTest extends TestCase
{
/**
* @dataProvider dataStringDataProvider
*
* @param int[] $expected
*/
public function testDateInStringFinder(string $string, array $expected): void
{
$this->assertSame($expected, DateInStringFinder::find($string));
}
public function dataStringDataProvider(): array
{
return [
[
'this will be achieved before 10/02/2019',
[
'day' => 10,
'month' => 2,
'year' => 2019,
],
],
[
'The painters said they had completed the job on 4th March 2020',
[
'day' => 4,
'month' => 3,
'year' => 2020,
],
],
[
'This building was cleaned on the 8th of October 2006 after a huge storm',
[
'day' => 8,
'month' => 10,
'year' => 2006,
],
],
[
'This building was cleaned on the 8th of October after a huge storm',
[
'day' => 8,
'month' => 10,
'year' => null,
],
],
[
'This building was cleaned at the end of October 1983 after a huge storm',
[
'day' => null,
'month' => 10,
'year' => 1983,
],
],
[
'HOUSE 34 STREET 1: MONDAY 16th JULY 2018',
[
'day' => 16,
'month' => 7,
'year' => 2018,
],
],
[
'30-12-11',
[
'day' => 30,
'month' => 12,
'year' => 11,
],
],
[
'uploads/2025-06/example.pdf',
[
'day' => null,
'month' => 06,
'year' => 2025,
],
],
[
'uploads/2025-06/17/example.pdf',
[
'day' => 17,
'month' => 06,
'year' => 2025,
],
],
[
'uploads/2025-06/example.pdf',
[
'day' => null,
'month' => 06,
'year' => 2025,
],
],
[
'2025-06-17',
[
'day' => 17,
'month' => 06,
'year' => 2025,
],
],
[
'1 2 1985',
[
'day' => 01,
'month' => 02,
'year' => 1985,
],
],
[
'There were no more than 15. It started on 10.12.1850',
[
'day' => 10,
'month' => 12,
'year' => 1850,
],
],
[
'10.12.1850',
[
'day' => 10,
'month' => 12,
'year' => 1850,
],
],
[
'5 12 85',
[
'day' => 05,
'month' => 12,
'year' => 85,
],
],
[
'5 12/85',
[
'day' => null,
'month' => null,
'year' => null,
],
],
[
'5-12/85',
[
'day' => null,
'month' => null,
'year' => null,
],
],
[
'Marshgate Business Centre, 10-12 Marshgate Lane',
[
'day' => null,
'month' => null,
'year' => null,
],
],
[
'5 October 2012',
[
'day' => 05,
'month' => 10,
'year' => 2012,
],
],
[
'October 5 \'12',
[
'day' => 05,
'month' => 10,
'year' => 12,
],
],
[
'MAY 5th 1985',
[
'day' => 05,
'month' => 05,
'year' => 1985,
],
],
[
'1st March \'81',
[
'day' => 01,
'month' => 03,
'year' => 81,
],
],
[
'March 1st',
[
'day' => 01,
'month' => 03,
'year' => null,
],
],
[
'Apr \'20',
[
'day' => null,
'month' => 04,
'year' => 20,
],
],
[
'Apr 20th',
[
'day' => 20,
'month' => 04,
'year' => null,
],
],
[
'Sunday, 24 June',
[
'day' => 24,
'month' => 06,
'year' => null,
],
],
[
'Mon 2nd July',
[
'day' => 02,
'month' => 07,
'year' => null,
],
],
[
'"There is no date in this string", said Jane',
[
'day' => null,
'month' => null,
'year' => null,
],
],
];
}
}