282 lines
7.2 KiB
Go
282 lines
7.2 KiB
Go
package mastodon
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gorilla/websocket"
|
|
)
|
|
|
|
func TestStreamingWSUser(t *testing.T) {
|
|
ts := httptest.NewServer(http.HandlerFunc(wsMock))
|
|
defer ts.Close()
|
|
|
|
client := NewClient(&Config{Server: ts.URL}).NewWSClient()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
q, err := client.StreamingWSUser(ctx)
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
|
|
wsTest(t, q, cancel)
|
|
}
|
|
|
|
func TestStreamingWSPublic(t *testing.T) {
|
|
ts := httptest.NewServer(http.HandlerFunc(wsMock))
|
|
defer ts.Close()
|
|
|
|
client := NewClient(&Config{Server: ts.URL}).NewWSClient()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
q, err := client.StreamingWSPublic(ctx, false)
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
|
|
wsTest(t, q, cancel)
|
|
}
|
|
|
|
func TestStreamingWSHashtag(t *testing.T) {
|
|
ts := httptest.NewServer(http.HandlerFunc(wsMock))
|
|
defer ts.Close()
|
|
|
|
client := NewClient(&Config{Server: ts.URL}).NewWSClient()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
q, err := client.StreamingWSHashtag(ctx, "zzz", true)
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
wsTest(t, q, cancel)
|
|
|
|
ctx, cancel = context.WithCancel(context.Background())
|
|
q, err = client.StreamingWSHashtag(ctx, "zzz", false)
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
wsTest(t, q, cancel)
|
|
}
|
|
|
|
func wsMock(w http.ResponseWriter, r *http.Request) {
|
|
if r.URL.Path != "/api/v1/streaming" {
|
|
http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound)
|
|
return
|
|
}
|
|
|
|
u := websocket.Upgrader{}
|
|
conn, err := u.Upgrade(w, r, nil)
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
defer conn.Close()
|
|
|
|
err = conn.WriteMessage(websocket.TextMessage,
|
|
[]byte(`{"event":"update","payload":"{\"content\":\"foo\"}"}`))
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
err = conn.WriteMessage(websocket.TextMessage,
|
|
[]byte(`{"event":"notification","payload":"{\"id\":123}"}`))
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
err = conn.WriteMessage(websocket.TextMessage,
|
|
[]byte(`{"event":"delete","payload":1234567}`))
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
err = conn.WriteMessage(websocket.TextMessage,
|
|
[]byte(`{"event":"update","payload":"<html></html>"}`))
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
time.Sleep(10 * time.Second)
|
|
}
|
|
|
|
func wsTest(t *testing.T, q chan Event, cancel func()) {
|
|
time.AfterFunc(time.Second, func() {
|
|
cancel()
|
|
})
|
|
events := []Event{}
|
|
for e := range q {
|
|
events = append(events, e)
|
|
}
|
|
if len(events) != 6 {
|
|
t.Fatalf("result should be four: %d", len(events))
|
|
}
|
|
if events[0].(*UpdateEvent).Status.Content != "foo" {
|
|
t.Fatalf("want %q but %q", "foo", events[0].(*UpdateEvent).Status.Content)
|
|
}
|
|
if events[1].(*NotificationEvent).Notification.ID != "123" {
|
|
t.Fatalf("want %d but %d", 123, events[1].(*NotificationEvent).Notification.ID)
|
|
}
|
|
if events[2].(*DeleteEvent).ID != 1234567 {
|
|
t.Fatalf("want %d but %d", 1234567, events[2].(*DeleteEvent).ID)
|
|
}
|
|
if errorEvent, ok := events[3].(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
if errorEvent, ok := events[4].(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
if errorEvent, ok := events[5].(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
}
|
|
|
|
func TestStreamingWS(t *testing.T) {
|
|
ts := httptest.NewServer(http.HandlerFunc(wsMock))
|
|
defer ts.Close()
|
|
|
|
client := NewClient(&Config{Server: ":"}).NewWSClient()
|
|
_, err := client.StreamingWSPublic(context.Background(), true)
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
|
|
client = NewClient(&Config{Server: ts.URL}).NewWSClient()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
cancel()
|
|
q, err := client.StreamingWSPublic(ctx, true)
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
go func() {
|
|
e := <-q
|
|
if errorEvent, ok := e.(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
}()
|
|
}
|
|
|
|
func TestHandleWS(t *testing.T) {
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
u := websocket.Upgrader{}
|
|
conn, err := u.Upgrade(w, r, nil)
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
defer conn.Close()
|
|
|
|
err = conn.WriteMessage(websocket.TextMessage,
|
|
[]byte(`<html></html>`))
|
|
if err != nil {
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
time.Sleep(10 * time.Second)
|
|
}))
|
|
defer ts.Close()
|
|
|
|
q := make(chan Event)
|
|
client := NewClient(&Config{}).NewWSClient()
|
|
|
|
go func() {
|
|
e := <-q
|
|
if errorEvent, ok := e.(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
}()
|
|
err := client.handleWS(context.Background(), ":", q)
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
cancel()
|
|
go func() {
|
|
e := <-q
|
|
if errorEvent, ok := e.(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
}()
|
|
err = client.handleWS(ctx, "ws://"+ts.Listener.Addr().String(), q)
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
|
|
go func() {
|
|
e := <-q
|
|
if errorEvent, ok := e.(*ErrorEvent); !ok {
|
|
t.Fatalf("should be fail: %v", errorEvent.err)
|
|
}
|
|
}()
|
|
client.handleWS(context.Background(), "ws://"+ts.Listener.Addr().String(), q)
|
|
}
|
|
|
|
func TestDialRedirect(t *testing.T) {
|
|
client := NewClient(&Config{}).NewWSClient()
|
|
_, err := client.dialRedirect(":")
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestDial(t *testing.T) {
|
|
canErr := true
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if canErr {
|
|
canErr = false
|
|
http.Redirect(w, r, ":", http.StatusMovedPermanently)
|
|
return
|
|
}
|
|
|
|
http.Redirect(w, r, "http://www.example.com/", http.StatusMovedPermanently)
|
|
}))
|
|
defer ts.Close()
|
|
|
|
client := NewClient(&Config{}).NewWSClient()
|
|
_, _, err := client.dial(":")
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
|
|
_, rawurl, err := client.dial("ws://" + ts.Listener.Addr().String())
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
|
|
_, rawurl, err = client.dial("ws://" + ts.Listener.Addr().String())
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
if rawurl != "ws://www.example.com/" {
|
|
t.Fatalf("want %q but %q", "ws://www.example.com/", rawurl)
|
|
}
|
|
}
|
|
|
|
func TestChangeWebSocketScheme(t *testing.T) {
|
|
_, err := changeWebSocketScheme(":")
|
|
if err == nil {
|
|
t.Fatalf("should be fail: %v", err)
|
|
}
|
|
|
|
u, err := changeWebSocketScheme("http://example.com/")
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
if u.Scheme != "ws" {
|
|
t.Fatalf("want %q but %q", "ws", u.Scheme)
|
|
}
|
|
|
|
u, err = changeWebSocketScheme("https://example.com/")
|
|
if err != nil {
|
|
t.Fatalf("should not be fail: %v", err)
|
|
}
|
|
if u.Scheme != "wss" {
|
|
t.Fatalf("want %q but %q", "wss", u.Scheme)
|
|
}
|
|
}
|