discourse/spec/lib/onebox/engine/pdf_onebox_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors.

By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
2022-03-01 17:50:50 +00:00

29 lines
1.0 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# frozen_string_literal: true
describe Onebox::Engine::PdfOnebox do
let(:link) { "https://acrobatusers.com/assets/uploads/public_downloads/2217/adobe-acrobat-xi-merge-pdf-files-tutorial-ue.pdf" }
let(:html) { described_class.new(link).to_html }
let(:no_content_length_link) { "https://dspace.lboro.ac.uk/dspace-jspui/bitstream/2134/14294/3/greiffenhagen-ca_and_consumption.pdf" }
let(:no_filesize_html) { described_class.new(no_content_length_link).to_html }
before do
stub_request(:head, link).to_return(status: 200, headers: { "Content-Length" => "335562" })
stub_request(:head, no_content_length_link).to_return(status: 200)
end
describe "#to_html" do
it "includes filename" do
expect(html).to include("adobe-acrobat-xi-merge-pdf-files-tutorial-ue.pdf")
end
it "includes filesize" do
expect(html).to include("327.70 KB")
end
it "doesnt include filesize when unknown" do
expect(no_filesize_html).to_not include("<p class='filesize'>")
end
end
end