mirror of
https://github.com/documize/community.git
synced 2025-07-22 22:59:43 +02:00
initial commit
This commit is contained in:
commit
18933c6767
1841 changed files with 810642 additions and 0 deletions
170
vendor/github.com/google/go-github/github/misc_test.go
generated
vendored
Normal file
170
vendor/github.com/google/go-github/github/misc_test.go
generated
vendored
Normal file
|
@ -0,0 +1,170 @@
|
|||
// 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 (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"reflect"
|
||||
"testing"
|
||||
)
|
||||
|
||||
func TestMarkdown(t *testing.T) {
|
||||
setup()
|
||||
defer teardown()
|
||||
|
||||
input := &markdownRequest{
|
||||
Text: String("# text #"),
|
||||
Mode: String("gfm"),
|
||||
Context: String("google/go-github"),
|
||||
}
|
||||
mux.HandleFunc("/markdown", func(w http.ResponseWriter, r *http.Request) {
|
||||
v := new(markdownRequest)
|
||||
json.NewDecoder(r.Body).Decode(v)
|
||||
|
||||
testMethod(t, r, "POST")
|
||||
if !reflect.DeepEqual(v, input) {
|
||||
t.Errorf("Request body = %+v, want %+v", v, input)
|
||||
}
|
||||
fmt.Fprint(w, `<h1>text</h1>`)
|
||||
})
|
||||
|
||||
md, _, err := client.Markdown("# text #", &MarkdownOptions{
|
||||
Mode: "gfm",
|
||||
Context: "google/go-github",
|
||||
})
|
||||
if err != nil {
|
||||
t.Errorf("Markdown returned error: %v", err)
|
||||
}
|
||||
|
||||
if want := "<h1>text</h1>"; want != md {
|
||||
t.Errorf("Markdown returned %+v, want %+v", md, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestListEmojis(t *testing.T) {
|
||||
setup()
|
||||
defer teardown()
|
||||
|
||||
mux.HandleFunc("/emojis", func(w http.ResponseWriter, r *http.Request) {
|
||||
testMethod(t, r, "GET")
|
||||
fmt.Fprint(w, `{"+1": "+1.png"}`)
|
||||
})
|
||||
|
||||
emoji, _, err := client.ListEmojis()
|
||||
if err != nil {
|
||||
t.Errorf("ListEmojis returned error: %v", err)
|
||||
}
|
||||
|
||||
want := map[string]string{"+1": "+1.png"}
|
||||
if !reflect.DeepEqual(want, emoji) {
|
||||
t.Errorf("ListEmojis returned %+v, want %+v", emoji, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestAPIMeta(t *testing.T) {
|
||||
setup()
|
||||
defer teardown()
|
||||
|
||||
mux.HandleFunc("/meta", func(w http.ResponseWriter, r *http.Request) {
|
||||
testMethod(t, r, "GET")
|
||||
fmt.Fprint(w, `{"hooks":["h"], "git":["g"], "pages":["p"], "verifiable_password_authentication": true}`)
|
||||
})
|
||||
|
||||
meta, _, err := client.APIMeta()
|
||||
if err != nil {
|
||||
t.Errorf("APIMeta returned error: %v", err)
|
||||
}
|
||||
|
||||
want := &APIMeta{
|
||||
Hooks: []string{"h"},
|
||||
Git: []string{"g"},
|
||||
Pages: []string{"p"},
|
||||
VerifiablePasswordAuthentication: Bool(true),
|
||||
}
|
||||
if !reflect.DeepEqual(want, meta) {
|
||||
t.Errorf("APIMeta returned %+v, want %+v", meta, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestOctocat(t *testing.T) {
|
||||
setup()
|
||||
defer teardown()
|
||||
|
||||
input := "input"
|
||||
output := "sample text"
|
||||
|
||||
mux.HandleFunc("/octocat", func(w http.ResponseWriter, r *http.Request) {
|
||||
testMethod(t, r, "GET")
|
||||
testFormValues(t, r, values{"s": input})
|
||||
w.Header().Set("Content-Type", "application/octocat-stream")
|
||||
fmt.Fprint(w, output)
|
||||
})
|
||||
|
||||
got, _, err := client.Octocat(input)
|
||||
if err != nil {
|
||||
t.Errorf("Octocat returned error: %v", err)
|
||||
}
|
||||
|
||||
if want := output; got != want {
|
||||
t.Errorf("Octocat returned %+v, want %+v", got, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestZen(t *testing.T) {
|
||||
setup()
|
||||
defer teardown()
|
||||
|
||||
output := "sample text"
|
||||
|
||||
mux.HandleFunc("/zen", func(w http.ResponseWriter, r *http.Request) {
|
||||
testMethod(t, r, "GET")
|
||||
w.Header().Set("Content-Type", "text/plain;charset=utf-8")
|
||||
fmt.Fprint(w, output)
|
||||
})
|
||||
|
||||
got, _, err := client.Zen()
|
||||
if err != nil {
|
||||
t.Errorf("Zen returned error: %v", err)
|
||||
}
|
||||
|
||||
if want := output; got != want {
|
||||
t.Errorf("Zen returned %+v, want %+v", got, want)
|
||||
}
|
||||
}
|
||||
|
||||
func TestRepositoriesService_ListServiceHooks(t *testing.T) {
|
||||
setup()
|
||||
defer teardown()
|
||||
|
||||
mux.HandleFunc("/hooks", func(w http.ResponseWriter, r *http.Request) {
|
||||
testMethod(t, r, "GET")
|
||||
fmt.Fprint(w, `[{
|
||||
"name":"n",
|
||||
"events":["e"],
|
||||
"supported_events":["s"],
|
||||
"schema":[
|
||||
["a", "b"]
|
||||
]
|
||||
}]`)
|
||||
})
|
||||
|
||||
hooks, _, err := client.Repositories.ListServiceHooks()
|
||||
if err != nil {
|
||||
t.Errorf("Repositories.ListHooks returned error: %v", err)
|
||||
}
|
||||
|
||||
want := []*ServiceHook{{
|
||||
Name: String("n"),
|
||||
Events: []string{"e"},
|
||||
SupportedEvents: []string{"s"},
|
||||
Schema: [][]string{{"a", "b"}},
|
||||
}}
|
||||
if !reflect.DeepEqual(hooks, want) {
|
||||
t.Errorf("Repositories.ListServiceHooks returned %+v, want %+v", hooks, want)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue