forked from google/go-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenterprise_actions_runners_test.go
121 lines (101 loc) · 3.7 KB
/
enterprise_actions_runners_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
// Copyright 2020 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package github
import (
"context"
"fmt"
"net/http"
"testing"
"time"
"github.com/google/go-cmp/cmp"
)
func TestEnterpriseService_CreateRegistrationToken(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/enterprises/e/actions/runners/registration-token", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "POST")
fmt.Fprint(w, `{"token":"LLBF3JGZDX3P5PMEXLND6TS6FCWO6","expires_at":"2020-01-22T12:13:35.123Z"}`)
})
ctx := context.Background()
token, _, err := client.Enterprise.CreateRegistrationToken(ctx, "e")
if err != nil {
t.Errorf("Enterprise.CreateRegistrationToken returned error: %v", err)
}
want := &RegistrationToken{Token: String("LLBF3JGZDX3P5PMEXLND6TS6FCWO6"),
ExpiresAt: &Timestamp{time.Date(2020, time.January, 22, 12, 13, 35,
123000000, time.UTC)}}
if !cmp.Equal(token, want) {
t.Errorf("Enterprise.CreateRegistrationToken returned %+v, want %+v", token, want)
}
const methodName = "CreateRegistrationToken"
testBadOptions(t, methodName, func() (err error) {
_, _, err = client.Enterprise.CreateRegistrationToken(ctx, "\n")
return err
})
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) {
got, resp, err := client.Enterprise.CreateRegistrationToken(ctx, "e")
if got != nil {
t.Errorf("testNewRequestAndDoFailure %v = %#v, want nil", methodName, got)
}
return resp, err
})
}
func TestEnterpriseService_ListRunners(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/enterprises/e/actions/runners", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testFormValues(t, r, values{"per_page": "2", "page": "2"})
fmt.Fprint(w, `{"total_count":2,"runners":[{"id":23,"name":"MBP","os":"macos","status":"online"},{"id":24,"name":"iMac","os":"macos","status":"offline"}]}`)
})
opts := &ListOptions{Page: 2, PerPage: 2}
ctx := context.Background()
runners, _, err := client.Enterprise.ListRunners(ctx, "e", opts)
if err != nil {
t.Errorf("Enterprise.ListRunners returned error: %v", err)
}
want := &Runners{
TotalCount: 2,
Runners: []*Runner{
{ID: Int64(23), Name: String("MBP"), OS: String("macos"), Status: String("online")},
{ID: Int64(24), Name: String("iMac"), OS: String("macos"), Status: String("offline")},
},
}
if !cmp.Equal(runners, want) {
t.Errorf("Actions.ListRunners returned %+v, want %+v", runners, want)
}
const methodName = "ListRunners"
testBadOptions(t, methodName, func() (err error) {
_, _, err = client.Enterprise.ListRunners(ctx, "\n", &ListOptions{})
return err
})
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) {
got, resp, err := client.Enterprise.ListRunners(ctx, "e", nil)
if got != nil {
t.Errorf("testNewRequestAndDoFailure %v = %#v, want nil", methodName, got)
}
return resp, err
})
}
func TestEnterpriseService_RemoveRunner(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/enterprises/o/actions/runners/21", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "DELETE")
})
ctx := context.Background()
_, err := client.Enterprise.RemoveRunner(ctx, "o", 21)
if err != nil {
t.Errorf("Actions.RemoveRunner returned error: %v", err)
}
const methodName = "RemoveRunner"
testBadOptions(t, methodName, func() (err error) {
_, err = client.Enterprise.RemoveRunner(ctx, "\n", 21)
return err
})
testNewRequestAndDoFailure(t, methodName, client, func() (*Response, error) {
return client.Enterprise.RemoveRunner(ctx, "o", 21)
})
}