From 852ee6a66a7aa7ae96b94defcd44494b0e71b02f Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Mon, 27 May 2019 14:19:05 +0300 Subject: ActivityPub: deserialize activities with single context --- src/test/java/com/juick/server/tests/ServerTests.java | 3 +++ src/test/resources/undo_pleroma.json | 1 + 2 files changed, 4 insertions(+) create mode 100644 src/test/resources/undo_pleroma.json (limited to 'src/test') diff --git a/src/test/java/com/juick/server/tests/ServerTests.java b/src/test/java/com/juick/server/tests/ServerTests.java index 322d4de7..a140e9f0 100644 --- a/src/test/java/com/juick/server/tests/ServerTests.java +++ b/src/test/java/com/juick/server/tests/ServerTests.java @@ -1705,6 +1705,9 @@ public class ServerTests { NodeInfo info = jsonMapper.readValue(IOUtils.toString(new ClassPathResource("xnodeinfo2.json").getURI(), StandardCharsets.UTF_8), NodeInfo.class); assertThat(info.getUsage().getUsers().getActiveHalfyear(), is(42)); Like like = jsonMapper.readValue(IOUtils.toString(new ClassPathResource("like.json").getURI(), StandardCharsets.UTF_8), Like.class); + String undoPleromaStr = IOUtils.toString(new ClassPathResource("undo_pleroma.json").getURI(), StandardCharsets.UTF_8); + Undo undoPleroma = jsonMapper.readValue(undoPleromaStr, Undo.class); + String undoPleromaFollower = (String)((Map)undoPleroma.getObject()).get("object"); } @Test public void activitySerialization() throws Exception { diff --git a/src/test/resources/undo_pleroma.json b/src/test/resources/undo_pleroma.json new file mode 100644 index 00000000..2ef67bc2 --- /dev/null +++ b/src/test/resources/undo_pleroma.json @@ -0,0 +1 @@ +{"@context":"https://www.w3.org/ns/activitystreams","id":"https://mastodon.social/users/chest_i_razym#follows/4510327/undo","type":"Undo","actor":"https://mastodon.social/users/chest_i_razym","object":{"id":"https://mastodon.social/1a4824f6-b5d0-415b-a7ef-62d7637d83c9","type":"Follow","actor":"https://mastodon.social/users/chest_i_razym","object":"https://juick.com/u/WP8"}} \ No newline at end of file -- cgit v1.2.3