forked from holidays/definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hk.yaml
339 lines (336 loc) · 7.73 KB
/
hk.yaml
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
# Hong Kong holiday definitions for the Holidays gem!
# Source:
# http://www.gov.hk/en/about/abouthk/holiday/
# https://en.wikipedia.org/wiki/Public_holidays_in_Hong_Kong
months:
0:
- name: Good Friday
regions: [hk]
function: easter(year)
function_modifier: -2
- name: The day following Good Friday
regions: [hk]
function: easter(year)
function_modifier: -1
- name: Easter Monday
regions: [hk]
function: easter(year)
function_modifier: 1
1:
- name: New Year's Day
regions: [hk]
mday: 1
observed: to_monday_if_sunday(date)
- name: Lunar New Year's Day
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 1
observed: to_monday_if_sunday(date)
- name: The second day of Lunar New Year
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 1
observed: to_the_weekday_after(date)
- name: The third day of Lunar New Year
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 1
observed: to_the_second_weekday_after(date)
4:
- name: Ching Ming Festival
regions: [hk]
mday: 5
observed: to_previous_day_if_leap_year(date)
- name: Buddha's Birthday
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 8
observed: to_monday_if_sunday(date)
5:
- name: Labour Day
regions: [hk]
mday: 1
observed: to_monday_if_sunday(date)
- name: Tuen Ng Festival
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 5
observed: to_monday_if_sunday(date)
7:
- name: Hong Kong Special Administrative Region Establishment Day
regions: [hk]
mday: 1
observed: to_monday_if_sunday(date)
8:
- name: The day following the Chinese Mid-Autumn Festival
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 16
observed: to_monday_if_sunday(date)
9:
- name: Chung Yeung Festival
regions: [hk]
function: lunar_to_solar(year, month, day, region)
mday: 9
observed: to_monday_if_sunday(date)
10:
- name: National Day
regions: [hk]
mday: 1
observed: to_monday_if_sunday(date)
12:
- name: Christmas Day
regions: [hk]
mday: 25
observed: to_monday_if_weekend(date)
- name: Boxing Day
regions: [hk]
mday: 26
observed: to_weekday_if_boxing_weekend(date)
tests:
- given:
date: '2016-01-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "New Year's Day"
- given:
date: '2016-02-08'
regions: ["hk"]
options: ["observed"]
expect:
name: "Lunar New Year's Day"
- given:
date: '2016-02-09'
regions: ["hk"]
options: ["observed"]
expect:
name: "The second day of Lunar New Year"
- given:
date: '2016-02-10'
regions: ["hk"]
options: ["observed"]
expect:
name: "The third day of Lunar New Year"
- given:
date: '2016-03-25'
regions: ["hk"]
options: ["observed"]
expect:
name: "Good Friday"
- given:
date: '2016-03-26'
regions: ["hk"]
options: ["observed"]
expect:
name: "The day following Good Friday"
- given:
date: '2016-03-28'
regions: ["hk"]
options: ["observed"]
expect:
name: "Easter Monday"
- given:
date: '2016-05-02'
regions: ["hk"]
options: ["observed"]
expect:
name: "Labour Day"
- given:
date: '2016-07-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "Hong Kong Special Administrative Region Establishment Day"
- given:
date: '2016-10-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "National Day"
- given:
date: '2016-12-26'
regions: ["hk"]
options: ["observed"]
expect:
name: "Christmas Day"
- given:
date: '2016-12-27'
regions: ["hk"]
options: ["observed"]
expect:
name: "Boxing Day"
- given:
date: '2017-01-02'
regions: ["hk"]
options: ["observed"]
expect:
name: "New Year's Day"
- given:
date: '2017-01-28'
regions: ["hk"]
options: ["observed"]
expect:
name: "Lunar New Year's Day"
- given:
date: '2017-01-30'
regions: ["hk"]
options: ["observed"]
expect:
name: "The second day of Lunar New Year"
- given:
date: '2017-01-31'
regions: ["hk"]
options: ["observed"]
expect:
name: "The third day of Lunar New Year"
- given:
date: '2017-04-14'
regions: ["hk"]
options: ["observed"]
expect:
name: "Good Friday"
- given:
date: '2017-04-15'
regions: ["hk"]
options: ["observed"]
expect:
name: "The day following Good Friday"
- given:
date: '2017-04-17'
regions: ["hk"]
options: ["observed"]
expect:
name: "Easter Monday"
- given:
date: '2017-05-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "Labour Day"
- given:
date: '2017-07-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "Hong Kong Special Administrative Region Establishment Day"
- given:
date: '2017-10-02'
regions: ["hk"]
options: ["observed"]
expect:
name: "National Day"
- given:
date: '2017-12-25'
regions: ["hk"]
options: ["observed"]
expect:
name: "Christmas Day"
- given:
date: '2017-12-26'
regions: ["hk"]
options: ["observed"]
expect:
name: "Boxing Day"
- given:
date: '2023-01-02'
regions: ["hk"]
options: ["observed"]
expect:
name: "New Year's Day"
- given:
date: '2023-01-23'
regions: ["hk"]
options: ["observed"]
expect:
name: "Lunar New Year's Day"
- given:
date: '2023-01-24'
regions: ["hk"]
options: ["observed"]
expect:
name: "The second day of Lunar New Year"
- given:
date: '2023-01-25'
regions: ["hk"]
options: ["observed"]
expect:
name: "The third day of Lunar New Year"
- given:
date: '2023-04-05'
regions: ["hk"]
options: ["observed"]
expect:
name: "Ching Ming Festival"
- given:
date: '2023-04-07'
regions: ["hk"]
options: ["observed"]
expect:
name: "Good Friday"
- given:
date: '2023-04-08'
regions: ["hk"]
options: ["observed"]
expect:
name: "The day following Good Friday"
- given:
date: '2023-04-10'
regions: ["hk"]
options: ["observed"]
expect:
name: "Easter Monday"
- given:
date: '2023-05-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "Labour Day"
- given:
date: '2023-05-26'
regions: ["hk"]
options: ["observed"]
expect:
name: "Buddha's Birthday"
- given:
date: '2023-06-22'
regions: ["hk"]
options: ["observed"]
expect:
name: "Tuen Ng Festival"
- given:
date: '2023-07-01'
regions: ["hk"]
options: ["observed"]
expect:
name: "Hong Kong Special Administrative Region Establishment Day"
- given:
date: '2023-09-30'
regions: ["hk"]
options: ["observed"]
expect:
name: "The day following the Chinese Mid-Autumn Festival"
- given:
date: '2023-10-02'
regions: ["hk"]
options: ["observed"]
expect:
name: "National Day"
- given:
date: '2023-10-23'
regions: ["hk"]
options: ["observed"]
expect:
name: "Chung Yeung Festival"
- given:
date: '2023-12-25'
regions: ["hk"]
options: ["observed"]
expect:
name: "Christmas Day"
- given:
date: '2023-12-26'
regions: ["hk"]
options: ["observed"]
expect:
name: "Boxing Day"