discourse/spec/controllers/onebox_controller_spec.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
describe OneboxController do
let(:url) { "http://google.com" }
2013-02-05 14:16:51 -05:00
it 'invalidates the cache if refresh is passed' do
2013-03-21 20:47:44 -04:00
Oneboxer.expects(:preview).with(url, invalidate_oneboxes: true)
xhr :get, :show, url: url, refresh: 'true'
end
describe "found onebox" do
let(:body) { "this is the onebox body"}
before do
2013-03-21 20:47:44 -04:00
Oneboxer.expects(:preview).with(url, invalidate_oneboxes: false).returns(body)
xhr :get, :show, url: url
end
it 'returns success' do
2015-01-09 12:04:02 -05:00
expect(response).to be_success
end
it 'returns the onebox response in the body' do
2015-01-09 12:04:02 -05:00
expect(response.body).to eq(body)
end
end
describe "missing onebox" do
it "returns 404 if the onebox is nil" do
2013-03-21 20:47:44 -04:00
Oneboxer.expects(:preview).with(url, invalidate_oneboxes: false).returns(nil)
xhr :get, :show, url: url
2015-01-09 12:04:02 -05:00
expect(response.response_code).to eq(404)
end
it "returns 404 if the onebox is an empty string" do
2013-03-21 20:47:44 -04:00
Oneboxer.expects(:preview).with(url, invalidate_oneboxes: false).returns(" \t ")
xhr :get, :show, url: url
2015-01-09 12:04:02 -05:00
expect(response.response_code).to eq(404)
end
2013-02-05 14:16:51 -05:00
end
end