32 lines
554 B
Go
32 lines
554 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"net/http"
|
||
|
"net/http/httptest"
|
||
|
|
||
|
"github.com/mattn/go-mastodon"
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
func testWithServer(h http.HandlerFunc, testFunc func(*cli.App)) string {
|
||
|
ts := httptest.NewServer(h)
|
||
|
defer ts.Close()
|
||
|
|
||
|
client := mastodon.NewClient(&mastodon.Config{
|
||
|
Server: ts.URL,
|
||
|
ClientID: "foo",
|
||
|
ClientSecret: "bar",
|
||
|
AccessToken: "zoo",
|
||
|
})
|
||
|
|
||
|
var buf bytes.Buffer
|
||
|
app := makeApp()
|
||
|
app.Writer = &buf
|
||
|
app.Metadata = map[string]interface{}{
|
||
|
"client": client,
|
||
|
}
|
||
|
testFunc(app)
|
||
|
return buf.String()
|
||
|
}
|