-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathholidays_test.go
128 lines (111 loc) · 2.36 KB
/
holidays_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
package dates
import (
"testing"
"time"
"github.com/hydronica/trial"
)
func TestMartinLutherKingJrDay(t *testing.T) {
fn := func(in time.Time) (time.Time, error) {
output := MartinLutherKingJrDay(in)
return output, nil
}
cases := trial.Cases[time.Time, time.Time]{
"2024": {
Input: Date(2024, 3, 20),
Expected: Date(2024, 1, 15),
},
"2023": {
Input: Date(2023, 12, 20),
Expected: Date(2023, 1, 16),
},
"2025": {
Input: Date(2025, 6, 20),
Expected: Date(2025, 1, 20),
},
}
trial.New(fn, cases).SubTest(t)
}
func TestNewYearsDay(t *testing.T) {
fn := func(in time.Time) (time.Time, error) {
output := NewYearsDay(in)
return output, nil
}
cases := trial.Cases[time.Time, time.Time]{
"2024": {
Input: Date(2024, 3, 20),
Expected: Date(2024, 1, 1),
},
"2023": {
Input: Date(2023, 12, 20),
Expected: Date(2023, 1, 1),
},
"2025": {
Input: Date(2025, 6, 20),
Expected: Date(2025, 1, 1),
},
}
trial.New(fn, cases).SubTest(t)
}
func TestNewYearsEve(t *testing.T) {
fn := func(in time.Time) (time.Time, error) {
output := NewYearsEve(in)
return output, nil
}
cases := trial.Cases[time.Time, time.Time]{
"2024": {
Input: Date(2024, 3, 20),
Expected: Date(2024, 12, 31),
},
"2023": {
Input: Date(2023, 12, 20),
Expected: Date(2023, 12, 31),
},
"2025": {
Input: Date(2025, 6, 20),
Expected: Date(2025, 12, 31),
},
}
trial.New(fn, cases).SubTest(t)
}
func TestMemorialDay(t *testing.T) {
fn := func(in time.Time) (time.Time, error) {
output := MemorialDay(in)
return output, nil
}
cases := trial.Cases[time.Time, time.Time]{
"2024": {
Input: Date(2024, 3, 20),
Expected: Date(2024, 5, 27),
},
"2023": {
Input: Date(2023, 12, 20),
Expected: Date(2023, 5, 29),
},
"2025": {
Input: Date(2025, 6, 20),
Expected: Date(2025, 5, 26),
},
}
trial.New(fn, cases).SubTest(t)
}
func TestLaborDay(t *testing.T) {
fn := func(in time.Time) (time.Time, error) {
output := LaborDay(in)
return output, nil
}
cases := trial.Cases[time.Time, time.Time]{
"2024": {
Input: Date(2024, 3, 20),
Expected: Date(2024, 9, 2),
},
"2023": {
Input: Date(2023, 12, 20),
Expected: Date(2023, 9, 4),
},
"2025": {
Input: Date(2025, 6, 20),
Expected: Date(2025, 9, 1),
},
}
trial.New(fn, cases).SubTest(t)
}