2019-06-16 21:46:36 +02:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
|
|
describe Sanitize::Config do
|
2020-05-28 12:47:40 +02:00
|
|
|
|
shared_examples 'common HTML sanitization' do
|
2019-06-19 16:19:32 +02:00
|
|
|
|
it 'keeps h1' do
|
|
|
|
|
expect(Sanitize.fragment('<h1>Foo</h1>', subject)).to eq '<h1>Foo</h1>'
|
2019-06-16 21:46:36 +02:00
|
|
|
|
end
|
|
|
|
|
|
2019-06-19 16:19:32 +02:00
|
|
|
|
it 'keeps ul' do
|
|
|
|
|
expect(Sanitize.fragment('<p>Check out:</p><ul><li>Foo</li><li>Bar</li></ul>', subject)).to eq '<p>Check out:</p><ul><li>Foo</li><li>Bar</li></ul>'
|
2019-06-16 21:46:36 +02:00
|
|
|
|
end
|
2020-02-08 21:22:38 +01:00
|
|
|
|
|
2020-07-01 00:06:22 +02:00
|
|
|
|
it 'keeps start and reversed attributes of ol' do
|
|
|
|
|
expect(Sanitize.fragment('<p>Check out:</p><ol start="3" reversed=""><li>Foo</li><li>Bar</li></ol>', subject)).to eq '<p>Check out:</p><ol start="3" reversed=""><li>Foo</li><li>Bar</li></ol>'
|
|
|
|
|
end
|
|
|
|
|
|
2020-02-08 21:22:38 +01:00
|
|
|
|
it 'removes a without href' do
|
|
|
|
|
expect(Sanitize.fragment('<a>Test</a>', subject)).to eq 'Test'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'removes a without href and only keeps text content' do
|
|
|
|
|
expect(Sanitize.fragment('<a><span class="invisible">foo&</span><span>Test</span></a>', subject)).to eq 'foo&Test'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'removes a with unsupported scheme in href' do
|
|
|
|
|
expect(Sanitize.fragment('<a href="foo://bar">Test</a>', subject)).to eq 'Test'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'keeps a with href' do
|
2020-03-22 16:59:29 +01:00
|
|
|
|
expect(Sanitize.fragment('<a href="http://example.com">Test</a>', subject)).to eq '<a href="http://example.com" rel="nofollow noopener noreferrer" target="_blank">Test</a>'
|
|
|
|
|
end
|
|
|
|
|
|
2020-05-28 12:47:40 +02:00
|
|
|
|
it 'removes a with unparsable href' do
|
|
|
|
|
expect(Sanitize.fragment('<a href=" https://google.fr">Test</a>', subject)).to eq 'Test'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it 'keeps a with supported scheme and no host' do
|
|
|
|
|
expect(Sanitize.fragment('<a href="dweb:/a/foo">Test</a>', subject)).to eq '<a href="dweb:/a/foo" rel="nofollow noopener noreferrer" target="_blank">Test</a>'
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2022-03-28 20:51:51 +02:00
|
|
|
|
describe '::MASTODON_OUTGOING' do
|
|
|
|
|
subject { Sanitize::Config::MASTODON_OUTGOING }
|
2020-05-28 12:47:40 +02:00
|
|
|
|
|
|
|
|
|
around do |example|
|
|
|
|
|
original_web_domain = Rails.configuration.x.web_domain
|
|
|
|
|
example.run
|
|
|
|
|
Rails.configuration.x.web_domain = original_web_domain
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it_behaves_like 'common HTML sanitization'
|
2020-03-22 17:56:49 +01:00
|
|
|
|
|
2022-03-28 20:51:51 +02:00
|
|
|
|
it 'keeps a with href and rel tag, not adding to rel or target if url is local' do
|
2020-03-22 17:56:49 +01:00
|
|
|
|
Rails.configuration.x.web_domain = 'domain.test'
|
2022-03-28 20:51:51 +02:00
|
|
|
|
expect(Sanitize.fragment('<a href="http://domain.test/tags/foo" rel="tag">Test</a>', subject)).to eq '<a href="http://domain.test/tags/foo" rel="tag">Test</a>'
|
2020-02-08 21:22:38 +01:00
|
|
|
|
end
|
2019-06-16 21:46:36 +02:00
|
|
|
|
end
|
|
|
|
|
end
|