@@ -10,7 +10,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'text' }
it 'paragraphizes the text' do
is_ expected . to eq '<p>text</p>'
expect( subject ) . to eq '<p>text</p>'
end
end
@@ -18,7 +18,7 @@ RSpec.describe TextFormatter do
let ( :text ) { " line \n feed " }
it 'removes line feeds' do
is_ expected . to_not include " \n "
expect( subject ) . to_not include " \n "
end
end
@@ -27,7 +27,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '@alice' }
it 'creates a mention link' do
is_ expected . to include '<a href="https://cb6e6126.ngrok.io/@alice" class="u-url mention">@<span>alice</span></a></span>'
expect( subject ) . to include '<a href="https://cb6e6126.ngrok.io/@alice" class="u-url mention">@<span>alice</span></a></span>'
end
end
@@ -36,7 +36,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '@alice' }
it 'does not create a mention link' do
is_ expected . to include '@alice'
expect( subject ) . to include '@alice'
end
end
@@ -44,7 +44,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://hackernoon.com/the-power-to-build-communities-a-response-to-mark-zuckerberg-3f2cac9148a4' }
it 'matches the full URL' do
is_ expected . to include 'href="https://hackernoon.com/the-power-to-build-communities-a-response-to-mark-zuckerberg-3f2cac9148a4"'
expect( subject ) . to include 'href="https://hackernoon.com/the-power-to-build-communities-a-response-to-mark-zuckerberg-3f2cac9148a4"'
end
end
@@ -52,7 +52,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://google.com' }
it 'matches the full URL' do
is_ expected . to include 'href="http://google.com"'
expect( subject ) . to include 'href="http://google.com"'
end
end
@@ -60,7 +60,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://example.gay' }
it 'matches the full URL' do
is_ expected . to include 'href="http://example.gay"'
expect( subject ) . to include 'href="http://example.gay"'
end
end
@@ -68,11 +68,11 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://nic.みんな/' }
it 'matches the full URL' do
is_ expected . to include 'href="https://nic.みんな/"'
expect( subject ) . to include 'href="https://nic.みんな/"'
end
it 'has display URL' do
is_ expected . to include '<span class="">nic.みんな/</span>'
expect( subject ) . to include '<span class="">nic.みんな/</span>'
end
end
@@ -80,7 +80,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://www.mcmansionhell.com/post/156408871451/50-states-of-mcmansion-hell-scottsdale-arizona. ' }
it 'matches the full URL but not the period' do
is_ expected . to include 'href="http://www.mcmansionhell.com/post/156408871451/50-states-of-mcmansion-hell-scottsdale-arizona"'
expect( subject ) . to include 'href="http://www.mcmansionhell.com/post/156408871451/50-states-of-mcmansion-hell-scottsdale-arizona"'
end
end
@@ -88,7 +88,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '(http://google.com/)' }
it 'matches the full URL but not the parentheses' do
is_ expected . to include 'href="http://google.com/"'
expect( subject ) . to include 'href="http://google.com/"'
end
end
@@ -96,7 +96,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://www.google.com!' }
it 'matches the full URL but not the exclamation point' do
is_ expected . to include 'href="http://www.google.com"'
expect( subject ) . to include 'href="http://www.google.com"'
end
end
@@ -104,7 +104,7 @@ RSpec.describe TextFormatter do
let ( :text ) { " http://www.google.com' " }
it 'matches the full URL but not the single quote' do
is_ expected . to include 'href="http://www.google.com"'
expect( subject ) . to include 'href="http://www.google.com"'
end
end
@@ -112,7 +112,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://www.google.com>' }
it 'matches the full URL but not the angle bracket' do
is_ expected . to include 'href="http://www.google.com"'
expect( subject ) . to include 'href="http://www.google.com"'
end
end
@@ -121,7 +121,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&q=autolink' }
it 'matches the full URL' do
is_ expected . to include 'href="https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&q=autolink"'
expect( subject ) . to include 'href="https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&q=autolink"'
end
end
@@ -129,7 +129,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://www.ruby-toolbox.com/search?utf8=✓&q=autolink' }
it 'matches the full URL' do
is_ expected . to include 'href="https://www.ruby-toolbox.com/search?utf8=✓&q=autolink"'
expect( subject ) . to include 'href="https://www.ruby-toolbox.com/search?utf8=✓&q=autolink"'
end
end
@@ -137,7 +137,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://www.ruby-toolbox.com/search?utf8=✓' }
it 'matches the full URL' do
is_ expected . to include 'href="https://www.ruby-toolbox.com/search?utf8=✓"'
expect( subject ) . to include 'href="https://www.ruby-toolbox.com/search?utf8=✓"'
end
end
@@ -145,7 +145,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&utf81=✓&q=autolink' }
it 'preserves escaped unicode characters' do
is_ expected . to include 'href="https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&utf81=✓&q=autolink"'
expect( subject ) . to include 'href="https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&utf81=✓&q=autolink"'
end
end
end
@@ -154,7 +154,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://en.wikipedia.org/wiki/Diaspora_(software)' }
it 'matches the full URL' do
is_ expected . to include 'href="https://en.wikipedia.org/wiki/Diaspora_(software)"'
expect( subject ) . to include 'href="https://en.wikipedia.org/wiki/Diaspora_(software)"'
end
end
@@ -162,7 +162,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '"https://example.com/"' }
it 'does not match the quotation marks' do
is_ expected . to include 'href="https://example.com/"'
expect( subject ) . to include 'href="https://example.com/"'
end
end
@@ -170,7 +170,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '<https://example.com/>' }
it 'does not match the angle brackets' do
is_ expected . to include 'href="https://example.com/"'
expect( subject ) . to include 'href="https://example.com/"'
end
end
@@ -178,7 +178,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://ja.wikipedia.org/wiki/日本' }
it 'matches the full URL' do
is_ expected . to include 'href="https://ja.wikipedia.org/wiki/日本"'
expect( subject ) . to include 'href="https://ja.wikipedia.org/wiki/日本"'
end
end
@@ -186,7 +186,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://ko.wikipedia.org/wiki/대한민국' }
it 'matches the full URL' do
is_ expected . to include 'href="https://ko.wikipedia.org/wiki/대한민국"'
expect( subject ) . to include 'href="https://ko.wikipedia.org/wiki/대한민국"'
end
end
@@ -194,7 +194,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://example.com/ abc123' }
it 'does not match the full-width space' do
is_ expected . to include 'href="https://example.com/"'
expect( subject ) . to include 'href="https://example.com/"'
end
end
@@ -202,7 +202,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '「[https://example.org/」' }
it 'does not match the quotation marks' do
is_ expected . to include 'href="https://example.org/"'
expect( subject ) . to include 'href="https://example.org/"'
end
end
@@ -210,7 +210,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://baike.baidu.com/item/中华人民共和国' }
it 'matches the full URL' do
is_ expected . to include 'href="https://baike.baidu.com/item/中华人民共和国"'
expect( subject ) . to include 'href="https://baike.baidu.com/item/中华人民共和国"'
end
end
@@ -218,7 +218,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'https://zh.wikipedia.org/wiki/臺灣' }
it 'matches the full URL' do
is_ expected . to include 'href="https://zh.wikipedia.org/wiki/臺灣"'
expect( subject ) . to include 'href="https://zh.wikipedia.org/wiki/臺灣"'
end
end
@@ -226,11 +226,11 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://example.com/b<del>b</del>' }
it 'does not include the HTML in the URL' do
is_ expected . to include '"http://example.com/b"'
expect( subject ) . to include '"http://example.com/b"'
end
it 'escapes the HTML' do
is_ expected . to include '<del>b</del>'
expect( subject ) . to include '<del>b</del>'
end
end
@@ -238,11 +238,11 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://example.com/blahblahblahblah/a<script>alert("Hello")</script>' }
it 'does not include the HTML in the URL' do
is_ expected . to include '"http://example.com/blahblahblahblah/a"'
expect( subject ) . to include '"http://example.com/blahblahblahblah/a"'
end
it 'escapes the HTML' do
is_ expected . to include '<script>alert("Hello")</script>'
expect( subject ) . to include '<script>alert("Hello")</script>'
end
end
@@ -250,7 +250,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '<script>alert("Hello")</script>' }
it 'escapes the HTML' do
is_ expected . to include '<p><script>alert("Hello")</script></p>'
expect( subject ) . to include '<p><script>alert("Hello")</script></p>'
end
end
@@ -258,7 +258,7 @@ RSpec.describe TextFormatter do
let ( :text ) { %q{ <img src="javascript:alert('XSS');"> } }
it 'escapes the HTML' do
is_ expected . to include '<p><img src="javascript:alert('XSS');"></p>'
expect( subject ) . to include '<p><img src="javascript:alert('XSS');"></p>'
end
end
@@ -266,7 +266,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'http://www\.google\.com' }
it 'outputs the raw URL' do
is_ expected . to eq '<p>http://www\.google\.com</p>'
expect( subject ) . to eq '<p>http://www\.google\.com</p>'
end
end
@@ -274,7 +274,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '#hashtag' }
it 'creates a hashtag link' do
is_ expected . to include '/tags/hashtag" class="mention hashtag" rel="tag">#<span>hashtag</span></a>'
expect( subject ) . to include '/tags/hashtag" class="mention hashtag" rel="tag">#<span>hashtag</span></a>'
end
end
@@ -282,7 +282,7 @@ RSpec.describe TextFormatter do
let ( :text ) { '#hashtagタグ' }
it 'creates a hashtag link' do
is_ expected . to include '/tags/hashtag%E3%82%BF%E3%82%B0" class="mention hashtag" rel="tag">#<span>hashtagタグ</span></a>'
expect( subject ) . to include '/tags/hashtag%E3%82%BF%E3%82%B0" class="mention hashtag" rel="tag">#<span>hashtagタグ</span></a>'
end
end
@@ -290,7 +290,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'xmpp:user@instance.com' }
it 'matches the full URI' do
is_ expected . to include 'href="xmpp:user@instance.com"'
expect( subject ) . to include 'href="xmpp:user@instance.com"'
end
end
@@ -298,7 +298,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'please join xmpp:muc@instance.com?join right now' }
it 'matches the full URI' do
is_ expected . to include 'href="xmpp:muc@instance.com?join"'
expect( subject ) . to include 'href="xmpp:muc@instance.com?join"'
end
end
@@ -306,7 +306,7 @@ RSpec.describe TextFormatter do
let ( :text ) { 'wikipedia gives this example of a magnet uri: magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a' }
it 'matches the full URI' do
is_ expected . to include 'href="magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a"'
expect( subject ) . to include 'href="magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a"'
end
end
end