mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-10 16:40:04 +00:00
238 lines
6.5 KiB
Go
238 lines
6.5 KiB
Go
// Copyright 2013 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 TestUsersService_ListFollowers_authenticatedUser(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/user/followers", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
testFormValues(t, r, values{"page": "2"})
|
|
fmt.Fprint(w, `[{"id":1}]`)
|
|
})
|
|
|
|
opt := &ListOptions{Page: 2}
|
|
users, _, err := client.Users.ListFollowers(context.Background(), "", opt)
|
|
if err != nil {
|
|
t.Errorf("Users.ListFollowers returned error: %v", err)
|
|
}
|
|
|
|
want := []*User{{ID: Int64(1)}}
|
|
if !reflect.DeepEqual(users, want) {
|
|
t.Errorf("Users.ListFollowers returned %+v, want %+v", users, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_ListFollowers_specifiedUser(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/users/u/followers", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
fmt.Fprint(w, `[{"id":1}]`)
|
|
})
|
|
|
|
users, _, err := client.Users.ListFollowers(context.Background(), "u", nil)
|
|
if err != nil {
|
|
t.Errorf("Users.ListFollowers returned error: %v", err)
|
|
}
|
|
|
|
want := []*User{{ID: Int64(1)}}
|
|
if !reflect.DeepEqual(users, want) {
|
|
t.Errorf("Users.ListFollowers returned %+v, want %+v", users, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_ListFollowers_invalidUser(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Users.ListFollowers(context.Background(), "%", nil)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestUsersService_ListFollowing_authenticatedUser(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/user/following", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
testFormValues(t, r, values{"page": "2"})
|
|
fmt.Fprint(w, `[{"id":1}]`)
|
|
})
|
|
|
|
opts := &ListOptions{Page: 2}
|
|
users, _, err := client.Users.ListFollowing(context.Background(), "", opts)
|
|
if err != nil {
|
|
t.Errorf("Users.ListFollowing returned error: %v", err)
|
|
}
|
|
|
|
want := []*User{{ID: Int64(1)}}
|
|
if !reflect.DeepEqual(users, want) {
|
|
t.Errorf("Users.ListFollowing returned %+v, want %+v", users, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_ListFollowing_specifiedUser(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/users/u/following", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
fmt.Fprint(w, `[{"id":1}]`)
|
|
})
|
|
|
|
users, _, err := client.Users.ListFollowing(context.Background(), "u", nil)
|
|
if err != nil {
|
|
t.Errorf("Users.ListFollowing returned error: %v", err)
|
|
}
|
|
|
|
want := []*User{{ID: Int64(1)}}
|
|
if !reflect.DeepEqual(users, want) {
|
|
t.Errorf("Users.ListFollowing returned %+v, want %+v", users, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_ListFollowing_invalidUser(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Users.ListFollowing(context.Background(), "%", nil)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestUsersService_IsFollowing_authenticatedUser(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/user/following/t", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
w.WriteHeader(http.StatusNoContent)
|
|
})
|
|
|
|
following, _, err := client.Users.IsFollowing(context.Background(), "", "t")
|
|
if err != nil {
|
|
t.Errorf("Users.IsFollowing returned error: %v", err)
|
|
}
|
|
if want := true; following != want {
|
|
t.Errorf("Users.IsFollowing returned %+v, want %+v", following, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_IsFollowing_specifiedUser(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/users/u/following/t", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
w.WriteHeader(http.StatusNoContent)
|
|
})
|
|
|
|
following, _, err := client.Users.IsFollowing(context.Background(), "u", "t")
|
|
if err != nil {
|
|
t.Errorf("Users.IsFollowing returned error: %v", err)
|
|
}
|
|
if want := true; following != want {
|
|
t.Errorf("Users.IsFollowing returned %+v, want %+v", following, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_IsFollowing_false(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/users/u/following/t", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
w.WriteHeader(http.StatusNotFound)
|
|
})
|
|
|
|
following, _, err := client.Users.IsFollowing(context.Background(), "u", "t")
|
|
if err != nil {
|
|
t.Errorf("Users.IsFollowing returned error: %v", err)
|
|
}
|
|
if want := false; following != want {
|
|
t.Errorf("Users.IsFollowing returned %+v, want %+v", following, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_IsFollowing_error(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/users/u/following/t", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
http.Error(w, "BadRequest", http.StatusBadRequest)
|
|
})
|
|
|
|
following, _, err := client.Users.IsFollowing(context.Background(), "u", "t")
|
|
if err == nil {
|
|
t.Errorf("Expected HTTP 400 response")
|
|
}
|
|
if want := false; following != want {
|
|
t.Errorf("Users.IsFollowing returned %+v, want %+v", following, want)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_IsFollowing_invalidUser(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Users.IsFollowing(context.Background(), "%", "%")
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestUsersService_Follow(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/user/following/u", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "PUT")
|
|
})
|
|
|
|
_, err := client.Users.Follow(context.Background(), "u")
|
|
if err != nil {
|
|
t.Errorf("Users.Follow returned error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_Follow_invalidUser(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, err := client.Users.Follow(context.Background(), "%")
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestUsersService_Unfollow(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/user/following/u", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "DELETE")
|
|
})
|
|
|
|
_, err := client.Users.Unfollow(context.Background(), "u")
|
|
if err != nil {
|
|
t.Errorf("Users.Follow returned error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestUsersService_Unfollow_invalidUser(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, err := client.Users.Unfollow(context.Background(), "%")
|
|
testURLParseError(t, err)
|
|
}
|