-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtimeentry_test.go
130 lines (113 loc) · 2.97 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
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
package api_test
import (
"testing"
"github.com/lucassabreu/clockify-cli/api"
"github.com/lucassabreu/clockify-cli/api/dto"
. "github.com/lucassabreu/clockify-cli/internal/testhlp"
"github.com/lucassabreu/clockify-cli/pkg/timehlp"
)
func TestCreateTimeEntry(t *testing.T) {
uri := "/v1/workspaces/" + exampleID + "/time-entries"
end := MustParseTime(timehlp.SimplerTimeFormat, "2022-11-07 11:00")
bTrue := true
bFalse := false
tts := []testCase{
&simpleTestCase{
name: "workspace is required",
param: api.CreateTimeEntryParam{},
err: "workspace is required",
},
&simpleTestCase{
name: "workspace is valid",
param: api.CreateTimeEntryParam{
Workspace: "w",
},
err: "workspace .* is not valid ID",
},
&simpleTestCase{
name: "with just start time",
param: api.CreateTimeEntryParam{
Workspace: exampleID,
Start: MustParseTime(timehlp.SimplerTimeFormat,
"2022-11-07 10:00"),
},
requestMethod: "post",
requestUrl: uri,
requestBody: `{"start":"2022-11-07T10:00:00Z"}`,
responseStatus: 200,
responseBody: `{"id": "1"}`,
result: dto.TimeEntryImpl{ID: "1"},
},
&simpleTestCase{
name: "with all options (billable)",
param: api.CreateTimeEntryParam{
Workspace: exampleID,
Start: MustParseTime(timehlp.SimplerTimeFormat,
"2022-11-07 10:00"),
End: &end,
Billable: &bTrue,
Description: "new entry",
ProjectID: "p",
TaskID: "t",
TagIDs: []string{"tag1", "tag2"},
},
requestMethod: "post",
requestUrl: uri,
requestBody: `{
"start":"2022-11-07T10:00:00Z",
"end":"2022-11-07T11:00:00Z",
"billable": true,
"description": "new entry",
"projectId": "p",
"taskId": "t",
"tagIds": ["tag1","tag2"]
}`,
responseStatus: 200,
responseBody: `{"id": "1"}`,
result: dto.TimeEntryImpl{ID: "1"},
},
&simpleTestCase{
name: "not billable",
param: api.CreateTimeEntryParam{
Workspace: exampleID,
Start: MustParseTime(timehlp.SimplerTimeFormat,
"2022-11-07 10:00"),
Billable: &bFalse,
Description: "new entry",
ProjectID: "p",
},
requestMethod: "post",
requestUrl: uri,
requestBody: `{
"start":"2022-11-07T10:00:00Z",
"billable": false,
"description": "new entry",
"projectId": "p"
}`,
responseStatus: 200,
responseBody: `{"id": "1"}`,
result: dto.TimeEntryImpl{ID: "1"},
},
&simpleTestCase{
name: "error response",
param: api.CreateTimeEntryParam{
Workspace: exampleID,
Start: MustParseTime(timehlp.SimplerTimeFormat,
"2022-11-07 10:00"),
},
requestMethod: "post",
requestUrl: uri,
requestBody: `{"start":"2022-11-07T10:00:00Z"}`,
responseStatus: 400,
responseBody: `{"code": 10, "message":"error"}`,
err: `error`,
},
}
for _, tt := range tts {
runClient(t, tt,
func(c api.Client, p interface{}) (interface{}, error) {
return c.CreateTimeEntry(
p.(api.CreateTimeEntryParam))
})
}
}