2023-02-22 11:55:31 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-03-26 12:53:34 +11:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe HtmlAwareFormatter do
|
|
|
|
describe '#to_s' do
|
|
|
|
subject { described_class.new(text, local).to_s }
|
|
|
|
|
|
|
|
context 'when local' do
|
|
|
|
let(:local) { true }
|
|
|
|
let(:text) { 'Foo bar' }
|
|
|
|
|
|
|
|
it 'returns formatted text' do
|
2023-02-20 15:00:48 +11:00
|
|
|
expect(subject).to eq '<p>Foo bar</p>'
|
2022-03-26 12:53:34 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when remote' do
|
|
|
|
let(:local) { false }
|
|
|
|
|
2023-05-04 13:49:08 +10:00
|
|
|
context 'when given plain text' do
|
2022-03-26 12:53:34 +11:00
|
|
|
let(:text) { 'Beep boop' }
|
|
|
|
|
|
|
|
it 'keeps the plain text' do
|
2023-02-20 15:00:48 +11:00
|
|
|
expect(subject).to include 'Beep boop'
|
2022-03-26 12:53:34 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 13:49:08 +10:00
|
|
|
context 'when given text containing script tags' do
|
2022-03-26 12:53:34 +11:00
|
|
|
let(:text) { '<script>alert("Hello")</script>' }
|
|
|
|
|
|
|
|
it 'strips the scripts' do
|
2023-02-20 15:00:48 +11:00
|
|
|
expect(subject).to_not include '<script>alert("Hello")</script>'
|
2022-03-26 12:53:34 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-05-04 13:49:08 +10:00
|
|
|
context 'when given text containing malicious classes' do
|
2022-03-26 12:53:34 +11:00
|
|
|
let(:text) { '<span class="mention status__content__spoiler-link">Show more</span>' }
|
|
|
|
|
|
|
|
it 'strips the malicious classes' do
|
2023-02-20 15:00:48 +11:00
|
|
|
expect(subject).to_not include 'status__content__spoiler-link'
|
2022-03-26 12:53:34 +11:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|