go-mastodon/cmd/mstdn/cmd_upload_test.go

31 lines
607 B
Go
Raw Normal View History

2017-04-19 08:00:26 +02:00
package main
import (
"fmt"
"net/http"
"strings"
"testing"
2022-11-27 05:24:42 +01:00
"github.com/urfave/cli/v2"
2017-04-19 08:00:26 +02:00
)
func TestCmdUpload(t *testing.T) {
out := testWithServer(
func(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/v1/media":
2017-04-20 12:14:24 +02:00
fmt.Fprintln(w, `{"id": 123}`)
2017-04-19 08:00:26 +02:00
return
}
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
return
},
func(app *cli.App) {
app.Run([]string{"mstdn", "upload", "../../testdata/logo.png"})
},
)
if !strings.Contains(out, "123") {
t.Fatalf("%q should be contained in output of command: %v", "123", out)
}
}