mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-10 16:40:04 +00:00
178 lines
5 KiB
Go
178 lines
5 KiB
Go
// Copyright 2014 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_ListMilestones(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/milestones", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
testHeader(t, r, "Accept", mediaTypeGraphQLNodeIDPreview)
|
|
testFormValues(t, r, values{
|
|
"state": "closed",
|
|
"sort": "due_date",
|
|
"direction": "asc",
|
|
"page": "2",
|
|
})
|
|
fmt.Fprint(w, `[{"number":1}]`)
|
|
})
|
|
|
|
opt := &MilestoneListOptions{"closed", "due_date", "asc", ListOptions{Page: 2}}
|
|
milestones, _, err := client.Issues.ListMilestones(context.Background(), "o", "r", opt)
|
|
if err != nil {
|
|
t.Errorf("IssuesService.ListMilestones returned error: %v", err)
|
|
}
|
|
|
|
want := []*Milestone{{Number: Int(1)}}
|
|
if !reflect.DeepEqual(milestones, want) {
|
|
t.Errorf("IssuesService.ListMilestones returned %+v, want %+v", milestones, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_ListMilestones_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Issues.ListMilestones(context.Background(), "%", "r", nil)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestIssuesService_GetMilestone(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/milestones/1", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
testHeader(t, r, "Accept", mediaTypeGraphQLNodeIDPreview)
|
|
fmt.Fprint(w, `{"number":1}`)
|
|
})
|
|
|
|
milestone, _, err := client.Issues.GetMilestone(context.Background(), "o", "r", 1)
|
|
if err != nil {
|
|
t.Errorf("IssuesService.GetMilestone returned error: %v", err)
|
|
}
|
|
|
|
want := &Milestone{Number: Int(1)}
|
|
if !reflect.DeepEqual(milestone, want) {
|
|
t.Errorf("IssuesService.GetMilestone returned %+v, want %+v", milestone, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_GetMilestone_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Issues.GetMilestone(context.Background(), "%", "r", 1)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestIssuesService_CreateMilestone(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
input := &Milestone{Title: String("t")}
|
|
|
|
mux.HandleFunc("/repos/o/r/milestones", func(w http.ResponseWriter, r *http.Request) {
|
|
v := new(Milestone)
|
|
json.NewDecoder(r.Body).Decode(v)
|
|
|
|
testMethod(t, r, "POST")
|
|
testHeader(t, r, "Accept", mediaTypeGraphQLNodeIDPreview)
|
|
if !reflect.DeepEqual(v, input) {
|
|
t.Errorf("Request body = %+v, want %+v", v, input)
|
|
}
|
|
|
|
fmt.Fprint(w, `{"number":1}`)
|
|
})
|
|
|
|
milestone, _, err := client.Issues.CreateMilestone(context.Background(), "o", "r", input)
|
|
if err != nil {
|
|
t.Errorf("IssuesService.CreateMilestone returned error: %v", err)
|
|
}
|
|
|
|
want := &Milestone{Number: Int(1)}
|
|
if !reflect.DeepEqual(milestone, want) {
|
|
t.Errorf("IssuesService.CreateMilestone returned %+v, want %+v", milestone, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_CreateMilestone_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Issues.CreateMilestone(context.Background(), "%", "r", nil)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestIssuesService_EditMilestone(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
input := &Milestone{Title: String("t")}
|
|
|
|
mux.HandleFunc("/repos/o/r/milestones/1", func(w http.ResponseWriter, r *http.Request) {
|
|
v := new(Milestone)
|
|
json.NewDecoder(r.Body).Decode(v)
|
|
|
|
testMethod(t, r, "PATCH")
|
|
testHeader(t, r, "Accept", mediaTypeGraphQLNodeIDPreview)
|
|
if !reflect.DeepEqual(v, input) {
|
|
t.Errorf("Request body = %+v, want %+v", v, input)
|
|
}
|
|
|
|
fmt.Fprint(w, `{"number":1}`)
|
|
})
|
|
|
|
milestone, _, err := client.Issues.EditMilestone(context.Background(), "o", "r", 1, input)
|
|
if err != nil {
|
|
t.Errorf("IssuesService.EditMilestone returned error: %v", err)
|
|
}
|
|
|
|
want := &Milestone{Number: Int(1)}
|
|
if !reflect.DeepEqual(milestone, want) {
|
|
t.Errorf("IssuesService.EditMilestone returned %+v, want %+v", milestone, want)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_EditMilestone_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, _, err := client.Issues.EditMilestone(context.Background(), "%", "r", 1, nil)
|
|
testURLParseError(t, err)
|
|
}
|
|
|
|
func TestIssuesService_DeleteMilestone(t *testing.T) {
|
|
client, mux, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repos/o/r/milestones/1", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "DELETE")
|
|
})
|
|
|
|
_, err := client.Issues.DeleteMilestone(context.Background(), "o", "r", 1)
|
|
if err != nil {
|
|
t.Errorf("IssuesService.DeleteMilestone returned error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestIssuesService_DeleteMilestone_invalidOwner(t *testing.T) {
|
|
client, _, _, teardown := setup()
|
|
defer teardown()
|
|
|
|
_, err := client.Issues.DeleteMilestone(context.Background(), "%", "r", 1)
|
|
testURLParseError(t, err)
|
|
}
|