forked from google/go-github
-
Notifications
You must be signed in to change notification settings - Fork 0
/
orgs_users_blocking_test.go
90 lines (75 loc) · 2.55 KB
/
orgs_users_blocking_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
// Copyright 2017 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"
"reflect"
"testing"
)
func TestOrganizationsService_ListBlockedUsers(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/orgs/o/blocks", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testHeader(t, r, "Accept", mediaTypeBlockUsersPreview)
testFormValues(t, r, values{"page": "2"})
fmt.Fprint(w, `[{
"login": "octocat"
}]`)
})
opt := &ListOptions{Page: 2}
blockedUsers, _, err := client.Organizations.ListBlockedUsers(context.Background(), "o", opt)
if err != nil {
t.Errorf("Organizations.ListBlockedUsers returned error: %v", err)
}
want := []*User{{Login: String("octocat")}}
if !reflect.DeepEqual(blockedUsers, want) {
t.Errorf("Organizations.ListBlockedUsers returned %+v, want %+v", blockedUsers, want)
}
}
func TestOrganizationsService_IsBlocked(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/orgs/o/blocks/u", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "GET")
testHeader(t, r, "Accept", mediaTypeBlockUsersPreview)
w.WriteHeader(http.StatusNoContent)
})
isBlocked, _, err := client.Organizations.IsBlocked(context.Background(), "o", "u")
if err != nil {
t.Errorf("Organizations.IsBlocked returned error: %v", err)
}
if want := true; isBlocked != want {
t.Errorf("Organizations.IsBlocked returned %+v, want %+v", isBlocked, want)
}
}
func TestOrganizationsService_BlockUser(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/orgs/o/blocks/u", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "PUT")
testHeader(t, r, "Accept", mediaTypeBlockUsersPreview)
w.WriteHeader(http.StatusNoContent)
})
_, err := client.Organizations.BlockUser(context.Background(), "o", "u")
if err != nil {
t.Errorf("Organizations.BlockUser returned error: %v", err)
}
}
func TestOrganizationsService_UnblockUser(t *testing.T) {
client, mux, _, teardown := setup()
defer teardown()
mux.HandleFunc("/orgs/o/blocks/u", func(w http.ResponseWriter, r *http.Request) {
testMethod(t, r, "DELETE")
testHeader(t, r, "Accept", mediaTypeBlockUsersPreview)
w.WriteHeader(http.StatusNoContent)
})
_, err := client.Organizations.UnblockUser(context.Background(), "o", "u")
if err != nil {
t.Errorf("Organizations.UnblockUser returned error: %v", err)
}
}