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

64 lines
1.2 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 do
SiteSetting.styleguide_enabled = true
end
context 'when styleguide is admin only' do
before do
SiteSetting.styleguide_admin_only = true
end
context 'when user is admin' do
before do
sign_in(Fabricate(:admin))
end
it 'shows the styleguide' do
get '/styleguide'
expect(response.status).to eq(200)
end
end
context 'when user is not admin' do
before do
sign_in(Fabricate(:user))
end
it 'doesnt allow access' do
get '/styleguide'
expect(response.status).to eq(403)
end
end
end
end
RSpec.describe 'SiteSetting.styleguide_enabled' do
before do
sign_in(Fabricate(:admin))
end
context 'when style is enabled' do
before do
SiteSetting.styleguide_enabled = true
end
it 'shows the styleguide' do
get '/styleguide'
expect(response.status).to eq(200)
end
end
context 'when styleguide is disabled' do
before do
SiteSetting.styleguide_enabled = false
end
it 'returns a page not found' do
get '/styleguide'
expect(response.status).to eq(404)
end
end
end