require "spec_helper"
describe Onebox::Preview do
before do
fake("https://www.amazon.com/product", response("amazon"))
FakeWeb.register_uri(:get, "https://www.amazon.com/404-url", status: 404)
FakeWeb.register_uri(:get, "https://www.amazon.com/500-url", status: 500)
FakeWeb.register_uri(:get, "https://www.amazon.com/error-url", status: 500)
FakeWeb.register_uri(:get, "https://www.amazon.com/timeout-url", exception: Timeout::Error)
FakeWeb.register_uri(:get, "https://www.amazon.com/http-error", exception: Net::HTTPError)
FakeWeb.register_uri(:get, "https://www.amazon.com/error-connecting", exception: Errno::ECONNREFUSED)
end
let(:preview_url) { "http://www.amazon.com/product" }
let(:preview) { described_class.new(preview_url) }
describe "#to_s" do
it "returns some html if given a valid url" do
title = "Seven Languages in Seven Weeks: A Pragmatic Guide to Learning Programming Languages (Pragmatic Programmers)"
expect(preview.to_s).to include(title)
end
it "returns an empty string if the resource is missing" do
expect(described_class.new("http://www.amazon.com/404-url").to_s).to eq("")
end
it "returns an empty string if the resource returns an error" do
expect(described_class.new("http://www.amazon.com/500-url").to_s).to eq("")
end
it "returns an empty string if the resource times out" do
expect(described_class.new("http://www.amazon.com/timeout-url").to_s).to eq("")
end
it "returns an empty string if there is an http error" do
expect(described_class.new("http://www.amazon.com/http-error").to_s).to eq("")
end
it "returns an empty string if there is an error connecting" do
expect(described_class.new("http://www.amazon.com/error-connecting").to_s).to eq("")
end
it "returns an empty string if the url is not valid" do
expect(described_class.new('not a url').to_s).to eq("")
end
end
describe "max_width" do
let(:iframe_html) { '' }
it "doesn't change dimensions without an option" do
iframe = described_class.new(preview_url)
iframe.expects(:engine_html).returns(iframe_html)
result = iframe.to_s
expect(result).to include("width=\"1280\"")
expect(result).to include("height=\"720\"")
end
it "doesn't change dimensions if it is smaller than `max_width`" do
iframe = described_class.new(preview_url, max_width: 2000)
iframe.expects(:engine_html).returns(iframe_html)
result = iframe.to_s
expect(result).to include("width=\"1280\"")
expect(result).to include("height=\"720\"")
end
it "changes dimensions if larger than `max_width`" do
iframe = described_class.new(preview_url, max_width: 900)
iframe.expects(:engine_html).returns(iframe_html)
result = iframe.to_s
expect(result).to include("width=\"900\"")
expect(result).to include("height=\"506\"")
end
end
describe "#engine" do
it "returns an engine" do
expect(preview.send(:engine)).to be_an(Onebox::Engine)
end
end
describe "xss" do
let(:xss) { "wat' onerror='alert(/XSS/)" }
let(:img_html) { "" }
it "prevents XSS" do
preview = described_class.new(preview_url)
preview.expects(:engine_html).returns(img_html)
result = preview.to_s
expect(result).not_to match(/onerror/)
end
end
end