-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
feiertage_test.go
154 lines (128 loc) · 4.79 KB
/
feiertage_test.go
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
package feiertage
import (
"fmt"
"sort"
"testing"
"time"
)
//-------------------------
//-------------------------
func compareAndFail(t *testing.T, f Feiertag, d string) {
if f.Format("02.01.2006") != d {
fmt.Printf("%s but should be %s\n", f, d)
t.Fail()
}
}
func TestOstern(t *testing.T) {
compareAndFail(t, Ostern(2015), "05.04.2015")
compareAndFail(t, Ostern(2016), "27.03.2016")
}
func TestOsternAusnahmejahre(t *testing.T) {
compareAndFail(t, Ostern(1954), "18.04.1954")
compareAndFail(t, Ostern(1981), "19.04.1981")
}
func TestSommerWinterZeit(t *testing.T) {
compareAndFail(t, BeginnSommerzeit(2015), "29.03.2015")
compareAndFail(t, BeginnWinterzeit(2016), "30.10.2016")
}
func TestBußUndBetTag(t *testing.T) {
compareAndFail(t, BußUndBettag(2015), "18.11.2015")
compareAndFail(t, BußUndBettag(2016), "16.11.2016")
}
func TestVorwärtssucher(t *testing.T) {
compareAndFail(t, Erntedankfest(2015), "04.10.2015")
compareAndFail(t, Erntedankfest(2016), "02.10.2016")
compareAndFail(t, Muttertag(2015), "10.05.2015")
compareAndFail(t, Muttertag(2016), "08.05.2016")
}
func TestAdvent(t *testing.T) {
// VierterAdvent=Rückwärtssucher
compareAndFail(t, VierterAdvent(2016), "18.12.2016")
compareAndFail(t, DritterAdvent(2016), "11.12.2016")
compareAndFail(t, ZweiterAdvent(2016), "04.12.2016")
compareAndFail(t, ErsterAdvent(2016), "27.11.2016")
compareAndFail(t, VierterAdvent(2006), "24.12.2006")
compareAndFail(t, VierterAdvent(2006), VierterAdvent(2006).Format("02.01.2006"))
}
//-------------------------
func TestFeiertage(t *testing.T) {
fun := []func(int) Feiertag{Neujahr, Epiphanias, HeiligeDreiKönige, Valentinstag,
InternationalerTagDesGedenkensAnDieOpferDesHolocaust, Josefitag, Weiberfastnacht,
Karnevalssonntag, Rosenmontag, Fastnacht, Aschermittwoch, InternationalerFrauentag,
Palmsonntag, Gründonnerstag, Karfreitag, Ostern, BeginnSommerzeit, Ostermontag,
Walpurgisnacht, TagDerArbeit, TagDerBefreiung, Staatsfeiertag,
InternationalerTagDerPressefreiheit, Florianitag, Muttertag, ChristiHimmelfahrt,
Vatertag, Pfingsten, Pfingstmontag, Dreifaltigkeitssonntag, Fronleichnam, TagDesMeeres,
MariäHimmelfahrt, Rupertitag, InternationalerKindertag, Weltflüchtlingstag,
TagDerDeutschenEinheit, TagDerVolksabstimmung, Nationalfeiertag, Erntedankfest,
Reformationstag, Halloween, BeginnWinterzeit, Allerheiligen, Allerseelen, Martinstag,
Karnevalsbeginn, Leopolditag, Weltkindertag, BußUndBettag, Thanksgiving, Blackfriday,
Volkstrauertag, Nikolaus, MariäUnbefleckteEmpfängnis, MariäEmpfängnis, Totensonntag,
ErsterAdvent, ZweiterAdvent, DritterAdvent, VierterAdvent, Heiligabend, Weihnachten,
Christtag, Stefanitag, ZweiterWeihnachtsfeiertag, Silvester}
years := []int{2015, 2016}
for _, y := range years {
feiern := []Feiertag{}
for _, f := range fun {
feiern = append(feiern, f(y))
}
sort.Sort(ByDate(feiern))
for _, f := range feiern {
fmt.Println(f)
}
}
}
func TestThanksgiving(t *testing.T) {
//Vorwärtssucher Donnerstag
compareAndFail(t, Thanksgiving(2010), "25.11.2010")
compareAndFail(t, Thanksgiving(2014), "27.11.2014")
compareAndFail(t, Thanksgiving(2015), "26.11.2015")
compareAndFail(t, Thanksgiving(2016), "24.11.2016")
compareAndFail(t, Thanksgiving(2017), "23.11.2017")
compareAndFail(t, Thanksgiving(2018), "22.11.2018")
compareAndFail(t, Thanksgiving(2019), "28.11.2019")
compareAndFail(t, Thanksgiving(2025), "27.11.2025")
compareAndFail(t, Thanksgiving(2028), "23.11.2028")
compareAndFail(t, Thanksgiving(2029), "22.11.2029")
}
func TestDifferentTimeFormat(t *testing.T) {
tf := defaultTimeFormat
SetDefaultTimeFormat("2006.01.02")
d := "2010.11.25 Thanksgiving (US)"
f := Thanksgiving(2010)
if fmt.Sprint(f) != d {
fmt.Printf("%s but should be %s\n", f, d)
t.Fail()
}
SetDefaultTimeFormat(tf) //back to old default
}
func TestDStandardTimeZone(t *testing.T) {
tf := defaultTimeFormat
SetDefaultTimeFormat(time.UnixDate)
d := "Sun May 12 00:00:00 UTC 2019 Muttertag"
f := Muttertag(2019)
if fmt.Sprint(f) != d {
fmt.Printf("%s but should be %s\n", f, d)
t.Fail()
}
SetDefaultTimeFormat(tf) //back to old default
}
func TestDifferentTimeZone(t *testing.T) {
tf := defaultTimeFormat
SetDefaultTimeFormat(time.UnixDate)
tz := defaultTimeZone
secondsEastOfUTC := int((8 * time.Hour).Seconds())
cet := time.FixedZone("CET", secondsEastOfUTC)
// it would simpler to look for a timezone, but that works only on systems
// having a timezone database present and that woud make the test flaky.
// cet, err := time.LoadLocation("Europe/Berlin")
SetDefaultTimeZone(cet)
d := "Sun May 12 00:00:00 CET 2019 Muttertag"
f := Muttertag(2019)
if fmt.Sprint(f) != d {
fmt.Printf("%s but should be %s\n", f, d)
t.Fail()
}
SetDefaultTimeZone(tz) //back to old default
SetDefaultTimeFormat(tf) //back to old default
}