mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-10 16:40:04 +00:00
164 lines
4.8 KiB
Go
164 lines
4.8 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"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestIssuesService_ListAssignees(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/assignees", 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}
|
|
assignees, _, err := client.Issues.ListAssignees(context.Background(), "o", "r", opt)
|
|
if err != nil {
|
|
t.Errorf("Issues.ListAssignees returned error: %v", err)
|
|
}
|
|
|
|
want := []*User{{ID: Int64(1)}}
|
|
if !reflect.DeepEqual(assignees, want) {
|
|
t.Errorf("Issues.ListAssignees returned %+v, want %+v", assignees, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_ListAssignees_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Issues.ListAssignees(context.Background(), "%", "r", nil)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestIssuesService_IsAssignee_true(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/assignees/u", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
})
|
|
|
|
assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
|
|
if err != nil {
|
|
t.Errorf("Issues.IsAssignee returned error: %v", err)
|
|
}
|
|
if want := true; assignee != want {
|
|
t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_IsAssignee_false(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/assignees/u", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
w.WriteHeader(http.StatusNotFound)
|
|
})
|
|
|
|
assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
|
|
if err != nil {
|
|
t.Errorf("Issues.IsAssignee returned error: %v", err)
|
|
}
|
|
if want := false; assignee != want {
|
|
t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_IsAssignee_error(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/assignees/u", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
http.Error(w, "BadRequest", http.StatusBadRequest)
|
|
})
|
|
|
|
assignee, _, err := client.Issues.IsAssignee(context.Background(), "o", "r", "u")
|
|
if err == nil {
|
|
t.Errorf("Expected HTTP 400 response")
|
|
}
|
|
if want := false; assignee != want {
|
|
t.Errorf("Issues.IsAssignee returned %+v, want %+v", assignee, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_IsAssignee_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Issues.IsAssignee(context.Background(), "%", "r", "u")
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestIssuesService_AddAssignees(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/issues/1/assignees", func(w http.ResponseWriter, r *http.Request) {
|
|
var assignees struct {
|
|
Assignees []string `json:"assignees,omitempty"`
|
|
}
|
|
json.NewDecoder(r.Body).Decode(&assignees)
|
|
|
|
testMethod(t, r, "POST")
|
|
want := []string{"user1", "user2"}
|
|
if !reflect.DeepEqual(assignees.Assignees, want) {
|
|
t.Errorf("assignees = %+v, want %+v", assignees, want)
|
|
}
|
|
fmt.Fprint(w, `{"number":1,"assignees":[{"login":"user1"},{"login":"user2"}]}`)
|
|
})
|
|
|
|
got, _, err := client.Issues.AddAssignees(context.Background(), "o", "r", 1, []string{"user1", "user2"})
|
|
if err != nil {
|
|
t.Errorf("Issues.AddAssignees returned error: %v", err)
|
|
}
|
|
|
|
want := &Issue{Number: Int(1), Assignees: []*User{{Login: String("user1")}, {Login: String("user2")}}}
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Errorf("Issues.AddAssignees = %+v, want %+v", got, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_RemoveAssignees(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/issues/1/assignees", func(w http.ResponseWriter, r *http.Request) {
|
|
var assignees struct {
|
|
Assignees []string `json:"assignees,omitempty"`
|
|
}
|
|
json.NewDecoder(r.Body).Decode(&assignees)
|
|
|
|
testMethod(t, r, "DELETE")
|
|
want := []string{"user1", "user2"}
|
|
if !reflect.DeepEqual(assignees.Assignees, want) {
|
|
t.Errorf("assignees = %+v, want %+v", assignees, want)
|
|
}
|
|
fmt.Fprint(w, `{"number":1,"assignees":[]}`)
|
|
})
|
|
|
|
got, _, err := client.Issues.RemoveAssignees(context.Background(), "o", "r", 1, []string{"user1", "user2"})
|
|
if err != nil {
|
|
t.Errorf("Issues.RemoveAssignees returned error: %v", err)
|
|
}
|
|
|
|
want := &Issue{Number: Int(1), Assignees: []*User{}}
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Errorf("Issues.RemoveAssignees = %+v, want %+v", got, want)
|
|
}
|
|
}
|