Add coverage for extra attributes scenario in Admin::Trends::StatusesHelper#one_line_preview
method (#34353)
This commit is contained in:
parent
0653374c34
commit
501ced4239
1 changed files with 13 additions and 0 deletions
|
@ -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: '') }
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue