This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtimeentry_test.go
81 lines (79 loc) · 1.63 KB
/
timeentry_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
package api
import (
"testing"
"time"
)
func Test_timeEntryUrl(t *testing.T) {
type args struct {
connection Connection
params TimeEntryParams
}
tests := []struct {
name string
args args
want string
wantErr bool
}{
{
name: "Minimal Data",
args: args{
Connection{
ApiUrl: "URL",
Token: "TOKEN",
},
TimeEntryParams{
From: time.Time{},
To: time.Time{}.Add(time.Hour),
Tasks: nil,
},
},
want: "URL/entries/format/json/api_token/TOKEN/from/0001-01-01/to/0001-01-01/task_ids/",
wantErr: false,
}, {
name: "To Date Before From Date",
args: args{
Connection{
ApiUrl: "URL",
Token: "TOKEN",
},
TimeEntryParams{
From: time.Date(2021, 01, 01, 0, 0, 0, 0, time.Local),
To: time.Date(2020, 01, 01, 0, 0, 0, 0, time.Local),
Tasks: nil,
},
},
want: "",
wantErr: true,
}, {
name: "With Tasks",
args: args{
Connection{
ApiUrl: "URL",
Token: "TOKEN",
},
TimeEntryParams{
From: time.Time{},
To: time.Time{}.Add(time.Hour),
Tasks: []Task{
{TaskID: 1},
{TaskID: 2},
},
},
},
want: "URL/entries/format/json/api_token/TOKEN/from/0001-01-01/to/0001-01-01/task_ids/1,2",
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := timeEntryUrl(tt.args.connection, tt.args.params)
if (err != nil) != tt.wantErr {
t.Errorf("timeEntryUrl() error = %v, wantErr %v", err, tt.wantErr)
return
}
if got != tt.want {
t.Errorf("timeEntryUrl() got = %v, want %v", got, tt.want)
}
})
}
}