discourse/spec/requests/inline_onebox_controller_spec.rb
David Taylor c9dab6fd08
DEV: Automatically require 'rails_helper' in all specs (#16077)
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors.

By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
2022-03-01 17:50:50 +00:00

36 lines
989 B
Ruby

# frozen_string_literal: true
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