2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Admin::EmbeddingController do
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:admin)
|
|
|
|
fab!(:moderator)
|
|
|
|
fab!(:user)
|
2022-11-03 11:42:44 +08:00
|
|
|
|
|
|
|
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
|
2015-08-19 05:15:46 +08:00
|
|
|
end
|
|
|
|
end
|