discourse/spec/requests/admin/embedding_controller_spec.rb
Daniel Waterworth 6e161d3e75
DEV: Allow fab! without block (#24314)
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.
2023-11-09 16:47:59 -06:00

90 lines
2.3 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Admin::EmbeddingController do
fab!(:admin)
fab!(:moderator)
fab!(:user)
describe "#show" do
context "when logged in as an admin" do
before { sign_in(admin) }
it "returns embedding" do
get "/admin/customize/embedding.json"
expect(response.status).to eq(200)
expect(response.parsed_body["embedding"]).to be_present
end
end
shared_examples "embedding accessible" do
it "returns embedding" do
get "/admin/customize/embedding.json"
expect(response.status).to eq(404)
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
end
end
context "when logged in as a moderator" do
before { sign_in(moderator) }
include_examples "embedding accessible"
end
context "when logged in as a non-staff user" do
before { sign_in(user) }
include_examples "embedding accessible"
end
end
describe "#update" do
context "when logged in as an admin" do
before { sign_in(admin) }
it "updates embedding" do
put "/admin/customize/embedding.json",
params: {
embedding: {
embed_by_username: "system",
embed_post_limit: 200,
},
}
expect(response.status).to eq(200)
expect(response.parsed_body["embedding"]["embed_by_username"]).to eq("system")
expect(response.parsed_body["embedding"]["embed_post_limit"]).to eq(200)
end
end
shared_examples "embedding updates not allowed" do
it "prevents updates with a 404 response" do
put "/admin/customize/embedding.json",
params: {
embedding: {
embed_by_username: "system",
embed_post_limit: 200,
},
}
expect(response.status).to eq(404)
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
expect(response.parsed_body["embedding"]).to be_nil
end
end
context "when logged in as a moderator" do
before { sign_in(moderator) }
include_examples "embedding updates not allowed"
end
context "when logged in as a moderator" do
before { sign_in(user) }
include_examples "embedding updates not allowed"
end
end
end