add test for account command

pull/19/head
Yasuhiro Matsumoto 2017-04-17 00:00:12 +09:00
parent db7fcb38bb
commit 5ee5295be5
5 changed files with 34 additions and 4 deletions

View File

@ -0,0 +1,30 @@
package main
import (
"fmt"
"net/http"
"strings"
"testing"
"github.com/urfave/cli"
)
func TestCmdAccount(t *testing.T) {
out := testWithServer(
func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/v1/accounts/verify_credentials":
fmt.Fprintln(w, `{"username": "zzz"}`)
return
}
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
},
func(app *cli.App) {
app.Run([]string{"mstdn", "account"})
},
)
if !strings.Contains(out, "zzz") {
t.Fatalf("%q should be contained in output of command: %v", "zzz", out)
}
}

View File

@ -28,6 +28,6 @@ func TestCmdFollowers(t *testing.T) {
},
)
if !strings.Contains(out, "zzz") {
t.Fatalf("%q should be contained in output of instance command: %v", "zzz", out)
t.Fatalf("%q should be contained in output of command: %v", "zzz", out)
}
}

View File

@ -25,6 +25,6 @@ func TestCmdInstance(t *testing.T) {
},
)
if !strings.Contains(out, "zzz") {
t.Fatalf("%q should be contained in output of instance command: %v", "zzz", out)
t.Fatalf("%q should be contained in output of command: %v", "zzz", out)
}
}

View File

@ -25,6 +25,6 @@ func TestCmdNotification(t *testing.T) {
},
)
if !strings.Contains(out, "rebloged") {
t.Fatalf("%q should be contained in output of instance command: %v", "rebloged", out)
t.Fatalf("%q should be contained in output of command: %v", "rebloged", out)
}
}

View File

@ -25,6 +25,6 @@ func TestCmdTimeline(t *testing.T) {
},
)
if !strings.Contains(out, "zzz") {
t.Fatalf("%q should be contained in output of instance command: %v", "zzz", out)
t.Fatalf("%q should be contained in output of command: %v", "zzz", out)
}
}