2016-09-09 19:04:34 +01:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Formatter do
|
2017-06-04 13:58:57 +01:00
|
|
|
let(:local_account) { Fabricate(:account, domain: nil, username: 'alice') }
|
|
|
|
let(:remote_account) { Fabricate(:account, domain: 'remote', username: 'bob', url: 'https://remote/') }
|
2017-05-05 18:48:22 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
shared_examples 'encode and link URLs' do
|
|
|
|
context 'matches a stand-alone medium URL' do
|
|
|
|
let(:text) { 'https://hackernoon.com/the-power-to-build-communities-a-response-to-mark-zuckerberg-3f2cac9148a4' }
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://hackernoon.com/the-power-to-build-communities-a-response-to-mark-zuckerberg-3f2cac9148a4"'
|
2017-05-12 16:46:44 +01:00
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a stand-alone google URL' do
|
|
|
|
let(:text) { 'http://google.com' }
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="http://google.com/"'
|
2017-05-12 16:46:44 +01:00
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'matches a stand-alone IDN URL' do
|
|
|
|
let(:text) { 'https://nic.みんな/' }
|
2017-02-22 18:35:11 +00:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://nic.xn--q9jyb4c/"'
|
2017-05-12 16:46:44 +01:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has display URL' do
|
|
|
|
is_expected.to include '<span class="">nic.みんな/</span>'
|
2017-05-12 16:46:44 +01:00
|
|
|
end
|
2017-05-05 18:48:22 +01:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL without trailing period' do
|
|
|
|
let(:text) { 'http://www.mcmansionhell.com/post/156408871451/50-states-of-mcmansion-hell-scottsdale-arizona. ' }
|
2017-05-24 13:32:53 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="http://www.mcmansionhell.com/post/156408871451/50-states-of-mcmansion-hell-scottsdale-arizona"'
|
2017-05-24 13:32:53 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL without closing paranthesis' do
|
|
|
|
let(:text) { '(http://google.com/)' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="http://google.com/"'
|
2017-05-12 16:46:44 +01:00
|
|
|
end
|
2017-05-05 18:48:22 +01:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL without exclamation point' do
|
|
|
|
let(:text) { 'http://www.google.com!' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="http://www.google.com/"'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL without single quote' do
|
|
|
|
let(:text) { "http://www.google.com'" }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="http://www.google.com/"'
|
2017-04-25 14:03:51 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL without angle brackets' do
|
|
|
|
let(:text) { 'http://www.google.com>' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="http://www.google.com/"'
|
2017-04-25 14:03:51 +01:00
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
2017-04-25 14:03:51 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL with a query string' do
|
|
|
|
let(:text) { 'https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&q=autolink' }
|
|
|
|
|
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://www.ruby-toolbox.com/search?utf8=%E2%9C%93&q=autolink"'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'matches a URL with parenthesis in it' do
|
|
|
|
let(:text) { 'https://en.wikipedia.org/wiki/Diaspora_(software)' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://en.wikipedia.org/wiki/Diaspora_(software)"'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
|
|
|
|
2017-09-14 17:03:20 +01:00
|
|
|
context 'matches a URL with Japanese path string' do
|
|
|
|
let(:text) { 'https://ja.wikipedia.org/wiki/日本' }
|
|
|
|
|
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://ja.wikipedia.org/wiki/%E6%97%A5%E6%9C%AC"'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'matches a URL with Korean path string' do
|
|
|
|
let(:text) { 'https://ko.wikipedia.org/wiki/대한민국' }
|
|
|
|
|
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://ko.wikipedia.org/wiki/%EB%8C%80%ED%95%9C%EB%AF%BC%EA%B5%AD"'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'matches a URL with Simplified Chinese path string' do
|
|
|
|
let(:text) { 'https://baike.baidu.com/item/中华人民共和国' }
|
|
|
|
|
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://baike.baidu.com/item/%E4%B8%AD%E5%8D%8E%E4%BA%BA%E6%B0%91%E5%85%B1%E5%92%8C%E5%9B%BD"'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'matches a URL with Traditional Chinese path string' do
|
|
|
|
let(:text) { 'https://zh.wikipedia.org/wiki/臺灣' }
|
|
|
|
|
|
|
|
it 'has valid URL' do
|
|
|
|
is_expected.to include 'href="https://zh.wikipedia.org/wiki/%E8%87%BA%E7%81%A3"'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-16 20:33:52 +01:00
|
|
|
context 'contains unsafe URL (XSS attack, visible part)' do
|
|
|
|
let(:text) { %q{http://example.com/b<del>b</del>} }
|
|
|
|
|
|
|
|
it 'has escaped HTML' do
|
|
|
|
is_expected.to include '<del>b</del>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains unsafe URL (XSS attack, invisible part)' do
|
|
|
|
let(:text) { %q{http://example.com/blahblahblahblah/a<script>alert("Hello")</script>} }
|
|
|
|
|
|
|
|
it 'has escaped HTML' do
|
|
|
|
is_expected.to include '<script>alert("Hello")</script>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'contains HTML (script tag)' do
|
|
|
|
let(:text) { '<script>alert("Hello")</script>' }
|
|
|
|
|
|
|
|
it 'has escaped HTML' do
|
|
|
|
is_expected.to include '<p><script>alert("Hello")</script></p>'
|
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
2017-04-19 13:52:18 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'contains HTML (XSS attack)' do
|
|
|
|
let(:text) { %q{<img src="javascript:alert('XSS');">} }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has escaped HTML' do
|
|
|
|
is_expected.to include '<p><img src="javascript:alert('XSS');"></p>'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'contains invalid URL' do
|
|
|
|
let(:text) { 'http://www\.google\.com' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has raw URL' do
|
|
|
|
is_expected.to eq '<p>http://www\.google\.com</p>'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'contains a hashtag' do
|
|
|
|
let(:text) { '#hashtag' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'has a link' do
|
|
|
|
is_expected.to include '/tags/hashtag" class="mention hashtag" rel="tag">#<span>hashtag</span></a>'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
describe '#format' do
|
|
|
|
subject { Formatter.instance.format(status) }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'with local status' do
|
|
|
|
context 'with reblog' do
|
|
|
|
let(:reblog) { Fabricate(:status, account: local_account, text: 'Hello world', uri: nil) }
|
|
|
|
let(:status) { Fabricate(:status, reblog: reblog) }
|
|
|
|
|
|
|
|
it 'returns original status with credit to its author' do
|
|
|
|
is_expected.to include 'RT <span class="h-card"><a href="https://cb6e6126.ngrok.io/@alice" class="u-url mention">@<span>alice</span></a></span> Hello world'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains plain text' do
|
|
|
|
let(:status) { Fabricate(:status, text: 'text', uri: nil) }
|
|
|
|
|
|
|
|
it 'paragraphizes' do
|
|
|
|
is_expected.to eq '<p>text</p>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains line feeds' do
|
|
|
|
let(:status) { Fabricate(:status, text: "line\nfeed", uri: nil) }
|
|
|
|
|
|
|
|
it 'removes line feeds' do
|
|
|
|
is_expected.not_to include "\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains linkable mentions' do
|
|
|
|
let(:status) { Fabricate(:status, mentions: [ Fabricate(:mention, account: local_account) ], text: '@alice') }
|
|
|
|
|
|
|
|
it 'links' do
|
|
|
|
is_expected.to include '<a href="https://cb6e6126.ngrok.io/@alice" class="u-url mention">@<span>alice</span></a></span>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains unlinkable mentions' do
|
|
|
|
let(:status) { Fabricate(:status, text: '@alice', uri: nil) }
|
|
|
|
|
|
|
|
it 'does not link' do
|
|
|
|
is_expected.to include '@alice'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context do
|
|
|
|
subject do
|
|
|
|
status = Fabricate(:status, text: text, uri: nil)
|
|
|
|
Formatter.instance.format(status)
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'encode and link URLs'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'with remote status' do
|
2017-09-06 18:01:28 +01:00
|
|
|
let(:status) { Fabricate(:status, account: remote_account, text: 'Beep boop') }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'reformats' do
|
|
|
|
is_expected.to eq 'Beep boop'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#reformat' do
|
|
|
|
subject { Formatter.instance.reformat(text) }
|
2017-04-19 13:52:18 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'contains plain text' do
|
|
|
|
let(:text) { 'Beep boop' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'contains plain text' do
|
|
|
|
is_expected.to include 'Beep boop'
|
2017-05-12 16:46:44 +01:00
|
|
|
end
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'contains scripts' do
|
|
|
|
let(:text) { '<script>alert("Hello")</script>' }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'strips scripts' do
|
|
|
|
is_expected.to_not include '<script>alert("Hello")</script>'
|
2017-04-19 13:52:18 +01:00
|
|
|
end
|
2017-02-22 18:35:11 +00:00
|
|
|
end
|
2017-06-17 19:26:05 +01:00
|
|
|
|
|
|
|
context 'contains malicious classes' do
|
|
|
|
let(:text) { '<span class="status__content__spoiler-link">Show more</span>' }
|
|
|
|
|
|
|
|
it 'strips malicious classes' do
|
|
|
|
is_expected.to_not include 'status__content__spoiler-link'
|
|
|
|
end
|
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
2017-05-09 17:17:41 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
describe '#plaintext' do
|
|
|
|
subject { Formatter.instance.plaintext(status) }
|
|
|
|
|
|
|
|
context 'with local status' do
|
|
|
|
let(:status) { Fabricate(:status, text: '<p>a text by a nerd who uses an HTML tag in text</p>', uri: nil) }
|
2017-05-12 16:46:44 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'returns raw text' do
|
|
|
|
is_expected.to eq '<p>a text by a nerd who uses an HTML tag in text</p>'
|
2017-05-09 17:17:41 +01:00
|
|
|
end
|
|
|
|
end
|
2017-05-24 14:36:10 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'with remote status' do
|
2017-09-06 18:01:28 +01:00
|
|
|
let(:status) { Fabricate(:status, account: remote_account, text: '<script>alert("Hello")</script>') }
|
2017-05-24 14:36:10 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'returns tag-stripped text' do
|
|
|
|
is_expected.to eq ''
|
2017-05-24 14:36:10 +01:00
|
|
|
end
|
|
|
|
end
|
2016-09-09 19:04:34 +01:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
describe '#simplified_format' do
|
|
|
|
subject { Formatter.instance.simplified_format(account) }
|
|
|
|
|
|
|
|
context 'with local status' do
|
|
|
|
let(:account) { Fabricate(:account, domain: nil, note: text) }
|
|
|
|
|
|
|
|
context 'contains linkable mentions for local accounts' do
|
|
|
|
let(:text) { '@alice' }
|
|
|
|
|
|
|
|
before { local_account }
|
|
|
|
|
|
|
|
it 'links' do
|
|
|
|
is_expected.to eq '<p><span class="h-card"><a href="https://cb6e6126.ngrok.io/@alice" class="u-url mention">@<span>alice</span></a></span></p>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains linkable mentions for remote accounts' do
|
|
|
|
let(:text) { '@bob@remote' }
|
|
|
|
|
|
|
|
before { remote_account }
|
|
|
|
|
|
|
|
it 'links' do
|
|
|
|
is_expected.to eq '<p><span class="h-card"><a href="https://remote/" class="u-url mention">@<span>bob</span></a></span></p>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'contains unlinkable mentions' do
|
|
|
|
let(:text) { '@alice' }
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'returns raw mention texts' do
|
|
|
|
is_expected.to eq '<p>@alice</p>'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
include_examples 'encode and link URLs'
|
2016-09-09 19:04:34 +01:00
|
|
|
end
|
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
context 'with remote status' do
|
|
|
|
let(:text) { '<script>alert("Hello")</script>' }
|
|
|
|
let(:account) { Fabricate(:account, domain: 'remote', note: text) }
|
|
|
|
|
|
|
|
it 'reformats' do
|
|
|
|
is_expected.to_not include '<script>alert("Hello")</script>'
|
|
|
|
end
|
2016-09-09 19:04:34 +01:00
|
|
|
end
|
2017-06-04 13:58:57 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#sanitize' do
|
|
|
|
let(:html) { '<script>alert("Hello")</script>' }
|
|
|
|
|
|
|
|
subject { Formatter.instance.sanitize(html, Sanitize::Config::MASTODON_STRICT) }
|
2016-09-09 19:04:34 +01:00
|
|
|
|
2017-06-04 13:58:57 +01:00
|
|
|
it 'sanitizes' do
|
|
|
|
is_expected.to eq 'alert("Hello")'
|
2016-09-09 19:04:34 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|