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