Sha256: 3a9105902b7c2c2d74ff19350cad4b4753a024eb278cb7380eef4e0606e6cf83

Contents?: true

Size: 1.58 KB

Versions: 11

Compression:

Stored size: 1.58 KB

Contents

require "spec_helper"

describe Onebox do

  before do
    fake("http://www.amazon.com", response("amazon"))
  end

  describe ".preview" do
    let(:url) { "http://www.amazon.com/product" }
    it "creates a cache that responds as expected" do
      preview = Onebox.preview(url)
      cache = preview.cache
      expect(cache).to respond_to(:key?, :store, :fetch)
    end

    it "stores the value in cache if it doesn't exist" do
      preview = Onebox.preview(url)
      preview.to_s
      cache = preview.cache
      expect(cache.key?(url)).to eq(true)
    end

    it "replaces the cache if the cache is expired" do
      preview = Onebox.preview(url, cache: Moneta.new(:Memory, expires: 100_000, serializer: :json))
      cache = preview.cache
      expect(cache.fetch(url)).to be(nil)
    end
  end

  describe "templates" do
    let(:ignored)  { ["templates/_layout.mustache"] }
    let(:templates) { Dir["templates/*.mustache"] - ignored }

    def expect_templates_to_not_match(text)
      templates.each do |template|
        expect(File.read(template)).not_to match(text)
      end
    end

    it "should not contain any script tags" do
      expect_templates_to_not_match(/<script/)
    end
  end

  describe 'has_matcher?' do
    before do
      Onebox::Engine::WhitelistedGenericOnebox.whitelist = %w(youtube.com)
    end
    it "has no matcher for a made up url" do
      expect(Onebox.has_matcher?("http://wow.com/omg/doge")).to be_false
    end

    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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
onebox-1.5.17 spec/lib/onebox_spec.rb
onebox-1.5.16 spec/lib/onebox_spec.rb
onebox-1.5.14 spec/lib/onebox_spec.rb
onebox-1.5.13 spec/lib/onebox_spec.rb
onebox-1.5.12 spec/lib/onebox_spec.rb
onebox-1.5.11 spec/lib/onebox_spec.rb
onebox-1.5.10 spec/lib/onebox_spec.rb
onebox-1.5.9 spec/lib/onebox_spec.rb
onebox-1.5.8 spec/lib/onebox_spec.rb
onebox-1.5.7 spec/lib/onebox_spec.rb
onebox-1.5.6 spec/lib/onebox_spec.rb