This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
forked from grezar/go-circleci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob_test.go
128 lines (104 loc) · 3.03 KB
/
job_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 circleci
import (
"context"
"fmt"
"net/http"
"testing"
"github.com/google/go-cmp/cmp"
)
func Test_jobs_Get(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
projectSlug := "gh/org1/prj1"
jobNumber := "1"
mux.HandleFunc(fmt.Sprintf("/project/%s/job/%s", projectSlug, jobNumber), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testHeader(t, r, "Accept", "application/json")
testHeader(t, r, "Circle-Token", client.token)
fmt.Fprint(w, `{"name": "job1"}`)
})
ctx := context.Background()
j, err := client.Jobs.Get(ctx, projectSlug, jobNumber)
if err != nil {
t.Errorf("Jobs.Get got error: %v", err)
}
want := &Job{
Name: "job1",
}
if !cmp.Equal(j, want) {
t.Errorf("Jobs.Get got %+v, want %+v", j, want)
}
}
func Test_jobs_Cancel(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
projectSlug := "gh/org1/prj1"
jobNumber := "1"
mux.HandleFunc(fmt.Sprintf("/project/%s/job/%s/cancel", projectSlug, jobNumber), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
testHeader(t, r, "Accept", "application/json")
testHeader(t, r, "Circle-Token", client.token)
fmt.Fprint(w, `{"message": "success"}`)
})
ctx := context.Background()
err := client.Jobs.Cancel(ctx, projectSlug, jobNumber)
if err != nil {
t.Errorf("Jobs.Cancel got error: %v", err)
}
}
func Test_jobs_ListArtifacts(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
projectSlug := "gh/org1/prj1"
jobNumber := "1"
mux.HandleFunc(fmt.Sprintf("/project/%s/%s/artifacts", projectSlug, jobNumber), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testHeader(t, r, "Accept", "application/json")
testHeader(t, r, "Circle-Token", client.token)
fmt.Fprint(w, `{"items": [{"path": "path", "node_index": 0, "url": "url"}]}`)
})
ctx := context.Background()
j, err := client.Jobs.ListArtifacts(ctx, projectSlug, jobNumber)
if err != nil {
t.Errorf("Jobs.ListArtifacts got error: %v", err)
}
want := &ArtifactList{
Items: []*Artifact{
{
Path: "path",
NodeIndex: 0,
URL: "url",
},
},
}
if !cmp.Equal(j, want) {
t.Errorf("Jobs.ListArtifacts got %+v, want %+v", j, want)
}
}
func Test_jobs_ListTestMetadata(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
projectSlug := "gh/org1/prj1"
jobNumber := "1"
mux.HandleFunc(fmt.Sprintf("/project/%s/%s/tests", projectSlug, jobNumber), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testHeader(t, r, "Accept", "application/json")
testHeader(t, r, "Circle-Token", client.token)
fmt.Fprint(w, `{"items": [{"message": "message"}]}`)
})
ctx := context.Background()
tml, err := client.Jobs.ListTestMetadata(ctx, projectSlug, jobNumber)
if err != nil {
t.Errorf("Jobs.ListTestMetadata got error: %v", err)
}
want := &TestMetadataList{
Items: []*TestMetadata{
{
Message: "message",
},
},
}
if !cmp.Equal(tml, want) {
t.Errorf("Jobs.ListTestMetadata got %+v, want %+v", tml, want)
}
}