2021-05-26 05:41:35 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe Onebox do
|
2021-05-26 05:41:35 -04:00
|
|
|
before do
|
|
|
|
stub_request(:get, "https://www.amazon.com/product").to_return(
|
|
|
|
status: 200,
|
|
|
|
body: onebox_response("amazon"),
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "templates" do
|
|
|
|
let(:ignored) { ["templates/_layout.mustache"] }
|
|
|
|
let(:templates) { Dir["templates/*.mustache"] - ignored }
|
|
|
|
|
|
|
|
def expect_templates_to_not_match(text)
|
|
|
|
templates.each { |template| expect(File.read(template)).not_to match(text) }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not contain any script tags" do
|
|
|
|
expect_templates_to_not_match(/<script/)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "has_matcher?" do
|
|
|
|
it "has a matcher for a real site" do
|
|
|
|
expect(Onebox.has_matcher?("http://www.youtube.com/watch?v=azaIE6QSMUs")).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|