2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Admin::PluginsController do
|
2022-11-03 11:42:44 +08:00
|
|
|
fab!(:admin) { Fabricate(:admin) }
|
|
|
|
fab!(:moderator) { Fabricate(:moderator) }
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
2015-02-11 00:18:16 +08:00
|
|
|
|
2022-11-03 11:42:44 +08:00
|
|
|
describe "#index" do
|
|
|
|
context "while logged in as an admin" do
|
|
|
|
before { sign_in(admin) }
|
|
|
|
|
|
|
|
it "returns plugins" do
|
|
|
|
get "/admin/plugins.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body.has_key?("plugins")).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
2015-02-11 00:18:16 +08:00
|
|
|
|
2022-11-03 11:42:44 +08:00
|
|
|
context "when logged in as a moderator" do
|
|
|
|
before { sign_in(moderator) }
|
|
|
|
|
|
|
|
it "returns plugins" do
|
|
|
|
get "/admin/plugins.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body.has_key?("plugins")).to eq(true)
|
|
|
|
end
|
2018-06-11 12:33:07 +08:00
|
|
|
end
|
2015-02-11 00:18:16 +08:00
|
|
|
|
2022-11-03 11:42:44 +08:00
|
|
|
context "when logged in as a non-staff user" do
|
|
|
|
before { sign_in(user) }
|
|
|
|
|
|
|
|
it "denies access with a 404 response" do
|
|
|
|
get "/admin/plugins.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
|
|
|
|
end
|
2015-02-11 00:18:16 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|