go-mastodon/cmd/mstdn/cmd_search_test.go

33 lines
779 B
Go
Raw Normal View History

2017-04-16 17:09:35 +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 17:09:35 +02:00
)
func TestCmdSearch(t *testing.T) {
out := testWithServer(
func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/v2/search":
fmt.Fprintln(w, `{"accounts": [{"id": 234, "acct": "zzz"}], "statuses":[{"id": 345, "content": "yyy"}], "hashtags": [{"name": "www"}, {"name": "わろす"}]}`)
2017-04-16 17:09:35 +02:00
return
}
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
},
func(app *cli.App) {
app.Run([]string{"mstdn", "search", "zzz"})
},
)
2017-04-20 17:50:39 +02:00
for _, s := range []string{"zzz", "yyy", "www", "わろす"} {
if !strings.Contains(out, s) {
t.Fatalf("%q should be contained in output of command: %v", s, out)
}
2017-04-16 17:09:35 +02:00
}
}