mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 18:33:37 +08:00
3882722195
see: https://meta.discourse.org/t/mini-inline-onebox-support-rfc/66400?source_topic_id=66066
38 lines
919 B
Ruby
38 lines
919 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
|
|
|