Files
discourse/plugins/chat/spec/requests/application_controller_spec.rb
Ted Johansson bb12f8275d DEV: Only include custom admin UIs in the plugins index tabs (#31192)
In the current admin index page, all plugins show up as tabs. This includes plugins with auto-generated config routes.

This changes the tabs to include only plugins with custom UIs.
2025-02-05 15:02:46 +08:00

47 lines
1.2 KiB
Ruby

# frozen_string_literal: true
RSpec.describe ApplicationController do
fab!(:user)
fab!(:admin)
def preloaded_json
JSON.parse(
Nokogiri::HTML5.fragment(response.body).css("div#data-preloaded").first["data-preloaded"],
)
end
before do
SiteSetting.chat_enabled = true
SiteSetting.chat_allowed_groups = Group::AUTO_GROUPS[:trust_level_0]
end
context "when user is admin" do
it "has correctly loaded preloaded data for visiblePlugins" do
sign_in(admin)
get "/latest"
expect(JSON.parse(preloaded_json["visiblePlugins"])).to include(
{
"name" => "chat",
"humanized_name" => "Chat",
"admin_route" => {
"label" => "chat.admin.title",
"location" => "chat",
"full_location" => "adminPlugins.show",
"use_new_show_route" => true,
"auto_generated" => false,
},
"enabled" => true,
},
)
end
end
context "when user is not admin" do
it "does not include preloaded data for visiblePlugins" do
sign_in(user)
get "/latest"
expect(preloaded_json["visiblePlugins"]).to eq(nil)
end
end
end