2017-04-14 17:26:13 +02:00
|
|
|
package mastodon
|
|
|
|
|
|
|
|
import (
|
2017-04-17 04:10:29 +02:00
|
|
|
"context"
|
2017-04-14 17:26:13 +02:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2017-04-15 18:01:15 +02:00
|
|
|
func TestAccountUpdate(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
fmt.Fprintln(w, `{"Username": "zzz"}`)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
a, err := client.AccountUpdate(context.Background(), &Profile{
|
2017-04-15 18:01:15 +02:00
|
|
|
DisplayName: String("display_name"),
|
|
|
|
Note: String("note"),
|
|
|
|
Avatar: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAADrCAYAAAA...",
|
|
|
|
Header: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUoAAADrCAYAAAA...",
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if a.Username != "zzz" {
|
|
|
|
t.Fatalf("want %q but %q", "zzz", a.Username)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-14 19:30:47 +02:00
|
|
|
func TestGetBlocks(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
fmt.Fprintln(w, `[{"Username": "foo"}, {"Username": "bar"}]`)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
bl, err := client.GetBlocks(context.Background())
|
2017-04-14 19:30:47 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if len(bl) != 2 {
|
|
|
|
t.Fatalf("result should be two: %d", len(bl))
|
|
|
|
}
|
|
|
|
if bl[0].Username != "foo" {
|
|
|
|
t.Fatalf("want %q but %q", "foo", bl[0].Username)
|
|
|
|
}
|
|
|
|
if bl[1].Username != "bar" {
|
2017-04-17 06:03:31 +02:00
|
|
|
t.Fatalf("want %q but %q", "bar", bl[1].Username)
|
2017-04-14 19:30:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-14 17:26:13 +02:00
|
|
|
func TestAccountFollow(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.URL.Path != "/api/v1/accounts/1234567/follow" {
|
|
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w, `{"id":1234567,"following":true}`)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
rel, err := client.AccountFollow(context.Background(), 123)
|
2017-04-14 17:26:13 +02:00
|
|
|
if err == nil {
|
2017-04-14 19:31:22 +02:00
|
|
|
t.Fatalf("should be fail: %v", err)
|
2017-04-14 17:26:13 +02:00
|
|
|
}
|
2017-04-17 04:10:29 +02:00
|
|
|
rel, err = client.AccountFollow(context.Background(), 1234567)
|
2017-04-14 17:26:13 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if rel.ID != 1234567 {
|
|
|
|
t.Fatalf("want %d but %d", 1234567, rel.ID)
|
|
|
|
}
|
|
|
|
if !rel.Following {
|
|
|
|
t.Fatalf("want %t but %t", true, rel.Following)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAccountUnfollow(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.URL.Path != "/api/v1/accounts/1234567/unfollow" {
|
|
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w, `{"id":1234567,"following":false}`)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
rel, err := client.AccountUnfollow(context.Background(), 123)
|
2017-04-14 17:26:13 +02:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("should be fail: %v", err)
|
|
|
|
}
|
2017-04-17 04:10:29 +02:00
|
|
|
rel, err = client.AccountUnfollow(context.Background(), 1234567)
|
2017-04-14 17:26:13 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if rel.ID != 1234567 {
|
|
|
|
t.Fatalf("want %d but %d", 1234567, rel.ID)
|
|
|
|
}
|
|
|
|
if rel.Following {
|
|
|
|
t.Fatalf("want %t but %t", false, rel.Following)
|
|
|
|
}
|
|
|
|
}
|
2017-04-14 21:08:43 +02:00
|
|
|
|
|
|
|
func TestGetFollowRequests(t *testing.T) {
|
2017-04-16 17:07:31 +02:00
|
|
|
canErr := true
|
2017-04-14 21:08:43 +02:00
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2017-04-16 17:07:31 +02:00
|
|
|
if canErr {
|
|
|
|
canErr = false
|
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
2017-04-14 21:08:43 +02:00
|
|
|
fmt.Fprintln(w, `[{"Username": "foo"}, {"Username": "bar"}]`)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
_, err := client.GetFollowRequests(context.Background())
|
2017-04-16 17:07:31 +02:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("should be fail: %v", err)
|
|
|
|
}
|
2017-04-17 04:10:29 +02:00
|
|
|
fReqs, err := client.GetFollowRequests(context.Background())
|
2017-04-14 21:08:43 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if len(fReqs) != 2 {
|
|
|
|
t.Fatalf("result should be two: %d", len(fReqs))
|
|
|
|
}
|
|
|
|
if fReqs[0].Username != "foo" {
|
|
|
|
t.Fatalf("want %q but %q", "foo", fReqs[0].Username)
|
|
|
|
}
|
|
|
|
if fReqs[1].Username != "bar" {
|
2017-04-17 05:55:40 +02:00
|
|
|
t.Fatalf("want %q but %q", "bar", fReqs[1].Username)
|
2017-04-14 21:08:43 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-16 17:04:25 +02:00
|
|
|
|
|
|
|
func TestFollowRequestAuthorize(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.URL.Path != "/api/v1/follow_requests/1234567/authorize" {
|
|
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
err := client.FollowRequestAuthorize(context.Background(), 123)
|
2017-04-16 17:04:25 +02:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("should be fail: %v", err)
|
|
|
|
}
|
2017-04-17 04:10:29 +02:00
|
|
|
err = client.FollowRequestAuthorize(context.Background(), 1234567)
|
2017-04-16 17:04:25 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFollowRequestReject(t *testing.T) {
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if r.URL.Path != "/api/v1/follow_requests/1234567/reject" {
|
|
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
2017-04-17 04:10:29 +02:00
|
|
|
err := client.FollowRequestReject(context.Background(), 123)
|
2017-04-16 17:04:25 +02:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("should be fail: %v", err)
|
|
|
|
}
|
2017-04-17 04:10:29 +02:00
|
|
|
err = client.FollowRequestReject(context.Background(), 1234567)
|
2017-04-16 17:04:25 +02:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2017-04-17 05:49:55 +02:00
|
|
|
|
|
|
|
func TestGetMutes(t *testing.T) {
|
|
|
|
canErr := true
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if canErr {
|
|
|
|
canErr = false
|
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w, `[{"Username": "foo"}, {"Username": "bar"}]`)
|
|
|
|
return
|
|
|
|
}))
|
|
|
|
defer ts.Close()
|
|
|
|
|
|
|
|
client := NewClient(&Config{
|
|
|
|
Server: ts.URL,
|
|
|
|
ClientID: "foo",
|
|
|
|
ClientSecret: "bar",
|
|
|
|
AccessToken: "zoo",
|
|
|
|
})
|
|
|
|
_, err := client.GetMutes(context.Background())
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("should be fail: %v", err)
|
|
|
|
}
|
|
|
|
mutes, err := client.GetMutes(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("should not be fail: %v", err)
|
|
|
|
}
|
|
|
|
if len(mutes) != 2 {
|
|
|
|
t.Fatalf("result should be two: %d", len(mutes))
|
|
|
|
}
|
|
|
|
if mutes[0].Username != "foo" {
|
|
|
|
t.Fatalf("want %q but %q", "foo", mutes[0].Username)
|
|
|
|
}
|
|
|
|
if mutes[1].Username != "bar" {
|
|
|
|
t.Fatalf("want %q but %q", "bar", mutes[1].Username)
|
|
|
|
}
|
|
|
|
}
|