2017-04-16 15:28:07 +02:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCmdInstance(t *testing.T) {
|
|
|
|
out := testWithServer(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.URL.Path != "/api/v1/instance" {
|
|
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
2017-04-16 15:50:00 +02:00
|
|
|
fmt.Fprintln(w, `{"title": "zzz"}`)
|
2017-04-16 15:28:07 +02:00
|
|
|
return
|
|
|
|
},
|
|
|
|
func(app *cli.App) {
|
|
|
|
app.Run([]string{"mstdn", "instance"})
|
|
|
|
},
|
|
|
|
)
|
|
|
|
if !strings.Contains(out, "zzz") {
|
|
|
|
t.Fatalf("%q should be contained in output of instance command: %v", "zzz", out)
|
|
|
|
}
|
|
|
|
}
|