// 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, `

text

`) }) md, _, err := client.Markdown("# text #", &MarkdownOptions{ Mode: "gfm", Context: "google/go-github", }) if err != nil { t.Errorf("Markdown returned error: %v", err) } if want := "

text

"; 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"], "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"}, 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) } }