mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:54:16 +08:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
35 lines
980 B
Ruby
35 lines
980 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.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 "when 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 "with topic link" do
|
|
fab!(: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
|