Add coverage for extra attributes scenario in Admin::Trends::StatusesHelper#one_line_preview method ()

This commit is contained in:
Matt Jankowski 2025-04-02 08:52:54 -04:00 committed by GitHub
parent 0653374c34
commit 501ced4239
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,6 +28,19 @@ RSpec.describe Admin::Trends::StatusesHelper do
end
end
context 'with a remote status that has excessive attributes' do
let(:attr_limit) { Nokogiri::Gumbo::DEFAULT_MAX_ATTRIBUTES * 2 }
let(:html) { "<html><body #{(1..attr_limit).map { |x| "attr-#{x}" }.join(' ')}><p>text</p></body></html>" }
let(:status) { Fabricate.build(:status, uri: 'https://host.example', text: html) }
it 'renders a correct preview text' do
result = helper.one_line_preview(status)
expect(result).to eq ''
end
end
context 'with a status that has empty text' do
let(:status) { Fabricate.build(:status, text: '') }