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
|
# holidays
# --------
# A fast, efficient Python library for generating country, province and state
# specific sets of holidays on the fly. It aims to make determining whether a
# specific date is a holiday as fast and flexible as possible.
#
# Authors: Vacanza Team and individual contributors (see CONTRIBUTORS file)
# dr-prodigy <dr.prodigy.github@gmail.com> (c) 2017-2023
# ryanss <ryanssdev@icloud.com> (c) 2014-2017
# Website: https://github.com/vacanza/holidays
# License: MIT (see LICENSE file)
from unittest import TestCase
from holidays.countries.somalia import Somalia
from tests.common import CommonCountryTests
class TestSomalia(CommonCountryTests, TestCase):
@classmethod
def setUpClass(cls):
years = range(1961, 2050)
super().setUpClass(Somalia, years=years)
cls.no_estimated_holidays = Somalia(years=years, islamic_show_estimated=False)
def test_new_years_day(self):
self.assertHolidayName("New Year's Day", (f"{year}-01-01" for year in range(1961, 2050)))
def test_labour_day(self):
self.assertHolidayName("Labour Day", (f"{year}-05-01" for year in range(1961, 2050)))
def test_independence_day(self):
self.assertHolidayName("Independence Day", (f"{year}-06-26" for year in range(1961, 2050)))
def test_republic_day(self):
self.assertHolidayName("Republic Day", (f"{year}-07-01" for year in range(1961, 2050)))
def test_islamic_new_year(self):
name = "Islamic New Year"
self.assertHolidayName(
name,
self.no_estimated_holidays,
"2020-08-20",
"2021-08-09",
"2022-07-30",
"2023-07-19",
"2024-07-07",
"2025-06-26",
)
self.assertHolidayName(name, self.no_estimated_holidays, range(1961, 2050))
def test_ashura(self):
name = "Ashura"
self.assertHolidayName(
name,
self.no_estimated_holidays,
"2020-08-29",
"2021-08-18",
"2022-08-08",
"2023-07-28",
"2024-07-16",
"2025-07-05",
)
self.assertHolidayName(name, self.no_estimated_holidays, range(1961, 2050))
def test_prophets_birthday(self):
name = "Prophet's Birthday"
self.assertHolidayName(
name,
self.no_estimated_holidays,
"2020-10-29",
"2021-10-18",
"2022-10-08",
"2023-09-27",
"2024-09-15",
"2025-09-04",
)
self.assertHolidayName(name, self.no_estimated_holidays, range(1961, 2050))
def test_isra_and_miraj(self):
name = "Isra' and Mi'raj"
self.assertHolidayName(
name,
self.no_estimated_holidays,
"2020-03-22",
"2021-03-11",
"2022-02-28",
"2023-02-18",
"2024-02-08",
"2025-01-27",
)
self.assertHolidayName(name, self.no_estimated_holidays, range(1961, 2050))
def test_eid_al_fitr(self):
name = "Eid al-Fitr"
self.assertHolidayName(
name,
self.no_estimated_holidays,
"2020-05-24",
"2021-05-13",
"2022-05-02",
"2023-04-21",
"2024-04-10",
"2025-03-30",
)
self.assertHolidayName(name, self.no_estimated_holidays, range(1961, 2050))
def test_eid_al_adha(self):
name = "Eid al-Adha"
self.assertHolidayName(
name,
self.no_estimated_holidays,
"2020-07-31",
"2021-07-20",
"2022-07-09",
"2023-06-28",
"2024-06-16",
"2025-06-06",
)
self.assertHolidayName(name, self.no_estimated_holidays, range(1961, 2050))
def test_2018(self):
self.assertHolidaysInYear(
2018,
("2018-01-01", "New Year's Day"),
("2018-04-13", "Isra' and Mi'raj (estimated)"),
("2018-05-01", "Labour Day"),
("2018-06-15", "Eid al-Fitr (estimated)"),
("2018-06-26", "Independence Day"),
("2018-07-01", "Republic Day"),
("2018-08-21", "Eid al-Adha (estimated)"),
("2018-09-11", "Islamic New Year (estimated)"),
("2018-09-20", "Ashura (estimated)"),
("2018-11-20", "Prophet's Birthday (estimated)"),
)
|