1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.RichMedia.ParserTest do
6 use ExUnit.Case, async: true
8 alias Pleroma.Web.RichMedia.Parser
14 url: "http://example.com/ogp"
16 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}
20 url: "http://example.com/non-ogp"
22 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/non_ogp_embed.html")}
26 url: "http://example.com/ogp-missing-title"
30 body: File.read!("test/fixtures/rich_media/ogp-missing-title.html")
35 url: "http://example.com/twitter-card"
37 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/twitter_card.html")}
41 url: "http://example.com/oembed"
43 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/oembed.html")}
47 url: "http://example.com/oembed.json"
49 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/oembed.json")}
51 %{method: :get, url: "http://example.com/empty"} ->
52 %Tesla.Env{status: 200, body: "hello"}
54 %{method: :get, url: "http://example.com/malformed"} ->
55 %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}
57 %{method: :get, url: "http://example.com/error"} ->
64 test "returns error when no metadata present" do
65 assert {:error, _} = Parser.parse("http://example.com/empty")
68 test "doesn't just add a title" do
69 assert {:error, {:invalid_metadata, _}} = Parser.parse("http://example.com/non-ogp")
73 assert Parser.parse("http://example.com/ogp") ==
76 "image" => "http://ia.media-imdb.com/images/rock.jpg",
77 "title" => "The Rock",
79 "Directed by Michael Bay. With Sean Connery, Nicolas Cage, Ed Harris, John Spencer.",
80 "type" => "video.movie",
81 "url" => "http://example.com/ogp"
85 test "falls back to <title> when ogp:title is missing" do
86 assert Parser.parse("http://example.com/ogp-missing-title") ==
89 "image" => "http://ia.media-imdb.com/images/rock.jpg",
90 "title" => "The Rock (1996)",
92 "Directed by Michael Bay. With Sean Connery, Nicolas Cage, Ed Harris, John Spencer.",
93 "type" => "video.movie",
94 "url" => "http://example.com/ogp-missing-title"
98 test "parses twitter card" do
99 assert Parser.parse("http://example.com/twitter-card") ==
104 "image" => "https://farm6.staticflickr.com/5510/14338202952_93595258ff_z.jpg",
105 "title" => "Small Island Developing States Photo Submission",
106 "description" => "View the album on Flickr.",
107 "url" => "http://example.com/twitter-card"
111 test "parses OEmbed" do
112 assert Parser.parse("http://example.com/oembed") ==
115 "author_name" => "bees",
116 "author_url" => "https://www.flickr.com/photos/bees/",
118 "flickr_type" => "photo",
121 "<a data-flickr-embed=\"true\" href=\"https://www.flickr.com/photos/bees/2362225867/\" title=\"Bacon Lollys by bees, on Flickr\"><img src=\"https://farm4.staticflickr.com/3040/2362225867_4a87ab8baf_b.jpg\" width=\"1024\" height=\"768\" alt=\"Bacon Lollys\"></a><script async src=\"https://embedr.flickr.com/assets/client-code.js\" charset=\"utf-8\"></script>",
122 "license" => "All Rights Reserved",
124 "provider_name" => "Flickr",
125 "provider_url" => "https://www.flickr.com/",
126 "thumbnail_height" => 150,
128 "https://farm4.staticflickr.com/3040/2362225867_4a87ab8baf_q.jpg",
129 "thumbnail_width" => 150,
130 "title" => "Bacon Lollys",
132 "url" => "http://example.com/oembed",
134 "web_page" => "https://www.flickr.com/photos/bees/2362225867/",
135 "web_page_short_url" => "https://flic.kr/p/4AK2sc",
140 test "rejects invalid OGP data" do
141 assert {:error, _} = Parser.parse("http://example.com/malformed")
144 test "returns error if getting page was not successful" do
145 assert {:error, :overload} = Parser.parse("http://example.com/error")