2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe Admin::PluginsController do
|
2022-11-02 23:42:44 -04:00
|
|
|
fab!(:admin) { Fabricate(:admin) }
|
|
|
|
fab!(:moderator) { Fabricate(:moderator) }
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
2015-02-10 11:18:16 -05:00
|
|
|
|
2022-11-02 23:42:44 -04: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-10 11:18:16 -05:00
|
|
|
|
2022-11-02 23:42:44 -04: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 00:33:07 -04:00
|
|
|
end
|
2015-02-10 11:18:16 -05:00
|
|
|
|
2022-11-02 23:42:44 -04: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-10 11:18:16 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|