Sha256: c682a1ba73ffc28a99f0a0f1410577929f89ff6f20e6c299ab7a1c56fc690610

Contents?: true

Size: 1.4 KB

Versions: 48

Compression:

Stored size: 1.4 KB

Contents

require "spec_helper"

class TestEngine
  def self.===(uri)
    true
  end
end

describe Onebox::Matcher do

  describe "oneboxed" do

    describe "with a path" do
      let(:url) { "http://party.time.made.up-url.com/beep/boop" }
      let(:matcher) { Onebox::Matcher.new(url) }

      it "finds an engine" do
        matcher.stubs(:ordered_engines).returns([TestEngine])
        expect(matcher.oneboxed).not_to be_nil
      end
    end

    describe "without a path" do
      let(:url) { "http://party.time.made.up-url.com/" }
      let(:matcher) { Onebox::Matcher.new(url) }

      it "doesn't find an engine" do
        matcher.stubs(:ordered_engines).returns([TestEngine])
        expect(matcher.oneboxed).to be_nil
      end
    end

    describe "without a path but has a query string" do
      let(:url) { "http://party.time.made.up-url.com/?article_id=1234" }
      let(:matcher) { Onebox::Matcher.new(url) }

      it "it finds an engine" do
        matcher.stubs(:ordered_engines).returns([TestEngine])
        expect(matcher.oneboxed).not_to be_nil
      end
    end

    describe "without a path but has a fragment string" do
      let(:url) { "http://party.time.made.up-url.com/#article_id=1234" }
      let(:matcher) { Onebox::Matcher.new(url) }

      it "it finds an engine" do
        matcher.stubs(:ordered_engines).returns([TestEngine])
        expect(matcher.oneboxed).not_to be_nil
      end
    end

  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

Version Path
onebox-1.6.9 spec/lib/onebox/matcher_spec.rb
onebox-1.6.8 spec/lib/onebox/matcher_spec.rb
onebox-1.6.7 spec/lib/onebox/matcher_spec.rb
onebox-1.6.6 spec/lib/onebox/matcher_spec.rb
onebox-1.6.5 spec/lib/onebox/matcher_spec.rb
onebox-1.6.4 spec/lib/onebox/matcher_spec.rb
onebox-1.6.3 spec/lib/onebox/matcher_spec.rb
onebox-1.6.2 spec/lib/onebox/matcher_spec.rb
onebox-1.6.1 spec/lib/onebox/matcher_spec.rb
onebox-1.6.0 spec/lib/onebox/matcher_spec.rb
onebox-1.5.65 spec/lib/onebox/matcher_spec.rb
onebox-1.5.64 spec/lib/onebox/matcher_spec.rb
onebox-1.5.63 spec/lib/onebox/matcher_spec.rb
onebox-1.5.62 spec/lib/onebox/matcher_spec.rb
onebox-1.5.61 spec/lib/onebox/matcher_spec.rb
onebox-1.5.60 spec/lib/onebox/matcher_spec.rb
onebox-1.5.50 spec/lib/onebox/matcher_spec.rb
onebox-1.5.49 spec/lib/onebox/matcher_spec.rb
onebox-1.5.48 spec/lib/onebox/matcher_spec.rb
onebox-1.5.47 spec/lib/onebox/matcher_spec.rb