mirror of
https://github.com/discourse/discourse.git
synced 2025-03-10 14:08:04 +08:00

* Remove outdated option
04078317ba
* Use the non-globally exposed RSpec syntax
https://github.com/rspec/rspec-core/pull/2803
* Use the non-globally exposed RSpec syntax, cont
https://github.com/rspec/rspec-core/pull/2803
* Comply to strict predicate matchers
See:
- https://github.com/rspec/rspec-expectations/pull/1195
- https://github.com/rspec/rspec-expectations/pull/1196
- https://github.com/rspec/rspec-expectations/pull/1277
64 lines
1.2 KiB
Ruby
64 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe 'SiteSetting.styleguide_admin_only' do
|
|
before do
|
|
SiteSetting.styleguide_enabled = true
|
|
end
|
|
|
|
context 'styleguide is admin only' do
|
|
before do
|
|
SiteSetting.styleguide_admin_only = true
|
|
end
|
|
|
|
context '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 'user is not admin' do
|
|
before do
|
|
sign_in(Fabricate(:user))
|
|
end
|
|
|
|
it 'doesn’t 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 '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 '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
|