add test for follow command

pull/28/head
Yasuhiro Matsumoto 2017-04-19 18:25:01 +09:00
parent 93d28c8b04
commit 909a57c5ea
2 changed files with 39 additions and 5 deletions

View File

@ -0,0 +1,34 @@
package main
import (
"fmt"
"net/http"
"testing"
"github.com/urfave/cli"
)
func TestCmdFollow(t *testing.T) {
ok := false
testWithServer(
func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/v1/accounts/search":
fmt.Fprintln(w, `[{"id": 123}]`)
return
case "/api/v1/accounts/123/follow":
fmt.Fprintln(w, `{"id": 123}`)
ok = true
return
}
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
},
func(app *cli.App) {
app.Run([]string{"mstdn", "follow", "mattn"})
},
)
if !ok {
t.Fatal("something wrong to sequence to follow account")
}
}

View File

@ -239,16 +239,16 @@ func makeApp() *cli.App {
Usage: "search content",
Action: cmdSearch,
},
{
Name: "followers",
Usage: "show followers",
Action: cmdFollowers,
},
{
Name: "follow",
Usage: "follow account",
Action: cmdFollow,
},
{
Name: "followers",
Usage: "show followers",
Action: cmdFollowers,
},
{
Name: "upload",
Usage: "upload file",