2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe InlineOneboxController do
|
2017-07-19 15:08:54 -04:00
|
|
|
it "requires the user to be logged in" do
|
2018-06-06 05:10:59 -04:00
|
|
|
get "/inline-onebox.json", params: { urls: [] }
|
2018-01-11 22:15:10 -05:00
|
|
|
expect(response.status).to eq(403)
|
2017-07-19 15:08:54 -04:00
|
|
|
end
|
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when logged in" do
|
2018-06-06 05:10:59 -04:00
|
|
|
let!(:user) { sign_in(Fabricate(:user)) }
|
2017-07-19 15:08:54 -04:00
|
|
|
|
|
|
|
it "returns empty JSON for empty input" do
|
2018-06-06 05:10:59 -04:00
|
|
|
get "/inline-onebox.json", params: { urls: [] }
|
|
|
|
expect(response.status).to eq(200)
|
2020-05-07 11:04:12 -04:00
|
|
|
json = response.parsed_body
|
2017-07-19 15:08:54 -04:00
|
|
|
expect(json["inline-oneboxes"]).to eq([])
|
|
|
|
end
|
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "with topic link" do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2017-07-19 15:08:54 -04:00
|
|
|
|
|
|
|
it "returns information for a valid link" do
|
2018-06-06 05:10:59 -04:00
|
|
|
get "/inline-onebox.json", params: { urls: [topic.url] }
|
|
|
|
expect(response.status).to eq(200)
|
2020-05-07 11:04:12 -04:00
|
|
|
json = response.parsed_body
|
2017-07-19 15:08:54 -04:00
|
|
|
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
|