Add handle_test.
This commit is contained in:
parent
221e474c5a
commit
e8d4239e0a
@ -4,6 +4,9 @@ jobs:
|
|||||||
working_directory: /go/src/github.com/yukimochi/Activity-Relay
|
working_directory: /go/src/github.com/yukimochi/Activity-Relay
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/golang
|
- image: circleci/golang
|
||||||
|
environment:
|
||||||
|
REDIS_URL: localhost:6379
|
||||||
|
- image: redis:alpine
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- run:
|
- run:
|
||||||
|
@ -7,7 +7,8 @@ type PublicKey struct {
|
|||||||
PublicKeyPem string `json:"publicKeyPem"`
|
PublicKeyPem string `json:"publicKeyPem"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type endpoints struct {
|
//Endpoints : Contains SharedInbox address.
|
||||||
|
type Endpoints struct {
|
||||||
SharedInbox string `json:"sharedInbox"`
|
SharedInbox string `json:"sharedInbox"`
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -18,7 +19,7 @@ type Actor struct {
|
|||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
PreferredUsername string `json:"preferredUsername"`
|
PreferredUsername string `json:"preferredUsername"`
|
||||||
Inbox string `json:"inbox"`
|
Inbox string `json:"inbox"`
|
||||||
Endpoints *endpoints `json:"endpoints"`
|
Endpoints *Endpoints `json:"endpoints"`
|
||||||
PublicKey PublicKey `json:"publicKey"`
|
PublicKey PublicKey `json:"publicKey"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,41 +1 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
|
||||||
"net/http"
|
|
||||||
"net/http/httptest"
|
|
||||||
"testing"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestHandleInboxNoSignature(t *testing.T) {
|
|
||||||
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
handleInbox(w, r, decodeActivity)
|
|
||||||
}))
|
|
||||||
defer s.Close()
|
|
||||||
|
|
||||||
req, _ := http.NewRequest("POST", s.URL, nil)
|
|
||||||
client := new(http.Client)
|
|
||||||
r, err := client.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("Failed - " + err.Error())
|
|
||||||
}
|
|
||||||
if r.StatusCode != 400 {
|
|
||||||
t.Fatalf("Failed - StatusCode is not 400")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestHandleInboxInvalidMethod(t *testing.T) {
|
|
||||||
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
||||||
handleInbox(w, r, decodeActivity)
|
|
||||||
}))
|
|
||||||
defer s.Close()
|
|
||||||
|
|
||||||
req, _ := http.NewRequest("GET", s.URL, nil)
|
|
||||||
client := new(http.Client)
|
|
||||||
r, err := client.Do(req)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("Failed - " + err.Error())
|
|
||||||
}
|
|
||||||
if r.StatusCode != 404 {
|
|
||||||
t.Fatalf("Failed - StatusCode is not 404")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
243
handle_test.go
243
handle_test.go
@ -3,6 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"net/url"
|
"net/url"
|
||||||
@ -10,23 +11,9 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/yukimochi/Activity-Relay/ActivityPub"
|
"github.com/yukimochi/Activity-Relay/ActivityPub"
|
||||||
"github.com/yukimochi/Activity-Relay/KeyLoader"
|
"github.com/yukimochi/Activity-Relay/RelayConf"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestMain(m *testing.M) {
|
|
||||||
os.Setenv("ACTOR_PEM", "misc/testKey.pem")
|
|
||||||
os.Setenv("RELAY_DOMAIN", "relay.yukimochi.example.org")
|
|
||||||
pemPath := os.Getenv("ACTOR_PEM")
|
|
||||||
relayDomain := os.Getenv("RELAY_DOMAIN")
|
|
||||||
hostkey, _ = keyloader.ReadPrivateKeyRSAfromPath(pemPath)
|
|
||||||
hostname, _ = url.Parse("https://" + relayDomain)
|
|
||||||
Actor = activitypub.GenerateActor(hostname, &hostkey.PublicKey)
|
|
||||||
WebfingerResource = activitypub.GenerateWebfingerResource(hostname, &Actor)
|
|
||||||
|
|
||||||
code := m.Run()
|
|
||||||
os.Exit(code)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestHandleWebfingerGet(t *testing.T) {
|
func TestHandleWebfingerGet(t *testing.T) {
|
||||||
s := httptest.NewServer(http.HandlerFunc(handleWebfinger))
|
s := httptest.NewServer(http.HandlerFunc(handleWebfinger))
|
||||||
defer s.Close()
|
defer s.Close()
|
||||||
@ -164,3 +151,229 @@ func TestContains(t *testing.T) {
|
|||||||
t.Fatalf("Failed - input bad data but true. (slice)")
|
t.Fatalf("Failed - input bad data but true. (slice)")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestHandleInboxNoSignature(t *testing.T) {
|
||||||
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
handleInbox(w, r, decodeActivity)
|
||||||
|
}))
|
||||||
|
defer s.Close()
|
||||||
|
|
||||||
|
req, _ := http.NewRequest("POST", s.URL, nil)
|
||||||
|
client := new(http.Client)
|
||||||
|
r, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed - " + err.Error())
|
||||||
|
}
|
||||||
|
if r.StatusCode != 400 {
|
||||||
|
t.Fatalf("Failed - StatusCode is not 400")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHandleInboxInvalidMethod(t *testing.T) {
|
||||||
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
handleInbox(w, r, decodeActivity)
|
||||||
|
}))
|
||||||
|
defer s.Close()
|
||||||
|
|
||||||
|
req, _ := http.NewRequest("GET", s.URL, nil)
|
||||||
|
client := new(http.Client)
|
||||||
|
r, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed - " + err.Error())
|
||||||
|
}
|
||||||
|
if r.StatusCode != 404 {
|
||||||
|
t.Fatalf("Failed - StatusCode is not 404")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func mockActivityDecoderProvider(activity *activitypub.Activity, actor *activitypub.Actor) func(r *http.Request) (*activitypub.Activity, *activitypub.Actor, []byte, error) {
|
||||||
|
return func(r *http.Request) (*activitypub.Activity, *activitypub.Actor, []byte, error) {
|
||||||
|
body, err := ioutil.ReadAll(r.Body)
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
return activity, actor, body, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHandleInboxValidFollow(t *testing.T) {
|
||||||
|
activity := activitypub.Activity{
|
||||||
|
[]string{"https://www.w3.org/ns/activitystreams"},
|
||||||
|
"https://mastodon.test.yukimochi.io/c125e836-e622-478e-a22d-2d9fbf2f496f",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"Follow",
|
||||||
|
"https://www.w3.org/ns/activitystreams#Public",
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
|
}
|
||||||
|
actor := activitypub.Actor{
|
||||||
|
[]string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"},
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"Person",
|
||||||
|
"yukimochi",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi/inbox",
|
||||||
|
&activitypub.Endpoints{
|
||||||
|
"https://mastodon.test.yukimochi.io/inbox",
|
||||||
|
},
|
||||||
|
activitypub.PublicKey{
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi#main-key",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuak6v+V5hd683ioTLSPF\nLR7CxiI1GMzmOfgaP/P37YBi8bk1aYu3pSDaSJ4889llLHOrLWnzuojHHAUTsVH3\nDG3BXUIjMdGzO6CYG0Tsk36PF7yKZ4RrIj3z03XEUogBbNN/YiqjWCiUkOLLayx5\nM/iE1VBu3zoC2cP8m+hnVdSOpTV8XcaTXMQSGnk/mKMh93CP16pMkJ3Jaw5I2tYm\nCTKVV3zPdmXwT5rCL/qstlIfDaIkKc/PL04mhA9/8+9A6HhhTsxCsgA1zJZomTBI\n4FXeu7mzFZJtZJdDwaVy2H+CKMw6HOHneEenvvCR/37kiLjk8gw+grC/G1Bw6E2h\nZwIDAQAB\n-----END PUBLIC KEY-----\n",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
domain, _ := url.Parse(activity.Actor)
|
||||||
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
handleInbox(w, r, mockActivityDecoderProvider(&activity, &actor))
|
||||||
|
}))
|
||||||
|
defer s.Close()
|
||||||
|
|
||||||
|
relayconf.SetConfig(redClient, "manually_accept", false)
|
||||||
|
relConfig = relayconf.LoadConfig(redClient)
|
||||||
|
|
||||||
|
req, _ := http.NewRequest("POST", s.URL, nil)
|
||||||
|
client := new(http.Client)
|
||||||
|
r, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed - " + err.Error())
|
||||||
|
}
|
||||||
|
if r.StatusCode != 202 {
|
||||||
|
t.Fatalf("Failed - StatusCode is not 202")
|
||||||
|
}
|
||||||
|
res, _ := redClient.Exists("relay:subscription:" + domain.Host).Result()
|
||||||
|
if res != 1 {
|
||||||
|
t.Fatalf("Failed - Subscription not works.")
|
||||||
|
}
|
||||||
|
redClient.Del("relay:subscription:" + domain.Host).Result()
|
||||||
|
redClient.Del("relay:pending:" + domain.Host).Result()
|
||||||
|
|
||||||
|
// Switch Manually
|
||||||
|
relayconf.SetConfig(redClient, "manually_accept", true)
|
||||||
|
relConfig = relayconf.LoadConfig(redClient)
|
||||||
|
|
||||||
|
req, _ = http.NewRequest("POST", s.URL, nil)
|
||||||
|
client = new(http.Client)
|
||||||
|
r, err = client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed - " + err.Error())
|
||||||
|
}
|
||||||
|
if r.StatusCode != 202 {
|
||||||
|
t.Fatalf("Failed - StatusCode is not 202")
|
||||||
|
}
|
||||||
|
res, _ = redClient.Exists("relay:pending:" + domain.Host).Result()
|
||||||
|
if res != 1 {
|
||||||
|
t.Fatalf("Failed - Pending not works.")
|
||||||
|
}
|
||||||
|
res, _ = redClient.Exists("relay:subscription:" + domain.Host).Result()
|
||||||
|
if res != 0 {
|
||||||
|
t.Fatalf("Failed - Pending was skipped.")
|
||||||
|
}
|
||||||
|
redClient.Del("relay:subscription:" + domain.Host).Result()
|
||||||
|
redClient.Del("relay:pending:" + domain.Host).Result()
|
||||||
|
relayconf.SetConfig(redClient, "manually_accept", false)
|
||||||
|
relConfig = relayconf.LoadConfig(redClient)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHandleInboxValidFollowBlocked(t *testing.T) {
|
||||||
|
activity := activitypub.Activity{
|
||||||
|
[]string{"https://www.w3.org/ns/activitystreams"},
|
||||||
|
"https://mastodon.test.yukimochi.io/c125e836-e622-478e-a22d-2d9fbf2f496f",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"Follow",
|
||||||
|
"https://www.w3.org/ns/activitystreams#Public",
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
|
}
|
||||||
|
actor := activitypub.Actor{
|
||||||
|
[]string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"},
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"Person",
|
||||||
|
"yukimochi",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi/inbox",
|
||||||
|
&activitypub.Endpoints{
|
||||||
|
"https://mastodon.test.yukimochi.io/inbox",
|
||||||
|
},
|
||||||
|
activitypub.PublicKey{
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi#main-key",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuak6v+V5hd683ioTLSPF\nLR7CxiI1GMzmOfgaP/P37YBi8bk1aYu3pSDaSJ4889llLHOrLWnzuojHHAUTsVH3\nDG3BXUIjMdGzO6CYG0Tsk36PF7yKZ4RrIj3z03XEUogBbNN/YiqjWCiUkOLLayx5\nM/iE1VBu3zoC2cP8m+hnVdSOpTV8XcaTXMQSGnk/mKMh93CP16pMkJ3Jaw5I2tYm\nCTKVV3zPdmXwT5rCL/qstlIfDaIkKc/PL04mhA9/8+9A6HhhTsxCsgA1zJZomTBI\n4FXeu7mzFZJtZJdDwaVy2H+CKMw6HOHneEenvvCR/37kiLjk8gw+grC/G1Bw6E2h\nZwIDAQAB\n-----END PUBLIC KEY-----\n",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
domain, _ := url.Parse(activity.Actor)
|
||||||
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
handleInbox(w, r, mockActivityDecoderProvider(&activity, &actor))
|
||||||
|
}))
|
||||||
|
defer s.Close()
|
||||||
|
|
||||||
|
redClient.HSet("relay:config:blockedDomain", domain.Host, "1")
|
||||||
|
|
||||||
|
req, _ := http.NewRequest("POST", s.URL, nil)
|
||||||
|
client := new(http.Client)
|
||||||
|
r, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed - " + err.Error())
|
||||||
|
}
|
||||||
|
if r.StatusCode != 202 {
|
||||||
|
t.Fatalf("Failed - StatusCode is not 202")
|
||||||
|
}
|
||||||
|
res, _ := redClient.Exists("relay:subscription:" + domain.Host).Result()
|
||||||
|
if res != 0 {
|
||||||
|
t.Fatalf("Failed - Subscription not blocked.")
|
||||||
|
}
|
||||||
|
redClient.Del("relay:subscription:" + domain.Host).Result()
|
||||||
|
redClient.Del("relay:pending:" + domain.Host).Result()
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestHandleInboxValidUnfollow(t *testing.T) {
|
||||||
|
activity := activitypub.Activity{
|
||||||
|
[]string{"https://www.w3.org/ns/activitystreams"},
|
||||||
|
"https://mastodon.test.yukimochi.io/c125e836-e622-478e-a22d-2d9fbf2f496f",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"Undo",
|
||||||
|
map[string]interface{}{
|
||||||
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||||||
|
"id": "https://mastodon.test.yukimochi.io/c125e836-e622-478e-a22d-2d9fbf2f496f",
|
||||||
|
"actor": "https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"type": "Follow",
|
||||||
|
"object": "https://www.w3.org/ns/activitystreams#Public",
|
||||||
|
},
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
|
}
|
||||||
|
actor := activitypub.Actor{
|
||||||
|
[]string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"},
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"Person",
|
||||||
|
"yukimochi",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi/inbox",
|
||||||
|
&activitypub.Endpoints{
|
||||||
|
"https://mastodon.test.yukimochi.io/inbox",
|
||||||
|
},
|
||||||
|
activitypub.PublicKey{
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi#main-key",
|
||||||
|
"https://mastodon.test.yukimochi.io/users/yukimochi",
|
||||||
|
"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuak6v+V5hd683ioTLSPF\nLR7CxiI1GMzmOfgaP/P37YBi8bk1aYu3pSDaSJ4889llLHOrLWnzuojHHAUTsVH3\nDG3BXUIjMdGzO6CYG0Tsk36PF7yKZ4RrIj3z03XEUogBbNN/YiqjWCiUkOLLayx5\nM/iE1VBu3zoC2cP8m+hnVdSOpTV8XcaTXMQSGnk/mKMh93CP16pMkJ3Jaw5I2tYm\nCTKVV3zPdmXwT5rCL/qstlIfDaIkKc/PL04mhA9/8+9A6HhhTsxCsgA1zJZomTBI\n4FXeu7mzFZJtZJdDwaVy2H+CKMw6HOHneEenvvCR/37kiLjk8gw+grC/G1Bw6E2h\nZwIDAQAB\n-----END PUBLIC KEY-----\n",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
domain, _ := url.Parse(activity.Actor)
|
||||||
|
s := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
handleInbox(w, r, mockActivityDecoderProvider(&activity, &actor))
|
||||||
|
}))
|
||||||
|
defer s.Close()
|
||||||
|
|
||||||
|
redClient.HSet("relay:subscription:"+domain.Host, "inbox_url", "https://mastodon.test.yukimochi.io/inbox").Result()
|
||||||
|
|
||||||
|
req, _ := http.NewRequest("POST", s.URL, nil)
|
||||||
|
client := new(http.Client)
|
||||||
|
r, err := client.Do(req)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Failed - " + err.Error())
|
||||||
|
}
|
||||||
|
if r.StatusCode != 202 {
|
||||||
|
t.Fatalf("Failed - StatusCode is not 202")
|
||||||
|
}
|
||||||
|
res, _ := redClient.Exists("relay:subscription:" + domain.Host).Result()
|
||||||
|
if res != 0 {
|
||||||
|
t.Fatalf("Failed - Subscription not succeed.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
42
main_test.go
Normal file
42
main_test.go
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"net/url"
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
machinery "github.com/RichardKnop/machinery/v1"
|
||||||
|
"github.com/RichardKnop/machinery/v1/config"
|
||||||
|
"github.com/go-redis/redis"
|
||||||
|
activitypub "github.com/yukimochi/Activity-Relay/ActivityPub"
|
||||||
|
keyloader "github.com/yukimochi/Activity-Relay/KeyLoader"
|
||||||
|
relayconf "github.com/yukimochi/Activity-Relay/RelayConf"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestMain(m *testing.M) {
|
||||||
|
os.Setenv("ACTOR_PEM", "misc/testKey.pem")
|
||||||
|
os.Setenv("RELAY_DOMAIN", "relay.yukimochi.example.org")
|
||||||
|
pemPath := os.Getenv("ACTOR_PEM")
|
||||||
|
relayDomain := os.Getenv("RELAY_DOMAIN")
|
||||||
|
redisURL := os.Getenv("REDIS_URL")
|
||||||
|
hostkey, _ = keyloader.ReadPrivateKeyRSAfromPath(pemPath)
|
||||||
|
hostname, _ = url.Parse("https://" + relayDomain)
|
||||||
|
redClient = redis.NewClient(&redis.Options{
|
||||||
|
Addr: redisURL,
|
||||||
|
})
|
||||||
|
var macConfig = &config.Config{
|
||||||
|
Broker: "redis://" + redisURL,
|
||||||
|
DefaultQueue: "relay",
|
||||||
|
ResultBackend: "redis://" + redisURL,
|
||||||
|
ResultsExpireIn: 5,
|
||||||
|
}
|
||||||
|
macServer, _ = machinery.NewServer(macConfig)
|
||||||
|
|
||||||
|
Actor = activitypub.GenerateActor(hostname, &hostkey.PublicKey)
|
||||||
|
WebfingerResource = activitypub.GenerateWebfingerResource(hostname, &Actor)
|
||||||
|
|
||||||
|
redClient.FlushAll().Result()
|
||||||
|
relConfig = relayconf.LoadConfig(redClient)
|
||||||
|
code := m.Run()
|
||||||
|
os.Exit(code)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user