158 lines
3.8 KiB
Go
158 lines
3.8 KiB
Go
package mastodon
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
)
|
|
|
|
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",
|
|
})
|
|
a, err := client.AccountUpdate(&Profile{
|
|
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)
|
|
}
|
|
}
|
|
|
|
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",
|
|
})
|
|
bl, err := client.GetBlocks()
|
|
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" {
|
|
t.Fatalf("want %q but %q", "bar", bl[0].Username)
|
|
}
|
|
}
|
|
|
|
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",
|
|
})
|
|
rel, err := client.AccountFollow(123)
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
rel, err = client.AccountFollow(1234567)
|
|
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",
|
|
})
|
|
rel, err := client.AccountUnfollow(123)
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
rel, err = client.AccountUnfollow(1234567)
|
|
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)
|
|
}
|
|
}
|
|
|
|
func TestGetFollowRequests(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",
|
|
})
|
|
fReqs, err := client.GetFollowRequests()
|
|
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" {
|
|
t.Fatalf("want %q but %q", "bar", fReqs[0].Username)
|
|
}
|
|
}
|