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 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
|
from datetime import date
from ..america import (
Argentina,
Barbados,
Chile,
Colombia,
ElSalvador,
Mexico,
Panama,
Paraguay
)
from . import GenericCalendarTest
class ArgentinaTest(GenericCalendarTest):
cal_class = Argentina
def test_holidays_2018(self):
holidays = self.cal.holidays_set(2018)
# 1. Año Nuevo
self.assertIn(date(2018, 1, 1), holidays)
# 2. Carnaval
self.assertIn(date(2018, 2, 12), holidays)
# 3. Carnaval
self.assertIn(date(2018, 2, 13), holidays)
# 4. Día de la Memoria
self.assertIn(date(2018, 3, 24), holidays)
# 5. Día del Veterano y de los Caídos en la Guerra de Malvinas
self.assertIn(date(2018, 4, 2), holidays)
# 6. Viernes Santo
self.assertIn(date(2018, 3, 30), holidays)
# 7. Día del Trabajador
self.assertIn(date(2018, 5, 1), holidays)
# 8. Día de la Revolución de Mayo
self.assertIn(date(2018, 5, 25), holidays)
# 9. Día Paso a la Inmortalidad del General Manuel Belgrano
self.assertIn(date(2018, 6, 20), holidays)
# 10. Día de la Independencia
self.assertIn(date(2018, 7, 9), holidays)
# 11. Inmaculada Concepción de María
self.assertIn(date(2018, 12, 8), holidays)
# 12. Navidad
self.assertIn(date(2018, 12, 25), holidays)
# variable days
# 13. Día Paso a la Inmortalidad del General Martín Miguel de Güemes
self.assertIn(date(2018, 6, 17), holidays)
# 14. Paso a la Inmortalidad del General José de San Martín
self.assertIn(date(2018, 8, 20), holidays)
# 15. Día del Respeto a la Diversidad Cultural
self.assertIn(date(2018, 10, 15), holidays)
# 16. Día de la Soberanía Nacional
self.assertIn(date(2018, 11, 19), holidays)
def test_holidays_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 1, 1), holidays)
self.assertIn(date(2019, 3, 4), holidays)
self.assertIn(date(2019, 3, 5), holidays)
self.assertIn(date(2019, 3, 24), holidays)
self.assertIn(date(2019, 4, 2), holidays)
self.assertIn(date(2019, 4, 19), holidays)
self.assertIn(date(2019, 5, 1), holidays)
self.assertIn(date(2019, 5, 25), holidays)
self.assertIn(date(2019, 6, 20), holidays)
self.assertIn(date(2019, 7, 9), holidays)
self.assertIn(date(2019, 12, 8), holidays)
self.assertIn(date(2019, 12, 25), holidays)
# variable days
self.assertIn(date(2019, 6, 17), holidays)
self.assertIn(date(2019, 8, 19), holidays)
self.assertIn(date(2019, 10, 14), holidays)
self.assertIn(date(2019, 11, 18), holidays)
def test_holidays_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 1, 1), holidays)
self.assertIn(date(2020, 2, 24), holidays)
self.assertIn(date(2020, 2, 25), holidays)
self.assertIn(date(2020, 3, 24), holidays)
# Special case: Argentina has shifted this holiday due to
# Coronavirus lockdown in 2020.
self.assertNotIn(date(2020, 4, 2), holidays)
self.assertIn(date(2020, 3, 31), holidays)
# Back to normal, I hope...
self.assertIn(date(2020, 4, 10), holidays)
self.assertIn(date(2020, 5, 1), holidays)
self.assertIn(date(2020, 5, 25), holidays)
self.assertIn(date(2020, 6, 20), holidays)
self.assertIn(date(2020, 7, 9), holidays)
self.assertIn(date(2020, 12, 8), holidays)
self.assertIn(date(2020, 12, 25), holidays)
# variable days
self.assertIn(date(2020, 6, 15), holidays)
self.assertIn(date(2020, 8, 17), holidays)
self.assertIn(date(2020, 10, 12), holidays)
self.assertIn(date(2020, 11, 23), holidays)
def test_holidays_2021(self):
# Testing it because June 17th happens on THU (general_guemes_day).
holidays = self.cal.holidays_set(2021)
# Not happening on June 17
self.assertNotIn(date(2021, 6, 17), holidays)
# Happens on the 1st MON after this date.
self.assertIn(date(2021, 6, 20), holidays)
# Also, Día del Respeto a la Diversidad Cultural is shifted
self.assertNotIn(date(2021, 10, 12), holidays)
# The day before
self.assertIn(date(2021, 10, 11), holidays)
def test_dia_malvinas_label(self):
_, label = self.cal.get_malvinas_day(2020)
self.assertEqual(
label,
"Día del Veterano y de los Caídos en la Guerra de Malvinas"
)
def test_dia_memoria_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
label_memoria = holidays[date(2020, 3, 24)]
self.assertEqual(
label_memoria,
"Día Nacional de la Memoria por la Verdad y la Justicia"
)
def test_carnival_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
label_carnival = holidays[date(2020, 2, 25)]
self.assertEqual(label_carnival, "Carnival")
def test_labour_day_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
label = holidays[date(2020, 5, 1)]
self.assertEqual(label, "Día del Trabajador")
def test_immaculate_conception_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
label = holidays[date(2020, 12, 8)]
self.assertEqual(label, "Día de la Inmaculada Concepción de María")
class ChileTest(GenericCalendarTest):
cal_class = Chile
def test_holidays_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 1, 1), holidays)
self.assertIn(date(2013, 3, 29), holidays)
self.assertIn(date(2013, 3, 30), holidays)
self.assertIn(date(2013, 5, 1), holidays)
self.assertIn(date(2013, 5, 21), holidays)
self.assertIn(date(2013, 6, 29), holidays)
self.assertIn(date(2013, 7, 16), holidays)
self.assertIn(date(2013, 8, 15), holidays)
self.assertIn(date(2013, 9, 18), holidays)
self.assertIn(date(2013, 9, 19), holidays)
self.assertIn(date(2013, 9, 20), holidays)
self.assertIn(date(2013, 10, 12), holidays)
self.assertIn(date(2013, 10, 31), holidays)
self.assertIn(date(2013, 11, 1), holidays)
self.assertIn(date(2013, 12, 8), holidays)
self.assertIn(date(2013, 12, 25), holidays)
self.assertIn(date(2013, 12, 31), holidays)
def test_holidays_2021(self):
holidays = self.cal.holidays_set(2021)
# Año Nuevo
self.assertIn(date(2021, 1, 1), holidays)
# Viernes Santo
self.assertIn(date(2021, 4, 2), holidays)
# Sábado Santo
self.assertIn(date(2021, 4, 3), holidays)
# Día Nacional del Trabajo
self.assertIn(date(2021, 5, 1), holidays)
# Día de las Glorias Navales
self.assertIn(date(2021, 5, 21), holidays)
# día nacional de los pueblos indígenas (June solstice)
self.assertIn(date(2021, 6, 21), holidays)
# San Pedro y San Pablo
self.assertIn(date(2021, 6, 28), holidays)
# Día de la Virgen del Carmen
self.assertIn(date(2021, 7, 16), holidays)
# Asunción de la Virgen
self.assertIn(date(2021, 8, 15), holidays)
# Additional Holiday
self.assertIn(date(2021, 9, 17), holidays)
# Independencia Nacional
self.assertIn(date(2021, 9, 18), holidays)
# Día de las Glorias del Ejército
self.assertIn(date(2021, 9, 19), holidays)
# Encuentro de Dos Mundos
self.assertIn(date(2021, 10, 11), holidays)
# Día de las Iglesias Evangélicas y Protestantes
self.assertIn(date(2021, 10, 31), holidays)
# Día de Todos los Santos
self.assertIn(date(2021, 11, 1), holidays)
# Inmaculada Concepción
self.assertIn(date(2021, 12, 8), holidays)
# Navidad
self.assertIn(date(2021, 12, 25), holidays)
# Feriado Bancario
self.assertIn(date(2021, 12, 31), holidays)
def test_indigenous_people_day(self):
# Testing because variable nature of June solstice
# approved in 2021
holidays = self.cal.holidays_set(2020)
self.assertNotIn(date(2020, 6, 21), holidays)
self.assertNotIn(date(2020, 6, 20), holidays)
# fixed day in 2021
holidays = self.cal.holidays_set(2021)
self.assertIn(date(2021, 6, 21), holidays)
# solstice 2022
holidays = self.cal.holidays_set(2022)
self.assertIn(date(2022, 6, 21), holidays)
# solstice 2023
holidays = self.cal.holidays_set(2023)
self.assertIn(date(2023, 6, 21), holidays)
# solstice 2023
holidays = self.cal.holidays_set(2024)
self.assertIn(date(2024, 6, 20), holidays)
def test_reformation_day(self):
holidays = self.cal.holidays_set(2012)
self.assertNotIn(date(2012, 10, 31), holidays)
self.assertIn(date(2012, 11, 2), holidays)
holidays = self.cal.holidays_set(2017)
self.assertNotIn(date(2017, 10, 31), holidays)
self.assertIn(date(2017, 10, 27), holidays)
def test_national_bridge_days(self):
# MON TUE
holidays = self.cal.holidays_set(2017)
self.assertIn(date(2017, 9, 18), holidays)
self.assertIn(date(2017, 9, 19), holidays)
# TUE WED
holidays = self.cal.holidays_set(2018)
self.assertIn(date(2018, 9, 17), holidays)
self.assertIn(date(2018, 9, 18), holidays)
self.assertIn(date(2018, 9, 19), holidays)
self.assertNotIn(date(2018, 9, 20), holidays)
# WED THU
holidays = self.cal.holidays_set(2019)
self.assertNotIn(date(2019, 9, 17), holidays)
self.assertIn(date(2019, 9, 18), holidays)
self.assertIn(date(2019, 9, 19), holidays)
self.assertIn(date(2019, 9, 20), holidays)
# THU FRI
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 9, 18), holidays)
self.assertIn(date(2020, 9, 19), holidays)
# FRI SAT
holidays = self.cal.holidays_set(2015)
self.assertNotIn(date(2015, 9, 17), holidays)
self.assertIn(date(2015, 9, 18), holidays)
self.assertIn(date(2015, 9, 19), holidays)
# SUN MON
holidays = self.cal.holidays_set(2016)
self.assertIn(date(2016, 9, 18), holidays)
self.assertIn(date(2016, 9, 19), holidays)
self.assertNotIn(date(2016, 9, 20), holidays)
# SAT SUN for additional day
holidays = self.cal.holidays_set(2021)
self.assertIn(date(2021, 9, 17), holidays)
self.assertIn(date(2021, 9, 18), holidays)
self.assertIn(date(2021, 9, 19), holidays)
def test_columbus_day(self):
# MON
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 10, 12), holidays)
# TUE
holidays = self.cal.holidays_set(2021)
self.assertNotIn(date(2021, 10, 12), holidays)
self.assertIn(date(2021, 10, 11), holidays)
# WED
holidays = self.cal.holidays_set(2016)
self.assertNotIn(date(2016, 10, 12), holidays)
self.assertIn(date(2016, 10, 10), holidays)
# THU
holidays = self.cal.holidays_set(2017)
self.assertNotIn(date(2017, 10, 12), holidays)
self.assertIn(date(2017, 10, 9), holidays)
# FRI
holidays = self.cal.holidays_set(2018)
self.assertNotIn(date(2018, 10, 12), holidays)
self.assertIn(date(2018, 10, 15), holidays)
def test_st_peter_and_st_paul_day(self):
# MON
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 6, 29), holidays)
# TUE
holidays = self.cal.holidays_set(2021)
self.assertNotIn(date(2021, 6, 29), holidays)
self.assertIn(date(2021, 6, 28), holidays)
# WED
holidays = self.cal.holidays_set(2016)
self.assertNotIn(date(2016, 6, 29), holidays)
self.assertIn(date(2016, 6, 27), holidays)
# THU
holidays = self.cal.holidays_set(2017)
self.assertNotIn(date(2017, 6, 29), holidays)
self.assertIn(date(2017, 6, 26), holidays)
# FRI
holidays = self.cal.holidays_set(2018)
self.assertNotIn(date(2018, 6, 29), holidays)
self.assertIn(date(2018, 7, 2), holidays)
class ColombiaTest(GenericCalendarTest):
cal_class = Colombia
def test_holidays_2015(self):
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 1, 1), holidays) # New year
self.assertIn(date(2015, 1, 12), holidays) # Epiphany (shifted)
self.assertIn(date(2015, 3, 23), holidays) # Saint Joseph
self.assertIn(date(2015, 3, 29), holidays) # Palm Sunday
self.assertIn(date(2015, 4, 2), holidays) # Holy Thursday
self.assertIn(date(2015, 4, 3), holidays) # Good Friday
self.assertIn(date(2015, 4, 5), holidays) # Easter (SUN)
self.assertIn(date(2015, 5, 1), holidays) # Labour Day
self.assertIn(date(2015, 5, 18), holidays) # Ascension (shifted)
self.assertIn(date(2015, 6, 8), holidays) # Corpus Christi
self.assertIn(date(2015, 6, 15), holidays) # Sacred Heart
self.assertIn(date(2015, 6, 29), holidays) # St Peter & St Paul
self.assertIn(date(2015, 7, 20), holidays) # Independance Day
self.assertIn(date(2015, 8, 7), holidays) # Boyacá battle
self.assertIn(date(2015, 8, 17), holidays) # Assumption (shifted)
self.assertIn(date(2015, 10, 12), holidays) # Day of the Races
self.assertIn(date(2015, 11, 2), holidays) # All Saints (shifted)
self.assertIn(date(2015, 11, 16), holidays) # Cartagena independence
self.assertIn(date(2015, 12, 8), holidays) # Immaculate Conception
self.assertIn(date(2015, 12, 25), holidays) # XMas
self.assertEqual(len(holidays), 20)
def test_holidays_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 1, 1), holidays) # New year
self.assertIn(date(2020, 1, 6), holidays) # Epiphany
self.assertIn(date(2020, 3, 23), holidays) # Saint Joseph
self.assertIn(date(2020, 4, 5), holidays) # Palm Sunday
self.assertIn(date(2020, 4, 9), holidays) # Holy Thursday
self.assertIn(date(2020, 4, 10), holidays) # Good Friday
self.assertIn(date(2020, 4, 12), holidays) # Easter (SUN)
self.assertIn(date(2020, 5, 1), holidays) # Labour Day
self.assertIn(date(2020, 5, 25), holidays) # Ascension (shifted)
self.assertIn(date(2020, 6, 15), holidays) # Corpus Christi
self.assertIn(date(2020, 6, 22), holidays) # Sacred Heart
self.assertIn(date(2020, 6, 29), holidays) # St Peter & St Paul
self.assertIn(date(2020, 7, 20), holidays) # Independance Day
self.assertIn(date(2020, 8, 7), holidays) # Boyacá battle
self.assertIn(date(2020, 8, 17), holidays) # Assumption (shifted)
self.assertIn(date(2020, 10, 12), holidays) # Day of the Races
self.assertIn(date(2020, 11, 2), holidays) # All Saints (shifted)
self.assertIn(date(2020, 11, 16), holidays) # Cartagena independence
self.assertIn(date(2020, 12, 8), holidays) # Immaculate Conception
self.assertIn(date(2020, 12, 25), holidays) # XMas
self.assertEqual(len(holidays), 20)
def test_epiphany_monday(self):
# In 2020, Epiphany falls on MON
epiphany_2020 = self.cal.get_epiphany(2020)
self.assertEqual(epiphany_2020, date(2020, 1, 6))
# In 2021, it does not, so it's shifted to the next MON
epiphany_2021 = self.cal.get_epiphany(2021)
self.assertEqual(epiphany_2021, date(2021, 1, 11))
def test_saint_peter_and_saint_paul_monday(self):
# In 2020, Saint Peter and Saint Paul falls on MON
st_peter_paul_2020 = self.cal.get_saint_peter_and_saint_paul(2020)
self.assertEqual(st_peter_paul_2020, date(2020, 6, 29))
# In 2021, it does not, so it's shifted to the next MON
st_peter_paul_2021 = self.cal.get_saint_peter_and_saint_paul(2021)
self.assertEqual(st_peter_paul_2021, date(2021, 7, 5))
def test_assumption_monday(self):
# In 2021, Assumption falls on SUN, so it's shifted to MON
assumption_2021 = self.cal.get_assumption(2021)
self.assertEqual(assumption_2021, date(2021, 8, 16))
# In 2022, Assumption falls on MON
assumption_2022 = self.cal.get_assumption(2022)
self.assertEqual(assumption_2022, date(2022, 8, 15))
def test_day_of_the_races_monday(self):
# In 2020, Day of the races and hispanity falls on MON
day_races_2020 = self.cal.get_day_of_the_races(2020)
self.assertEqual(day_races_2020, date(2020, 10, 12))
# In 2021, It does not, so it's shifted to the next MON
day_races_2021 = self.cal.get_day_of_the_races(2021)
self.assertEqual(day_races_2021, date(2021, 10, 18))
def test_all_saints_monday(self):
# In 2021, The All Saints falls on MON
all_saints_2021 = self.cal.get_all_saints(2021)
self.assertEqual(all_saints_2021, date(2021, 11, 1))
# In 2022, It does not, so it's shifted to the next MON
all_saints_2022 = self.cal.get_all_saints(2022)
self.assertEqual(all_saints_2022, date(2022, 11, 7))
def test_cartagena_independence_monday(self):
# In 2019, The Cartagena Independance falls on MON
cartagena_2019 = self.cal.get_cartagena_independence(2019)
self.assertEqual(cartagena_2019, date(2019, 11, 11))
# In 2020, It does not, so it's shifted to the next MON
cartagena_2020 = self.cal.get_cartagena_independence(2020)
self.assertEqual(cartagena_2020, date(2020, 11, 16))
class MexicoTest(GenericCalendarTest):
cal_class = Mexico
def test_holidays_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 1, 1), holidays)
self.assertIn(date(2013, 2, 4), holidays) # Constitution day
self.assertIn(date(2013, 3, 18), holidays) # Benito Juárez's birthday
self.assertIn(date(2013, 5, 1), holidays) # Labour day
self.assertIn(date(2013, 9, 16), holidays) # Independence day
self.assertIn(date(2013, 11, 18), holidays) # Revolution day
self.assertIn(date(2013, 12, 25), holidays) # XMas
def test_shift_to_monday(self):
observed = self.cal.observed_holidays(2017)
# New year on Sunday -> shift
assert date(2017, 1, 2) in observed
observed = self.cal.observed_holidays(2016)
# XMas on sunday -> shift to monday
assert date(2016, 12, 26) in observed
# Same for Labour day
assert date(2016, 5, 2) in observed
def test_shift_to_friday(self):
observed = self.cal.observed_holidays(2021) | self.cal.observed_holidays(2022)
# January 1st 2022 is a saturday, so we shift to friday
assert date(2021, 12, 31) in observed
# Same for Labour day
assert date(2021, 4, 30) in observed
observed = self.cal.observed_holidays(2021)
# December 25th, 2022 is a saturday, so we shift to friday
assert date(2021, 12, 24) in observed
class PanamaTest(GenericCalendarTest):
cal_class = Panama
def test_holidays_2013(self):
holidays = self.cal.holidays_set(2013)
self.assertIn(date(2013, 1, 1), holidays)
self.assertIn(date(2013, 1, 9), holidays) # Martyrs day
self.assertIn(date(2013, 2, 12), holidays) # carnival tuesday
self.assertIn(date(2013, 3, 29), holidays) # good friday
self.assertIn(date(2013, 3, 30), holidays) # easter saturday
self.assertIn(date(2013, 3, 31), holidays) # easter sunday
self.assertIn(date(2013, 5, 1), holidays) # labour day
self.assertIn(date(2013, 11, 3), holidays) # independence day
self.assertIn(date(2013, 11, 5), holidays) # colon day
# Shout in Villa de los Santos
self.assertIn(date(2013, 11, 10), holidays)
self.assertIn(date(2013, 11, 28), holidays) # Independence from spain
self.assertIn(date(2013, 12, 8), holidays) # mother day
self.assertIn(date(2013, 12, 25), holidays) # XMas
class ParaguayTest(GenericCalendarTest):
cal_class = Paraguay
def test_holidays_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 1, 1), holidays)
self.assertIn(date(2019, 3, 1), holidays) # Heroes day
self.assertIn(date(2019, 4, 18), holidays) # Maundy thursday
self.assertIn(date(2019, 4, 19), holidays) # Good friday
self.assertIn(date(2019, 5, 1), holidays) # Labour day
self.assertIn(date(2019, 5, 14), holidays) # Independance day
self.assertIn(date(2019, 6, 12), holidays) # Chaco Armistice Day
self.assertIn(date(2019, 8, 15), holidays) # Founding of Asunción
self.assertIn(date(2019, 9, 29), holidays) # Boqueron Battle Victory
self.assertIn(date(2019, 12, 8), holidays) # Virgin of Caacupe
self.assertIn(date(2019, 12, 25), holidays) # XMas
def test_holidays_2017(self):
holidays = self.cal.holidays_set(2017)
# In 2017, Heroes day has been moved to February 27th
self.assertNotIn(date(2017, 3, 1), holidays)
self.assertIn(date(2017, 2, 27), holidays)
# Fundation of Asunción day: moved to August 14 for 2017
self.assertNotIn(date(2017, 8, 15), holidays)
self.assertIn(date(2017, 8, 14), holidays)
# Boqueron Battle Victory Day: moved to October 2nd for 2017
self.assertNotIn(date(2017, 9, 29), holidays)
self.assertIn(date(2017, 10, 2), holidays)
def test_immaculate_conception_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
label = holidays[date(2020, 12, 8)]
self.assertEqual(label, "Virgin of Caacupé Day")
class BarbadosTest(GenericCalendarTest):
cal_class = Barbados
def test_holidays_2009(self):
holidays = self.cal.holidays_set(2009)
self.assertIn(date(2009, 1, 1), holidays)
self.assertIn(date(2009, 1, 21), holidays) # Errol Barrow Day
self.assertIn(date(2009, 4, 10), holidays) # Good Friday
self.assertIn(date(2009, 4, 12), holidays) # Easter Sunday
self.assertIn(date(2009, 4, 13), holidays) # Easter Monday
self.assertIn(date(2009, 4, 28), holidays) # National Heroes Day
self.assertIn(date(2009, 5, 1), holidays) # Labour Day
self.assertIn(date(2009, 6, 1), holidays) # Whit Monday
self.assertIn(date(2009, 8, 1), holidays) # Emancipation Day
self.assertIn(date(2009, 8, 3), holidays) # Kabooment Day
self.assertIn(date(2009, 11, 30), holidays) # Independant Day
self.assertIn(date(2009, 12, 25), holidays) # Christmas Day
self.assertIn(date(2009, 12, 26), holidays) # Boxing Day
def test_holidays_2016(self):
holidays = self.cal.holidays_set(2016)
self.assertIn(date(2016, 1, 1), holidays)
self.assertIn(date(2016, 1, 21), holidays) # Errol Barrow Day
self.assertIn(date(2016, 3, 25), holidays) # Good Friday
self.assertIn(date(2016, 3, 28), holidays) # Easter Monday
self.assertIn(date(2016, 4, 28), holidays) # National Heroes Day
self.assertIn(date(2016, 5, 2), holidays) # Labour Day
self.assertIn(date(2016, 5, 16), holidays) # Whit Monday
self.assertIn(date(2016, 8, 1), holidays) # Kabooment Day
self.assertIn(date(2016, 8, 2), holidays) # Emancipation Day
self.assertIn(date(2016, 11, 30), holidays) # Independant Day
self.assertIn(date(2016, 12, 25), holidays) # Christmas Day
self.assertIn(date(2016, 12, 26), holidays) # Boxing Day
self.assertIn(date(2016, 12, 27), holidays) # Public Holiday
def test_holidays_2018(self):
holidays = self.cal.holidays_set(2018)
self.assertIn(date(2018, 1, 1), holidays)
self.assertIn(date(2018, 1, 21), holidays) # Errol Barrow Day
self.assertIn(date(2018, 1, 22), holidays) # Errol Barrow Day (shift)
self.assertIn(date(2018, 3, 30), holidays) # Good Friday
self.assertIn(date(2018, 4, 1), holidays) # Easter Sunday
self.assertIn(date(2018, 4, 2), holidays) # Easter Monday
self.assertIn(date(2018, 4, 28), holidays) # National Heroes Day
self.assertIn(date(2018, 5, 1), holidays) # Labour Day
self.assertIn(date(2018, 5, 21), holidays) # Whit Monday
self.assertIn(date(2018, 8, 1), holidays) # Emancipation Day
self.assertIn(date(2018, 8, 6), holidays) # Kabooment Day
self.assertIn(date(2018, 11, 30), holidays) # Independant Day
self.assertIn(date(2018, 12, 25), holidays) # Christmas Day
self.assertIn(date(2018, 12, 26), holidays) # Boxing Day
def test_holidays_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 1, 1), holidays)
self.assertIn(date(2019, 1, 21), holidays) # Errol Barrow Day
self.assertIn(date(2019, 4, 19), holidays) # Good Friday
self.assertIn(date(2019, 4, 21), holidays) # Easter Sunday
self.assertIn(date(2019, 4, 22), holidays) # Easter Monday
# National Heroes Day & shift
self.assertIn(date(2019, 4, 28), holidays)
self.assertIn(date(2019, 4, 29), holidays) # shft'd
self.assertIn(date(2019, 5, 1), holidays) # Labour Day
self.assertIn(date(2019, 6, 10), holidays) # Whit Monday
self.assertIn(date(2019, 8, 1), holidays) # Emancipation Day
self.assertIn(date(2019, 8, 5), holidays) # Kabooment Day
self.assertIn(date(2019, 11, 30), holidays) # Independant Day
self.assertIn(date(2019, 12, 25), holidays) # Christmas Day
self.assertIn(date(2019, 12, 26), holidays) # Boxing Day
def test_holidays_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 1, 1), holidays)
self.assertIn(date(2020, 1, 21), holidays) # Errol Barrow Day
self.assertIn(date(2020, 4, 10), holidays) # Good Friday
self.assertIn(date(2020, 4, 13), holidays) # Easter Monday
# National Heroes Day & shift
self.assertIn(date(2020, 4, 28), holidays)
self.assertIn(date(2020, 5, 1), holidays) # Labour Day
self.assertIn(date(2020, 6, 1), holidays) # Whit Monday
self.assertIn(date(2020, 8, 1), holidays) # Emancipation Day
self.assertIn(date(2020, 8, 3), holidays) # Kabooment Day
self.assertIn(date(2020, 11, 30), holidays) # Independant Day
self.assertIn(date(2020, 12, 25), holidays) # Christmas Day
self.assertIn(date(2020, 12, 26), holidays) # Boxing Day
def test_holidays_2021(self):
holidays = self.cal.holidays_set(2021)
self.assertIn(date(2021, 1, 1), holidays) # New Year's Day
self.assertIn(date(2021, 1, 4), holidays) # Public Holiday
self.assertIn(date(2021, 1, 5), holidays) # Public Holiday
self.assertIn(date(2021, 1, 21), holidays) # Errol Barrow Day
self.assertIn(date(2021, 4, 2), holidays) # Good Friday
self.assertIn(date(2021, 4, 5), holidays) # Easter Monday
self.assertIn(date(2021, 4, 28), holidays) # National Heroes Day
self.assertIn(date(2021, 5, 1), holidays) # Labour Day
self.assertIn(date(2021, 5, 24), holidays) # Whit Monday
self.assertIn(date(2021, 8, 2), holidays) # Kabooment Day
self.assertIn(date(2021, 8, 3), holidays) # Emancipation Day
self.assertIn(date(2021, 11, 30), holidays) # Independant Day
self.assertIn(date(2021, 12, 25), holidays) # Christmas Day
self.assertIn(date(2021, 12, 27), holidays) # Boxing Day
class ElSalvadorTest(GenericCalendarTest):
cal_class = ElSalvador
def test_holidays_2018(self):
holidays = self.cal.holidays_set(2018)
self.assertIn(date(2018, 1, 1), holidays) # New Year's Day
self.assertIn(date(2018, 3, 29), holidays) # Maundy Thursday
self.assertIn(date(2018, 3, 30), holidays) # Good Friday
self.assertIn(date(2018, 3, 31), holidays) # Holy Saturday
self.assertIn(date(2018, 5, 1), holidays) # Labor Day
self.assertIn(date(2018, 5, 10), holidays) # Mothers' Day
self.assertIn(date(2018, 6, 17), holidays) # Fathers' Day
# Celebrations of San Salvador
self.assertIn(date(2018, 8, 6), holidays)
self.assertIn(date(2018, 9, 15), holidays) # Independence Day
self.assertIn(date(2018, 11, 2), holidays) # All Saints Day
self.assertIn(date(2018, 12, 25), holidays) # XMas
def test_holidays_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 1, 1), holidays) # New Year's Day
self.assertIn(date(2019, 4, 18), holidays) # Maundy Thursday
self.assertIn(date(2019, 4, 19), holidays) # Good Friday
self.assertIn(date(2019, 4, 20), holidays) # Holy Saturday
self.assertIn(date(2019, 5, 1), holidays) # Labor Day
self.assertIn(date(2019, 5, 10), holidays) # Mothers' Day
self.assertIn(date(2019, 6, 17), holidays) # Fathers' Day
# Celebrations of San Salvador
self.assertIn(date(2019, 8, 6), holidays)
self.assertIn(date(2019, 9, 15), holidays) # Independence Day
self.assertIn(date(2019, 11, 2), holidays) # All Saints Day
self.assertIn(date(2019, 12, 25), holidays) # XMas
def test_holidays_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 1, 1), holidays) # New Year's Day
self.assertIn(date(2020, 4, 9), holidays) # Maundy Thursday
self.assertIn(date(2020, 4, 10), holidays) # Good Friday
self.assertIn(date(2020, 4, 11), holidays) # Holy Saturday
self.assertIn(date(2020, 5, 1), holidays) # Labor Day
self.assertIn(date(2020, 5, 10), holidays) # Mothers' Day
self.assertIn(date(2020, 6, 17), holidays) # Fathers' Day
# Celebrations of San Salvador
self.assertIn(date(2020, 8, 6), holidays)
self.assertIn(date(2020, 9, 15), holidays) # Independence Day
self.assertIn(date(2020, 11, 2), holidays) # All Saints Day
self.assertIn(date(2020, 12, 25), holidays) # XMas
def test_holidays_2021(self):
holidays = self.cal.holidays_set(2021)
self.assertIn(date(2021, 1, 1), holidays) # New Year's Day
self.assertIn(date(2021, 4, 2), holidays) # Maundy Thursday
self.assertIn(date(2021, 4, 2), holidays) # Good Friday
self.assertIn(date(2021, 4, 3), holidays) # Holy Saturday
self.assertIn(date(2021, 5, 1), holidays) # Labor Day
self.assertIn(date(2021, 5, 10), holidays) # Mothers' Day
self.assertIn(date(2021, 6, 17), holidays) # Fathers' Day
# Celebrations of San Salvador
self.assertIn(date(2021, 8, 6), holidays)
self.assertIn(date(2021, 9, 15), holidays) # Independence Day
self.assertIn(date(2021, 11, 2), holidays) # All Saints Day
self.assertIn(date(2021, 12, 25), holidays) # XMas
|