mirror of
https://github.com/documize/community.git
synced 2025-07-21 06:09:42 +02:00
73 lines
2 KiB
Go
73 lines
2 KiB
Go
// Copyright 2016 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 (
|
|
"fmt"
|
|
"net/http"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestRepositoriesService_ListInvitations(t *testing.T) {
|
|
setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repositories/1/invitations", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "GET")
|
|
testHeader(t, r, "Accept", mediaTypeRepositoryInvitationsPreview)
|
|
testFormValues(t, r, values{"page": "2"})
|
|
fmt.Fprintf(w, `[{"id":1}, {"id":2}]`)
|
|
})
|
|
|
|
opt := &ListOptions{Page: 2}
|
|
got, _, err := client.Repositories.ListInvitations(1, opt)
|
|
if err != nil {
|
|
t.Errorf("Repositories.ListInvitations returned error: %v", err)
|
|
}
|
|
|
|
want := []*RepositoryInvitation{{ID: Int(1)}, {ID: Int(2)}}
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Errorf("Repositories.ListInvitations = %+v, want %+v", got, want)
|
|
}
|
|
}
|
|
|
|
func TestRepositoriesService_DeleteInvitation(t *testing.T) {
|
|
setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repositories/1/invitations/2", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "DELETE")
|
|
testHeader(t, r, "Accept", mediaTypeRepositoryInvitationsPreview)
|
|
w.WriteHeader(http.StatusNoContent)
|
|
})
|
|
|
|
_, err := client.Repositories.DeleteInvitation(1, 2)
|
|
if err != nil {
|
|
t.Errorf("Repositories.DeleteInvitation returned error: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestRepositoriesService_UpdateInvitation(t *testing.T) {
|
|
setup()
|
|
defer teardown()
|
|
|
|
mux.HandleFunc("/repositories/1/invitations/2", func(w http.ResponseWriter, r *http.Request) {
|
|
testMethod(t, r, "PATCH")
|
|
testHeader(t, r, "Accept", mediaTypeRepositoryInvitationsPreview)
|
|
fmt.Fprintf(w, `{"id":1}`)
|
|
})
|
|
|
|
got, _, err := client.Repositories.UpdateInvitation(1, 2, "write")
|
|
if err != nil {
|
|
t.Errorf("Repositories.UpdateInvitation returned error: %v", err)
|
|
}
|
|
|
|
want := &RepositoryInvitation{ID: Int(1)}
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Errorf("Repositories.UpdateInvitation = %+v, want %+v", got, want)
|
|
}
|
|
}
|