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
|
from datetime import date
from . import GenericCalendarTest
from ..oceania import (
Australia,
AustralianCapitalTerritory,
NewSouthWales,
NorthernTerritory,
Queensland,
SouthAustralia,
Tasmania,
Hobart,
Victoria,
WesternAustralia,
MarshallIslands,
NewZealand
)
class AustraliaTest(GenericCalendarTest):
cal_class = Australia
def test_year_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 1, 26), holidays)
self.assertIn(date(2013, 1, 28), holidays) # Australia day shift
self.assertIn(date(2013, 1, 26), holidays)
self.assertIn(date(2013, 3, 29), holidays) # Good Friday
self.assertIn(date(2013, 4, 25), holidays)
self.assertIn(date(2013, 12, 25), holidays)
def test_new_year_shift(self):
holidays = self.cal.holidays_set(2012)
self.assertIn(date(2012, 1, 2), holidays) # 1st was a sunday
def test_anzac_shift(self):
holidays = self.cal.holidays_set(2010)
self.assertIn(date(2010, 4, 26), holidays)
def test_oceania_shift_2016(self):
holidays = self.cal.holidays_set(2016)
# Christmas day is on sunday in 2016
# Boxing day is on 26th
self.assertIn(date(2016, 12, 26), holidays)
# Boxing day shift on 27th
self.assertIn(date(2016, 12, 27), holidays)
def test_oceania_shift_2009(self):
holidays = self.cal.holidays_set(2009)
# Boxing day is on saturday in 2009
# Boxing day is on 26th
self.assertIn(date(2009, 12, 26), holidays)
# Boxing day shift on 28th
self.assertIn(date(2009, 12, 28), holidays)
class AustraliaCapitalTerritoryTest(AustraliaTest):
cal_class = AustralianCapitalTerritory
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 11), holidays)
self.assertIn(date(2013, 3, 30), holidays) # Easter Saturday
self.assertIn(date(2013, 4, 1), holidays) # Easter Monday
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 9, 30), holidays) # Family & Community day
self.assertIn(date(2013, 10, 7), holidays) # Labour day october
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
def test_family_community_day_before_2007(self):
# There were no Family and Community day before 2007
for year in range(1970, 2007):
self.assertIsNone(self.cal.get_family_community_day(year))
holidays = self.cal.holidays(year)
holidays = dict(holidays)
labels = holidays.values()
self.assertNotIn(self.cal._family_community_label, labels)
def test_family_community_day_2007_2017_presence(self):
# Family & Community day was included [2007 -> 2017]
for year in range(2007, 2018):
self.assertIsNotNone(self.cal.get_family_community_day(year))
holidays = self.cal.holidays(year)
holidays = dict(holidays)
labels = holidays.values()
self.assertIn(self.cal._family_community_label, labels)
def test_family_community_day_after_2017(self):
# Starting of 2018 this day would no longer exist
for year in range(2018, date.today().year + 1):
self.assertIsNone(self.cal.get_family_community_day(year))
holidays = self.cal.holidays(year)
holidays = dict(holidays)
labels = holidays.values()
print(labels)
self.assertNotIn(self.cal._family_community_label, labels)
def test_reconciliation_day(self):
reconciliation_day = self.cal.get_reconciliation_day(2017)
self.assertIsNone(reconciliation_day)
reconciliation_day = self.cal.get_reconciliation_day(2018)
self.assertEqual(reconciliation_day, (date(2018, 5, 28),
"Reconciliation Day Shift"))
reconciliation_day = self.cal.get_reconciliation_day(2019)
self.assertEqual(reconciliation_day, (date(2019, 5, 27),
"Reconciliation Day"))
class NewSouthWalesTest(AustraliaTest):
cal_class = NewSouthWales
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 30), holidays) # Good friday
self.assertIn(date(2013, 3, 31), holidays) # Easter Sunday
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 10, 7), holidays) # Labour day october
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
def test_anzac_shift(self):
holidays = self.cal.holidays_set(2010)
self.assertIn(date(2010, 4, 26), holidays)
# We don't shift if ANZAC day falls on a Saturday
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 4, 25), holidays)
class NorthernTerritoryTest(AustraliaTest):
cal_class = NorthernTerritory
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 30), holidays) # Easter Saturday
self.assertIn(date(2013, 5, 6), holidays) # May Day
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 8, 5), holidays) # Picnic day
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
def test_anzac_shift(self):
holidays = self.cal.holidays_set(2010)
self.assertIn(date(2010, 4, 26), holidays)
# We don't shift if ANZAC day falls on a Saturday
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 4, 25), holidays)
class QueenslandTest(AustraliaTest):
cal_class = Queensland
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 30), holidays) # Easter Saturday
self.assertIn(date(2013, 5, 6), holidays) # May's labour day
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
def test_anzac_shift(self):
holidays = self.cal.holidays_set(2010)
self.assertIn(date(2010, 4, 26), holidays)
# We don't shift if ANZAC day falls on a Saturday
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 4, 25), holidays)
class SouthAustraliaTest(AustraliaTest):
cal_class = SouthAustralia
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 11), holidays) # Adelaide's cup
self.assertIn(date(2013, 3, 30), holidays) # Easter Saturday
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 10, 7), holidays) # Labour day october
self.assertIn(date(2013, 12, 26), holidays) # Proclamation day
def test_anzac_shift(self):
holidays = self.cal.holidays_set(2010)
self.assertIn(date(2010, 4, 26), holidays)
# We don't shift if ANZAC day falls on a Saturday
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 4, 25), holidays)
class TasmaniaTest(AustraliaTest):
cal_class = Tasmania
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 11), holidays) # Eight hours day
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
self.assertIn(date(2013, 4, 25), holidays) # ANZAC day
def test_anzac_shift(self):
# We don't shift
holidays = self.cal.holidays_set(2010)
self.assertNotIn(date(2010, 4, 26), holidays)
class NonHobartTest(TasmaniaTest):
def test_tasmania_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 11, 4), holidays) # Recreation Day
class HobartTest(TasmaniaTest):
cal_class = Hobart
def test_hobart_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 2, 11), holidays) # Royal Hobart Regatta
# Recreation day not in Hobart
self.assertNotIn(date(2013, 11, 4), holidays) # Recreation Day
class VictoriaTest(AustraliaTest):
cal_class = Victoria
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 11), holidays) # Labours day in march
self.assertIn(date(2013, 3, 30), holidays) # Easter Saturday
self.assertIn(date(2013, 6, 10), holidays) # Queen's Bday
self.assertIn(date(2013, 11, 5), holidays) # Melbourne's cup
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
self.assertIn(date(2013, 4, 25), holidays) # ANZAC day
def test_anzac_shift(self):
# We don't shift
holidays = self.cal.holidays_set(2010)
self.assertNotIn(date(2010, 4, 26), holidays)
class WesternAustraliaTest(AustraliaTest):
cal_class = WesternAustralia
def test_regional_specific_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 3, 4), holidays) # Labours day in march
self.assertIn(date(2013, 6, 3), holidays) # Western Australia Day
self.assertIn(date(2013, 12, 26), holidays) # Boxing day
# It is not possible to surely compute Queen's Birthday holiday in
# The western Australia territory, since it's based on the Governor
# Decision (it is typically the last Monday of September or the first
# Monday of October)
class MarshallIslandsTest(GenericCalendarTest):
cal_class = MarshallIslands
def test_year_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 1, 1), holidays) # new year
self.assertIn(date(2013, 3, 3), holidays) # Remembrance day
self.assertIn(date(2013, 3, 29), holidays) # (good friday)
self.assertIn(date(2013, 5, 1), holidays) # constitution day
self.assertIn(date(2013, 7, 5), holidays) # Fishermens
self.assertIn(date(2013, 9, 6), holidays) # labour day
self.assertIn(date(2013, 9, 27), holidays) # Manit Day
self.assertIn(date(2013, 11, 17), holidays) # presidents day
self.assertIn(date(2013, 12, 6), holidays) # gospel day
self.assertIn(date(2013, 12, 25), holidays) # Xmas
self.assertIn(date(2013, 12, 31), holidays) # new year's eve
class NewZealandTest(GenericCalendarTest):
cal_class = NewZealand
def test_year_2018(self):
holidays = self.cal.holidays_set(2018)
self.assertIn(date(2018, 1, 1), holidays) # New Year's Day
self.assertIn(date(2018, 1, 2), holidays) # Day after New Year's Day
self.assertIn(date(2018, 2, 6), holidays) # Waitangi Day
self.assertIn(date(2018, 3, 30), holidays) # Good Friday
self.assertIn(date(2018, 4, 2), holidays) # Easter Monday
self.assertIn(date(2018, 4, 25), holidays) # ANZAC Day
self.assertIn(date(2018, 6, 4), holidays) # Queen's Birthday
self.assertIn(date(2018, 10, 22), holidays) # Labour Day
self.assertIn(date(2018, 12, 25), holidays) # Christmas Day
self.assertIn(date(2018, 12, 26), holidays) # Boxing Day
def test_new_year_shift_on_sunday(self):
holidays = self.cal.holidays_set(2012)
# New Years was on a SUN
# Day After New Years is on the 2nd
self.assertIn(date(2012, 1, 2), holidays)
# New Years Shift is on the 3rd
self.assertIn(date(2012, 1, 3), holidays)
# No shift of a shift
self.assertNotIn(date(2012, 1, 4), holidays)
def test_new_year_shift_on_saturday(self):
holidays = self.cal.holidays_set(2022)
# New Years is on a SAT
# The day after is still a holiday
self.assertIn(date(2022, 1, 2), holidays)
# The shift is on the MON, 3rd
self.assertIn(date(2022, 1, 3), holidays)
# And there's a shift of the shift
self.assertIn(date(2022, 1, 4), holidays)
def test_anzac_shift(self):
holidays = self.cal.holidays_set(2010)
# 25th was a sunday
# ANZAC Day is on 25th
self.assertIn(date(2010, 4, 25), holidays)
# ANZAC Day Shift is on 26th
self.assertIn(date(2010, 4, 26), holidays)
def test_waitangi_shift(self):
holidays = self.cal.holidays_set(2016)
# 6th was a saturday
# Waitangi Day is on 6th
self.assertIn(date(2016, 2, 6), holidays)
# Waitangi Day Shift is on 7th
self.assertIn(date(2016, 2, 8), holidays)
def test_oceania_shift_2016(self):
holidays = self.cal.holidays_set(2016)
# Christmas day is on sunday in 2016
# Boxing day is on 26th
self.assertIn(date(2016, 12, 26), holidays)
# Christmas day shift on 27th
self.assertIn(date(2016, 12, 27), holidays)
def test_oceania_shift_2009(self):
holidays = self.cal.holidays_set(2009)
# Boxing day is on saturday in 2009
# Boxing day is on 26th
self.assertIn(date(2009, 12, 26), holidays)
# Boxing day shift on 28th
self.assertIn(date(2009, 12, 28), holidays)
|