discourse/plugins/styleguide/spec/integration/access_spec.rb

50 lines
1.1 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# frozen_string_literal: true
RSpec.describe "SiteSetting.styleguide_admin_only" do
before { SiteSetting.styleguide_enabled = true }
context "when styleguide is admin only" do
before { SiteSetting.styleguide_admin_only = true }
context "when user is admin" do
before { sign_in(Fabricate(:admin)) }
it "shows the styleguide" do
get "/styleguide"
expect(response.status).to eq(200)
end
end
context "when user is not admin" do
before { sign_in(Fabricate(:user)) }
it "doesnt allow access" do
get "/styleguide"
expect(response.status).to eq(403)
end
end
end
end
RSpec.describe "SiteSetting.styleguide_enabled" do
before { sign_in(Fabricate(:admin)) }
context "when style is enabled" do
before { SiteSetting.styleguide_enabled = true }
it "shows the styleguide" do
get "/styleguide"
expect(response.status).to eq(200)
end
end
context "when styleguide is disabled" do
before { SiteSetting.styleguide_enabled = false }
it "returns a page not found" do
get "/styleguide"
expect(response.status).to eq(404)
end
end
end