forked from shuheiktgw/go-travis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requests_test.go
152 lines (119 loc) · 5.51 KB
/
requests_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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// Copyright (c) 2015 Ableton AG, Berlin. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package travis
import (
"context"
"fmt"
"net/http"
"reflect"
"testing"
)
const testRequestId = 12345
func TestRequestsService_FindByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/request/%d", testRepoId, testRequestId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"include": "request.repository"})
fmt.Fprint(w, `{"id":1,"state":"processed","result":"rejected"}`)
})
opt := RequestOption{Include: []string{"request.repository"}}
repo, _, err := client.Requests.FindByRepoId(context.Background(), testRepoId, testRequestId, &opt)
if err != nil {
t.Errorf("RequestService.FindByRepoId returned error: %v", err)
}
want := &Request{Id: Uint(1), State: String("processed"), Result: String("rejected")}
if !reflect.DeepEqual(repo, want) {
t.Errorf("RequestService.FindByRepoId returned %+v, want %+v", repo, want)
}
}
func TestRequestsService_FindByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/request/%d", testRepoSlug, testRequestId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"include": "request.repository"})
fmt.Fprint(w, `{"id":1,"state":"processed","result":"rejected"}`)
})
opt := RequestOption{Include: []string{"request.repository"}}
repo, _, err := client.Requests.FindByRepoSlug(context.Background(), testRepoSlug, testRequestId, &opt)
if err != nil {
t.Errorf("RequestService.FindByRepoId returned error: %v", err)
}
want := &Request{Id: Uint(1), State: String("processed"), Result: String("rejected")}
if !reflect.DeepEqual(repo, want) {
t.Errorf("RequestService.FindByRepoId returned %+v, want %+v", repo, want)
}
}
func TestRequestsService_ListByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/requests", testRepoId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"limit": "5", "offset": "5", "include": "request.repository"})
fmt.Fprint(w, `{"requests": [{"id":1,"state":"processed","result":"rejected"}]}`)
})
opt := RequestsOption{Limit: 5, Offset: 5, Include: []string{"request.repository"}}
repos, _, err := client.Requests.ListByRepoId(context.Background(), testRepoId, &opt)
if err != nil {
t.Errorf("RequestsService.FindByRepoId returned error: %v", err)
}
want := []*Request{{Id: Uint(1), State: String("processed"), Result: String("rejected")}}
if !reflect.DeepEqual(repos, want) {
t.Errorf("RequestsService.FindByRepoId returned %+v, want %+v", repos, want)
}
}
func TestRequestsService_ListByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/requests", testRepoSlug), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodGet)
testFormValues(t, r, values{"limit": "5", "offset": "5", "include": "request.repository"})
fmt.Fprint(w, `{"requests": [{"id":1,"state":"processed","result":"rejected"}]}`)
})
opt := RequestsOption{Limit: 5, Offset: 5, Include: []string{"request.repository"}}
repos, _, err := client.Requests.ListByRepoSlug(context.Background(), testRepoSlug, &opt)
if err != nil {
t.Errorf("RequestsService.FindByRepoSlug returned error: %v", err)
}
want := []*Request{{Id: Uint(1), State: String("processed"), Result: String("rejected")}}
if !reflect.DeepEqual(repos, want) {
t.Errorf("RequestsService.FindByRepoSlug returned %+v, want %+v", repos, want)
}
}
func TestRequestsService_CreateByRepoId(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%d/requests", testRepoId), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
testBody(t, r, `{"config":"testConfig","message":"testMessage","branch":"master","token":"testToken"}`+"\n")
fmt.Fprint(w, `{"request": {"id":1,"message":"message!"}}`)
})
repo, _, err := client.Requests.CreateByRepoId(context.Background(), testRepoId, &RequestBody{Config: "testConfig", Message: "testMessage", Branch: "master", Token: "testToken"})
if err != nil {
t.Errorf("RequestsService.CreateByRepoId returned error: %v", err)
}
want := &Request{Id: Uint(1), Message: String("message!")}
if !reflect.DeepEqual(repo, want) {
t.Errorf("RequestsService.CreateByRepoId returned %+v, want %+v", repo, want)
}
}
func TestRequestsService_CreateByRepoSlug(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc(fmt.Sprintf("/repo/%s/requests", testRepoSlug), func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, http.MethodPost)
testBody(t, r, `{"config":"testConfig","message":"testMessage","branch":"master","token":"testToken"}`+"\n")
fmt.Fprint(w, `{"request": {"id":1,"message":"message!"}}`)
})
repo, _, err := client.Requests.CreateByRepoSlug(context.Background(), testRepoSlug, &RequestBody{Config: "testConfig", Message: "testMessage", Branch: "master", Token: "testToken"})
if err != nil {
t.Errorf("RequestsService.CreateByRepoSlug returned error: %v", err)
}
want := &Request{Id: Uint(1), Message: String("message!")}
if !reflect.DeepEqual(repo, want) {
t.Errorf("RequestsService.CreateByRepoSlug returned %+v, want %+v", repo, want)
}
}