summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2022-02-07 18:16:31 +0100
committerGitHub <noreply@github.com>2022-02-07 18:16:31 +0100
commitf1f6ddd5362f40e287857750f5e102206bd0e169 (patch)
tree6080f31997793f1a3898eae32de3211d9cab41f2 /spec
parent73a782391ca3bc5cbb24fb98065f6a5f4d64f22c (diff)
Fix structured data parsing from links choking on bad data (#17403)
* Fix structured data parsing from links choking on bad data - Fix og:url meta tag being prioritized over canonical link tag - Fix structured data parsing choking on commented-out CDATA declarations - Fix HTML entities in title, description, provider_name, author_name - Change structured data parsing to attempt every JSON-LD script tag * Remove unnecessary slash escapes from CDATA regex pattern
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/link_details_extractor_spec.rb122
1 files changed, 122 insertions, 0 deletions
diff --git a/spec/lib/link_details_extractor_spec.rb b/spec/lib/link_details_extractor_spec.rb
index 850857b2dd1..84bb4579caa 100644
--- a/spec/lib/link_details_extractor_spec.rb
+++ b/spec/lib/link_details_extractor_spec.rb
@@ -26,4 +26,126 @@ RSpec.describe LinkDetailsExtractor do
end
end
end
+
+ context 'when structured data is present' do
+ let(:original_url) { 'https://example.com/page.html' }
+
+ context 'and is wrapped in CDATA tags' do
+ let(:html) { <<-HTML }
+<!doctype html>
+<html>
+<head>
+ <script type="application/ld+json">
+ //<![CDATA[
+ {"@context":"http://schema.org","@type":"NewsArticle","mainEntityOfPage":"https://example.com/page.html","headline":"Foo","datePublished":"2022-01-31T19:53:00+00:00","url":"https://example.com/page.html","description":"Bar","author":{"@type":"Person","name":"Hoge"},"publisher":{"@type":"Organization","name":"Baz"}}
+ //]]>
+ </script>
+</head>
+</html>
+ HTML
+
+ describe '#title' do
+ it 'returns the title from structured data' do
+ expect(subject.title).to eq 'Foo'
+ end
+ end
+
+ describe '#description' do
+ it 'returns the description from structured data' do
+ expect(subject.description).to eq 'Bar'
+ end
+ end
+
+ describe '#provider_name' do
+ it 'returns the provider name from structured data' do
+ expect(subject.provider_name).to eq 'Baz'
+ end
+ end
+
+ describe '#author_name' do
+ it 'returns the author name from structured data' do
+ expect(subject.author_name).to eq 'Hoge'
+ end
+ end
+ end
+
+ context 'but the first tag is invalid JSON' do
+ let(:html) { <<-HTML }
+<!doctype html>
+<html>
+<body>
+ <script type="application/ld+json">
+ {
+ "@context":"https://schema.org",
+ "@type":"ItemList",
+ "url":"https://example.com/page.html",
+ "name":"Foo",
+ "description":"Bar"
+ },
+ {
+ "@context": "https://schema.org",
+ "@type": "BreadcrumbList",
+ "itemListElement":[
+ {
+ "@type":"ListItem",
+ "position":1,
+ "item":{
+ "@id":"https://www.example.com",
+ "name":"Baz"
+ }
+ }
+ ]
+ }
+ </script>
+ <script type="application/ld+json">
+ {
+ "@context":"https://schema.org",
+ "@type":"NewsArticle",
+ "mainEntityOfPage": {
+ "@type":"WebPage",
+ "@id": "http://example.com/page.html"
+ },
+ "headline": "Foo",
+ "description": "Bar",
+ "datePublished": "2022-01-31T19:46:00+00:00",
+ "author": {
+ "@type": "Organization",
+ "name": "Hoge"
+ },
+ "publisher": {
+ "@type": "NewsMediaOrganization",
+ "name":"Baz",
+ "url":"https://example.com/"
+ }
+ }
+ </script>
+</body>
+</html>
+ HTML
+
+ describe '#title' do
+ it 'returns the title from structured data' do
+ expect(subject.title).to eq 'Foo'
+ end
+ end
+
+ describe '#description' do
+ it 'returns the description from structured data' do
+ expect(subject.description).to eq 'Bar'
+ end
+ end
+
+ describe '#provider_name' do
+ it 'returns the provider name from structured data' do
+ expect(subject.provider_name).to eq 'Baz'
+ end
+ end
+
+ describe '#author_name' do
+ it 'returns the author name from structured data' do
+ expect(subject.author_name).to eq 'Hoge'
+ end
+ end
+ end
+ end
end