go-mastodon/cmd/mstdn/cmd_notification_test.go

30 lines
647 B
Go
Raw Normal View History

2017-04-16 15:50:09 +02:00
package main
import (
"fmt"
"net/http"
"strings"
"testing"
"github.com/urfave/cli"
)
func TestCmdNotification(t *testing.T) {
out := testWithServer(
func(w http.ResponseWriter, r *http.Request) {
if r.URL.Path != "/api/v1/notifications" {
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
}
fmt.Fprintln(w, `[{"type": "rebloged", "status": {"content": "foo"}}]`)
return
},
func(app *cli.App) {
app.Run([]string{"mstdn", "notification"})
},
)
if !strings.Contains(out, "rebloged") {
t.Fatalf("%q should be contained in output of instance command: %v", "rebloged", out)
}
}