discourse/spec/components/oneboxer_spec.rb

186 lines
4.6 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
require 'oneboxer'
2013-02-25 11:42:20 -05:00
describe "Dynamic Oneboxer" do
2013-02-06 00:22:11 -05:00
class DummyDynamicOnebox < Oneboxer::BaseOnebox
2013-02-25 11:42:20 -05:00
matcher do
2013-02-06 00:22:11 -05:00
/^https?:\/\/dummy2.localhost/
end
2013-02-25 11:42:20 -05:00
2013-02-06 00:22:11 -05:00
def onebox
"dummy2!"
end
end
before do
Oneboxer.add_onebox DummyDynamicOnebox
@dummy_onebox_url = "http://dummy2.localhost/dummy-object"
end
context 'find onebox for url' do
it 'returns blank with an unknown url' do
Oneboxer.onebox_for_url('http://asdfasdfasdfasdf.asdf').should be_blank
end
it 'returns something when matched' do
Oneboxer.onebox_for_url(@dummy_onebox_url).should be_present
end
it 'returns an instance of our class when matched' do
Oneboxer.onebox_for_url(@dummy_onebox_url).kind_of?(DummyDynamicOnebox).should be_true
end
end
end
2013-02-05 14:16:51 -05:00
describe Oneboxer do
# A class to help us test
class DummyOnebox < Oneboxer::BaseOnebox
matcher /^https?:\/\/dummy.localhost/
def onebox
"dummy!"
end
end
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
before do
Oneboxer.add_onebox DummyOnebox
@dummy_onebox_url = "http://dummy.localhost/dummy-object"
end
it 'should have matchers set up by default' do
Oneboxer.matchers.should be_present
end
context 'find onebox for url' do
it 'returns blank with an unknown url' do
Oneboxer.onebox_for_url('http://asdfasdfasdfasdf.asdf').should be_blank
end
it 'returns something when matched' do
Oneboxer.onebox_for_url(@dummy_onebox_url).should be_present
end
it 'returns an instance of our class when matched' do
Oneboxer.onebox_for_url(@dummy_onebox_url).kind_of?(DummyOnebox).should be_true
end
end
2013-03-01 18:46:55 -05:00
describe '#nice_host' do
it 'strips www from the domain' do
DummyOnebox.new('http://www.cnn.com/thing').nice_host.should eq 'cnn.com'
end
it 'respects double TLDs' do
DummyOnebox.new('http://news.bbc.co.uk/thing').nice_host.should eq 'news.bbc.co.uk'
end
it 'returns an empty string if the URL is bogus' do
DummyOnebox.new('whatever').nice_host.should eq ''
end
it 'returns an empty string if the URL unparsable' do
DummyOnebox.new(nil).nice_host.should eq ''
end
end
2013-02-25 11:42:20 -05:00
context 'without caching' do
2013-02-05 14:16:51 -05:00
it 'calls the onebox method of our matched class' do
Oneboxer.onebox_nocache(@dummy_onebox_url).should == 'dummy!'
end
end
context 'with caching' do
context 'initial cache is empty' do
it 'has no OneboxRender records' do
OneboxRender.count.should == 0
end
it 'calls the onebox_nocache method if there is no cache record yet' do
Oneboxer.expects(:onebox_nocache).with(@dummy_onebox_url).once
Oneboxer.onebox(@dummy_onebox_url)
end
end
context 'caching result' do
before do
@post = Fabricate(:post)
@result = Oneboxer.onebox(@dummy_onebox_url, post_id: @post.id)
@onebox_render = OneboxRender.where(url: @dummy_onebox_url).first
end
it "returns the correct result" do
@result.should == 'dummy!'
end
it "created a OneboxRender record with the url" do
@onebox_render.should be_present
end
it "created a OneboxRender record with the url" do
2013-02-25 11:42:20 -05:00
@onebox_render.url.should == @dummy_onebox_url
2013-02-05 14:16:51 -05:00
end
it "associated the render with a post" do
@onebox_render.posts.should == [@post]
end
it "has an expires_at value" do
@onebox_render.expires_at.should be_present
end
it "doesn't call onebox_nocache on a cache hit" do
Oneboxer.expects(:onebox_nocache).never
Oneboxer.onebox(@dummy_onebox_url).should == 'dummy!'
end
context 'invalidating cache' do
it "deletes the onebox render" do
Oneboxer.expects(:onebox_nocache).once.returns('new cache value!')
Oneboxer.onebox(@dummy_onebox_url, invalidate_oneboxes: true).should == 'new cache value!'
end
end
end
end
context 'each_onebox_link' do
before do
@html = "<a href='http://discourse.org' class='onebox'>Discourse Link</a>"
end
it 'yields each url and element when given a string' do
result = Oneboxer.each_onebox_link(@html) do |url, element|
2013-02-12 09:46:45 -05:00
element.is_a?(Nokogiri::XML::Element).should be_true
2013-02-05 14:16:51 -05:00
url.should == 'http://discourse.org'
end
2013-02-12 09:46:45 -05:00
result.kind_of?(Nokogiri::HTML::Document).should be_true
2013-02-05 14:16:51 -05:00
end
it 'yields each url and element when given a doc' do
2013-02-12 09:46:45 -05:00
doc = Nokogiri::HTML(@html)
2013-02-05 14:16:51 -05:00
Oneboxer.each_onebox_link(doc) do |url, element|
2013-02-12 09:46:45 -05:00
element.is_a?(Nokogiri::XML::Element).should be_true
2013-02-05 14:16:51 -05:00
url.should == 'http://discourse.org'
end
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
end
2013-02-25 11:42:20 -05:00