add test for account command
parent
db7fcb38bb
commit
5ee5295be5
|
@ -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)
|
||||
}
|
||||
}
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue