2017-04-19 11:32:20 +02:00
|
|
|
package mastodon
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetNotifications(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.URL.Path {
|
|
|
|
case "/api/v1/notifications":
|
|
|
|
fmt.Fprintln(w, `[{"id": 122, "action_taken": false}, {"id": 123, "action_taken": true}]`)
|
|
|
|
return
|
|
|
|
case "/api/v1/notifications/123":
|
|
|
|
fmt.Fprintln(w, `{"id": 123, "action_taken": true}`)
|
|
|
|
return
|
|
|
|
case "/api/v1/notifications/clear":
|
|
|
|
fmt.Fprintln(w, `{}`)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-05-06 16:03:19 +02:00
|
|
|
ns, err := client.GetNotifications(context.Background(), nil)
|
2017-04-19 11:32:20 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if len(ns) != 2 {
|
|
|
|
t.Fatalf("result should be two: %d", len(ns))
|
|
|
|
}
|
2017-10-25 07:24:00 +02:00
|
|
|
if ns[0].ID != "122" {
|
2017-10-25 07:35:34 +02:00
|
|
|
t.Fatalf("want %v but %v", "122", ns[0].ID)
|
2017-04-19 11:32:20 +02:00
|
|
|
}
|
2017-10-25 07:24:00 +02:00
|
|
|
if ns[1].ID != "123" {
|
2017-10-25 07:35:34 +02:00
|
|
|
t.Fatalf("want %v but %v", "123", ns[1].ID)
|
2017-04-19 11:32:20 +02:00
|
|
|
}
|
2017-10-25 07:35:34 +02:00
|
|
|
n, err := client.GetNotification(context.Background(), "123")
|
2017-04-19 11:32:20 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
2017-10-25 07:24:00 +02:00
|
|
|
if n.ID != "123" {
|
2017-10-25 07:35:34 +02:00
|
|
|
t.Fatalf("want %v but %v", "123", n.ID)
|
2017-04-19 11:32:20 +02:00
|
|
|
}
|
|
|
|
err = client.ClearNotifications(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
}
|