2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 21:27:38 -05:00
|
|
|
RSpec.describe Admin::PluginsController do
|
2023-11-09 16:47:59 -06:00
|
|
|
fab!(:admin)
|
|
|
|
fab!(:moderator)
|
|
|
|
fab!(:user)
|
2015-02-10 10:18:16 -06:00
|
|
|
|
2022-11-02 22:42:44 -05: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 10:18:16 -06:00
|
|
|
|
2022-11-02 22:42:44 -05: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-10 23:33:07 -05:00
|
|
|
end
|
2015-02-10 10:18:16 -06:00
|
|
|
|
2022-11-02 22:42:44 -05: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 10:18:16 -06:00
|
|
|
end
|
|
|
|
end
|
2024-03-12 22:15:12 -05:00
|
|
|
|
|
|
|
describe "#show" do
|
|
|
|
before do
|
|
|
|
spoiler_alert =
|
|
|
|
Plugin::Instance.parse_from_source(
|
|
|
|
File.join(Rails.root, "plugins", "spoiler-alert", "plugin.rb"),
|
|
|
|
)
|
|
|
|
poll =
|
|
|
|
Plugin::Instance.parse_from_source(File.join(Rails.root, "plugins", "poll", "plugin.rb"))
|
|
|
|
|
|
|
|
Discourse.stubs(:plugins_by_name).returns(
|
|
|
|
{ "discourse-spoiler-alert" => spoiler_alert, "poll" => poll },
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "while logged in as an admin" do
|
|
|
|
before { sign_in(admin) }
|
|
|
|
|
|
|
|
it "returns a plugin" do
|
|
|
|
get "/admin/plugins/poll.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body["name"]).to eq("poll")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns a plugin with the discourse- prefix if the prefixless version is queried" do
|
|
|
|
get "/admin/plugins/spoiler-alert.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body["name"]).to eq("spoiler-alert")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "404s if the plugin is not found" do
|
|
|
|
get "/admin/plugins/casino.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
|
|
|
|
end
|
2024-04-02 08:26:15 -05:00
|
|
|
|
|
|
|
it "404s if the plugin is not visible" do
|
|
|
|
poll = Discourse.plugins_by_name["poll"]
|
|
|
|
poll.stubs(:visible?).returns(false)
|
|
|
|
|
|
|
|
get "/admin/plugins/poll.json"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
2024-03-12 22:15:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context "when logged in as a moderator" do
|
|
|
|
before { sign_in(moderator) }
|
|
|
|
|
|
|
|
it "returns plugins" do
|
|
|
|
get "/admin/plugins/poll.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(response.parsed_body["name"]).to eq("poll")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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/poll.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
expect(response.parsed_body["errors"]).to include(I18n.t("not_found"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-02-10 10:18:16 -06:00
|
|
|
end
|