2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/spec/controllers/inline_onebox_controller_spec.rb
2017-07-28 10:20:09 +09:00

36 lines
918 B
Ruby

require 'rails_helper'
describe InlineOneboxController do
it "requires the user to be logged in" do
expect { xhr :get, :show, urls: [] }.to raise_error(Discourse::NotLoggedIn)
end
context "logged in" do
let!(:user) { log_in(:user) }
it "returns empty JSON for empty input" do
xhr :get, :show, urls: []
expect(response).to be_success
json = JSON.parse(response.body)
expect(json['inline-oneboxes']).to eq([])
end
context "topic link" do
let(:topic) { Fabricate(:topic) }
it "returns information for a valid link" do
xhr :get, :show, urls: [ topic.url ]
expect(response).to be_success
json = JSON.parse(response.body)
onebox = json['inline-oneboxes'][0]
expect(onebox).to be_present
expect(onebox['url']).to eq(topic.url)
expect(onebox['title']).to eq(topic.title)
end
end
end
end