From 183e1ecadf34ad667e20dfc6229e7b1550ad1d7d Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Mon, 17 Apr 2017 00:09:35 +0900 Subject: [PATCH] add test for search command --- cmd/mstdn/cmd_search_test.go | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 cmd/mstdn/cmd_search_test.go diff --git a/cmd/mstdn/cmd_search_test.go b/cmd/mstdn/cmd_search_test.go new file mode 100644 index 0000000..f498592 --- /dev/null +++ b/cmd/mstdn/cmd_search_test.go @@ -0,0 +1,30 @@ +package main + +import ( + "fmt" + "net/http" + "strings" + "testing" + + "github.com/urfave/cli" +) + +func TestCmdSearch(t *testing.T) { + out := testWithServer( + func(w http.ResponseWriter, r *http.Request) { + switch r.URL.Path { + case "/api/v1/search": + fmt.Fprintln(w, `{"accounts": [{"id": 234, "username": "zzz"}], "contents":[], "hashtags": []}`) + return + } + http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) + return + }, + func(app *cli.App) { + app.Run([]string{"mstdn", "search", "zzz"}) + }, + ) + if !strings.Contains(out, "zzz") { + t.Fatalf("%q should be contained in output of command: %v", "zzz", out) + } +}