-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheoldate_test.go
122 lines (119 loc) · 2.49 KB
/
eoldate_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
package eoldate
import (
"testing"
"time"
)
func TestClient_IsSupportedSoftwareVersion(t *testing.T) {
c := NewClient()
type args struct {
softwareName string
version string
}
tests := []struct {
name string
args args
want bool
wantErr bool
}{
{name: "test IsSupportedSoftwareVersion", args: args{
softwareName: "dotnetfx",
version: "4.0.30319",
}, want: false, wantErr: false},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, _, _, err := c.IsSupportedSoftwareVersion(tt.args.softwareName, tt.args.version)
if (err != nil) != tt.wantErr {
t.Errorf("IsSupportedSoftwareVersion() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("IsSupportedSoftwareVersion() got = %v, want %v", got, tt.want)
}
})
}
}
func TestCalculateTimeDifference(t *testing.T) {
now := time.Now()
type args struct {
endDate time.Time
}
tests := []struct {
name string
args args
want int
want1 int
want2 int
}{
{
name: "One year ago",
args: args{endDate: now.AddDate(-1, 0, 0)},
want: 1,
want1: 0,
want2: 0,
},
{
name: "Six months ago",
args: args{endDate: now.AddDate(0, -6, 0)},
want: 0,
want1: 6,
want2: 0,
},
{
name: "One month and 15 days ago",
args: args{endDate: now.AddDate(0, -1, -15)},
want: 0,
want1: 1,
want2: 15,
},
{
name: "One year and one month in the future",
args: args{endDate: now.AddDate(1, 1, 0)},
want: 1,
want1: 1,
want2: 0,
},
{
name: "Six months in the future",
args: args{endDate: now.AddDate(0, 6, 0)},
want: 0,
want1: 6,
want2: 0,
},
{
name: "15 days in the future",
args: args{endDate: now.AddDate(0, 0, 15)},
want: 0,
want1: 0,
want2: 15,
},
{
name: "Current date",
args: args{endDate: now},
want: 0,
want1: 0,
want2: 0,
},
{
name: "Two years, three months, and 10 days ago",
args: args{endDate: now.AddDate(-2, -3, -10)},
want: 2,
want1: 3,
want2: 10,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1, got2 := CalculateTimeDifference(tt.args.endDate)
if got != tt.want {
t.Errorf("CalculateTimeDifference() got = %v, want %v", got, tt.want)
}
if got1 != tt.want1 {
t.Errorf("CalculateTimeDifference() got1 = %v, want %v", got1, tt.want1)
}
if got2 != tt.want2 {
t.Errorf("CalculateTimeDifference() got2 = %v, want %v", got2, tt.want2)
}
})
}
}