summaryrefslogtreecommitdiff
path: root/internal/federation
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2023-01-13 17:02:45 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-13 17:02:45 +0100
commiteafd73c29204072050591a0579e0cedb174e6d38 (patch)
tree8cb581647e00f366395d97d27c36c6099e93754b /internal/federation
parent[performance] media processing improvements (#1288) (diff)
downloadgotosocial-eafd73c29204072050591a0579e0cedb174e6d38.tar.xz
[chore] Remove omitempty on account source; refactor tests to use prettyprint json (#1337)
* remove omitEmpty tag on account source items * update tests
Diffstat (limited to 'internal/federation')
-rw-r--r--internal/federation/federatingactor_test.go24
-rw-r--r--internal/federation/federatingdb/followers_test.go8
-rw-r--r--internal/federation/federatingdb/following_test.go11
3 files changed, 38 insertions, 5 deletions
diff --git a/internal/federation/federatingactor_test.go b/internal/federation/federatingactor_test.go
index 10ed60f68..0d1d8e37f 100644
--- a/internal/federation/federatingactor_test.go
+++ b/internal/federation/federatingactor_test.go
@@ -19,7 +19,9 @@
package federation_test
import (
+ "bytes"
"context"
+ "encoding/json"
"net/url"
"testing"
"time"
@@ -130,7 +132,27 @@ func (suite *FederatingActorTestSuite) TestSendRemoteFollower() {
suite.FailNow("timed out waiting for message")
}
- suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","actor":"http://localhost:8080/users/the_mighty_zork","id":"http://localhost:8080/whatever_some_create","object":{"attributedTo":"http://localhost:8080/users/the_mighty_zork","content":"boobies","id":"http://localhost:8080/users/the_mighty_zork/statuses/01G1TR6BADACCZWQMNF9X21TV5","published":"2022-06-02T12:22:21+02:00","tag":[],"to":"http://localhost:8080/users/the_mighty_zork/followers","type":"Note","url":"http://localhost:8080/@the_mighty_zork/statuses/01G1TR6BADACCZWQMNF9X21TV5"},"published":"2022-06-02T12:22:21+02:00","to":"http://localhost:8080/users/the_mighty_zork/followers","type":"Create"}`, string(sent[0]))
+ dst := new(bytes.Buffer)
+ err = json.Indent(dst, sent[0], "", " ")
+ suite.NoError(err)
+ suite.Equal(`{
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "actor": "http://localhost:8080/users/the_mighty_zork",
+ "id": "http://localhost:8080/whatever_some_create",
+ "object": {
+ "attributedTo": "http://localhost:8080/users/the_mighty_zork",
+ "content": "boobies",
+ "id": "http://localhost:8080/users/the_mighty_zork/statuses/01G1TR6BADACCZWQMNF9X21TV5",
+ "published": "2022-06-02T12:22:21+02:00",
+ "tag": [],
+ "to": "http://localhost:8080/users/the_mighty_zork/followers",
+ "type": "Note",
+ "url": "http://localhost:8080/@the_mighty_zork/statuses/01G1TR6BADACCZWQMNF9X21TV5"
+ },
+ "published": "2022-06-02T12:22:21+02:00",
+ "to": "http://localhost:8080/users/the_mighty_zork/followers",
+ "type": "Create"
+}`, dst.String())
}
func TestFederatingActorTestSuite(t *testing.T) {
diff --git a/internal/federation/federatingdb/followers_test.go b/internal/federation/federatingdb/followers_test.go
index 0937c5d0e..9bc601677 100644
--- a/internal/federation/federatingdb/followers_test.go
+++ b/internal/federation/federatingdb/followers_test.go
@@ -41,11 +41,15 @@ func (suite *FollowersTestSuite) TestGetFollowers() {
fi, err := streams.Serialize(f)
suite.NoError(err)
- fJson, err := json.Marshal(fi)
+ fJson, err := json.MarshalIndent(fi, "", " ")
suite.NoError(err)
// zork follows local_account_2 so this should be reflected in the response
- suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","items":"http://localhost:8080/users/the_mighty_zork","type":"Collection"}`, string(fJson))
+ suite.Equal(`{
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "items": "http://localhost:8080/users/the_mighty_zork",
+ "type": "Collection"
+}`, string(fJson))
}
func TestFollowersTestSuite(t *testing.T) {
diff --git a/internal/federation/federatingdb/following_test.go b/internal/federation/federatingdb/following_test.go
index 824530686..e769e5384 100644
--- a/internal/federation/federatingdb/following_test.go
+++ b/internal/federation/federatingdb/following_test.go
@@ -41,11 +41,18 @@ func (suite *FollowingTestSuite) TestGetFollowing() {
fi, err := streams.Serialize(f)
suite.NoError(err)
- fJson, err := json.Marshal(fi)
+ fJson, err := json.MarshalIndent(fi, "", " ")
suite.NoError(err)
// zork follows admin account and local_account_1
- suite.Equal(`{"@context":"https://www.w3.org/ns/activitystreams","items":["http://localhost:8080/users/admin","http://localhost:8080/users/1happyturtle"],"type":"Collection"}`, string(fJson))
+ suite.Equal(`{
+ "@context": "https://www.w3.org/ns/activitystreams",
+ "items": [
+ "http://localhost:8080/users/admin",
+ "http://localhost:8080/users/1happyturtle"
+ ],
+ "type": "Collection"
+}`, string(fJson))
}
func TestFollowingTestSuite(t *testing.T) {