discourse/spec/requests/inline_onebox_controller_sp...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1013 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
describe InlineOneboxController do
it "requires the user to be logged in" do
get "/inline-onebox.json", params: { urls: [] }
expect(response.status).to eq(403)
end
context "logged in" do
let!(:user) { sign_in(Fabricate(:user)) }
it "returns empty JSON for empty input" do
get "/inline-onebox.json", params: { urls: [] }
expect(response.status).to eq(200)
json = response.parsed_body
expect(json['inline-oneboxes']).to eq([])
end
context "topic link" do
fab!(:topic) { Fabricate(:topic) }
it "returns information for a valid link" do
get "/inline-onebox.json", params: { urls: [ topic.url ] }
expect(response.status).to eq(200)
json = response.parsed_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