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
|
from datetime import date
from . import GenericCalendarTest
from ..europe import (
Spain, Andalusia, Aragon, Catalonia, CastileAndLeon, CastillaLaMancha,
CanaryIslands, Extremadura, Galicia, BalearicIslands, LaRioja,
CommunityofMadrid, Murcia, Navarre, Asturias, BasqueCountry, Cantabria,
ValencianCommunity
)
class SpainTest(GenericCalendarTest):
cal_class = Spain
def test_common_year_2015(self):
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 1, 1), holidays) # New Year
self.assertIn(date(2015, 1, 6), holidays) # Epiphany
self.assertIn(date(2015, 4, 3), holidays) # Good Friday
self.assertIn(date(2015, 5, 1), holidays) # Labour Day
self.assertIn(date(2015, 8, 15), holidays) # Assumption
self.assertIn(date(2015, 10, 12), holidays) # Nation Day
self.assertIn(date(2015, 11, 1), holidays) # All Saints
self.assertIn(date(2015, 12, 6), holidays) # Dia de la Constitución
self.assertIn(date(2015, 12, 8), holidays) # Immaculate conception
self.assertIn(date(2015, 12, 25), holidays) # Christmas
def test_common_year_2016(self):
holidays = self.cal.holidays_set(2016)
self.assertIn(date(2016, 1, 1), holidays) # New Year
self.assertIn(date(2016, 1, 6), holidays) # Epiphany
self.assertIn(date(2016, 3, 25), holidays) # Good Friday
self.assertIn(date(2016, 5, 1), holidays) # Labour Day
self.assertIn(date(2016, 8, 15), holidays) # Assumption
self.assertIn(date(2016, 10, 12), holidays) # Nation Day
self.assertIn(date(2016, 11, 1), holidays) # All Saints
self.assertIn(date(2016, 12, 6), holidays) # Dia de la Constitución
self.assertIn(date(2016, 12, 8), holidays) # Immaculate conception
self.assertIn(date(2016, 12, 25), holidays) # Christmas
def test_labour_day_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
self.assertEqual(
holidays[date(2020, 5, 1)], "Día del trabajador")
class AndalusiaTest(SpainTest):
cal_class = Andalusia
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 2, 28), holidays) # Andalusian National Day
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 2, 28), holidays) # Andalusian National Day
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertEqual(len(holidays), 12)
class AragonTest(SpainTest):
cal_class = Aragon
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 4, 23), holidays) # Regional Day
self.assertIn(date(2019, 12, 20), holidays) # Aragon Ombudsman Day
self.assertEqual(len(holidays), 13)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 4, 23), holidays) # Regional Day
self.assertIn(date(2020, 12, 20), holidays) # Aragon Ombudsman Day
self.assertEqual(len(holidays), 13)
class CastileAndLeonTest(SpainTest):
cal_class = CastileAndLeon
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 4, 23), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 4, 23), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
class CastillaLaManchaTest(SpainTest):
cal_class = CastillaLaMancha
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 5, 31), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 5, 31), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
class CanaryIslandsTest(SpainTest):
cal_class = CanaryIslands
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 5, 30), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 5, 30), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
class CataloniaTest(SpainTest):
cal_class = Catalonia
def test_region_year_2015(self):
holidays = self.cal.holidays_set(2015)
self.assertIn(date(2015, 4, 6), holidays) # Easter Monday
# Diada nacional de Catalunya
self.assertIn(date(2015, 9, 11), holidays)
# La revetlla de Sant Joan, Nit de Sant Joan
self.assertIn(date(2015, 6, 24), holidays)
self.assertIn(date(2015, 12, 26), holidays) # Sant Esteve
self.assertEqual(len(holidays), 14)
def test_region_year_2016(self):
holidays = self.cal.holidays_set(2016)
self.assertIn(date(2016, 3, 28), holidays) # Easter Monday
# Diada nacional de Catalunya
self.assertIn(date(2016, 9, 11), holidays)
# La revetlla de Sant Joan, Nit de Sant Joan
self.assertIn(date(2016, 6, 24), holidays)
self.assertIn(date(2016, 12, 26), holidays) # Sant Esteve
self.assertEqual(len(holidays), 14)
def test_boxing_day_label(self):
holidays = self.cal.holidays(2020)
holidays = dict(holidays)
self.assertEqual(holidays[date(2020, 12, 26)], "Sant Esteve")
class ExtremaduraTest(SpainTest):
cal_class = Extremadura
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 9, 8), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 9, 8), holidays) # Regional Day
self.assertEqual(len(holidays), 12)
class GaliciaTest(SpainTest):
cal_class = Galicia
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 5, 17), holidays) # Galician Literature Day
self.assertIn(date(2019, 7, 25), holidays) # Regional Day
self.assertEqual(len(holidays), 13)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 5, 17), holidays) # Galician Literature Day
self.assertIn(date(2020, 7, 25), holidays) # Regional Day
self.assertEqual(len(holidays), 13)
class BalearicIslandsTest(SpainTest):
cal_class = BalearicIslands
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 3, 1), holidays) # Balearic National Day
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 4, 22), holidays) # Easter Monday
self.assertEqual(len(holidays), 13)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 3, 1), holidays) # Balearic National Day
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 4, 13), holidays) # Easter Monday
self.assertEqual(len(holidays), 13)
class LaRiojaTest(SpainTest):
cal_class = LaRioja
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 6, 9), holidays) # Dia de La Rioja
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 6, 9), holidays) # Dia de La Rioja
self.assertEqual(len(holidays), 12)
class CommunityofMadridTest(SpainTest):
cal_class = CommunityofMadrid
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
# Fiesta de la Comunidad de Madrid
self.assertIn(date(2019, 5, 2), holidays)
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
# Fiesta de la Comunidad de Madrid
self.assertIn(date(2020, 5, 2), holidays)
self.assertEqual(len(holidays), 12)
class MurciaTest(SpainTest):
cal_class = Murcia
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 3, 19), holidays) # San José
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 6, 9), holidays) # Día de la Región de Murcia
self.assertEqual(len(holidays), 13)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 3, 19), holidays) # San José
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 6, 9), holidays) # Día de la Región de Murcia
self.assertEqual(len(holidays), 13)
class NavarreTest(SpainTest):
cal_class = Navarre
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 4, 22), holidays) # Easter Monday
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 4, 13), holidays) # Easter Monday
self.assertEqual(len(holidays), 12)
class AsturiasTest(SpainTest):
cal_class = Asturias
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 9, 8), holidays) # Día de Asturias
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 9, 8), holidays) # Día de Asturias
self.assertEqual(len(holidays), 12)
class BasqueCountryTest(SpainTest):
cal_class = BasqueCountry
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
self.assertIn(date(2019, 4, 22), holidays) # Easter Monday
self.assertIn(date(2019, 10, 25), holidays) # Euskadi Eguna
self.assertEqual(len(holidays), 13)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
self.assertIn(date(2020, 4, 13), holidays) # Easter Monday
self.assertIn(date(2020, 10, 25), holidays) # Euskadi Eguna
self.assertEqual(len(holidays), 13)
class CantabriaTest(SpainTest):
cal_class = Cantabria
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 4, 18), holidays) # Maundy/Holy Thursday
# Día de Cantabria o Día de La Montaña
self.assertIn(date(2019, 9, 15), holidays)
self.assertEqual(len(holidays), 12)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 4, 9), holidays) # Maundy/Holy Thursday
# Día de Cantabria o Día de La Montaña
self.assertIn(date(2020, 9, 15), holidays)
self.assertEqual(len(holidays), 12)
class ValencianCommunityTest(SpainTest):
cal_class = ValencianCommunity
def test_region_year_2019(self):
holidays = self.cal.holidays_set(2019)
self.assertIn(date(2019, 3, 19), holidays) # San José
self.assertIn(date(2019, 4, 22), holidays) # Easter Monday
# Dia de la Comunitat Valenciana
self.assertIn(date(2019, 10, 9), holidays)
self.assertEqual(len(holidays), 13)
def test_region_year_2020(self):
holidays = self.cal.holidays_set(2020)
self.assertIn(date(2020, 3, 19), holidays) # San José
self.assertIn(date(2020, 4, 13), holidays) # Easter Monday
# Dia de la Comunitat Valenciana
self.assertIn(date(2020, 10, 9), holidays)
self.assertEqual(len(holidays), 13)
|