forked from AkkomaGang/akkoma
Test that prismo url-map transforms into a string
This commit is contained in:
parent
f20f575e29
commit
c5f26f3ce2
2 changed files with 60 additions and 0 deletions
52
test/fixtures/prismo-url-map.json
vendored
Normal file
52
test/fixtures/prismo-url-map.json
vendored
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"id": "https://prismo.news/posts/83",
|
||||||
|
"type": "Article",
|
||||||
|
"name": "Introducing: Federated follows!",
|
||||||
|
"published": "2018-11-01T07:10:05Z",
|
||||||
|
"content": "We are more than thrilled to announce that Prismo now supports federated follows! It means you ca...",
|
||||||
|
"url": {
|
||||||
|
"type": "Link",
|
||||||
|
"mimeType": "text/html",
|
||||||
|
"href": "https://prismo.news/posts/83"
|
||||||
|
},
|
||||||
|
"votes": 12,
|
||||||
|
"attributedTo": [
|
||||||
|
{
|
||||||
|
"type": "Person",
|
||||||
|
"id": "https://prismo.news/@mxb"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"to": [
|
||||||
|
"https://www.w3.org/ns/activitystreams#Public"
|
||||||
|
],
|
||||||
|
"tags": [
|
||||||
|
{
|
||||||
|
"type": "Hashtag",
|
||||||
|
"href": "https://prismo.news/tags/prismo",
|
||||||
|
"name": "#prismo"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Hashtag",
|
||||||
|
"href": "https://prismo.news/tags/prismodev",
|
||||||
|
"name": "#prismodev"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "Hashtag",
|
||||||
|
"href": "https://prismo.news/tags/meta",
|
||||||
|
"name": "#meta"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"@context": [
|
||||||
|
"https://www.w3.org/ns/activitystreams",
|
||||||
|
"https://w3id.org/security/v1",
|
||||||
|
{
|
||||||
|
"Hashtag": "as:Hashtag"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"votes": {
|
||||||
|
"@id": "as:votes",
|
||||||
|
"@type": "@id"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -145,6 +145,14 @@ test "it works for incoming notices with tag not being an array (kroeg)" do
|
||||||
assert "test" in data["object"]["tag"]
|
assert "test" in data["object"]["tag"]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "it works for incoming notices with url not being a string (prismo)" do
|
||||||
|
data = File.read!("test/fixtures/prismo-url-map.json") |> Poison.decode!()
|
||||||
|
|
||||||
|
{:ok, %Activity{data: data, local: false}} = Transmogrifier.handle_incoming(data)
|
||||||
|
|
||||||
|
assert data["object"]["url"] == "https://prismo.news/posts/83"
|
||||||
|
end
|
||||||
|
|
||||||
test "it works for incoming follow requests" do
|
test "it works for incoming follow requests" do
|
||||||
user = insert(:user)
|
user = insert(:user)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue