blob: 3af4b51b9b16f75667191f44748fd7e2a09b509f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# frozen_string_literal: true
require 'rails_helper'
describe 'read-only message' do
set(:user) { create(:user) }
before do
sign_in(user)
end
it 'shows read-only banner when database is read-only' do
allow(Gitlab::Database).to receive(:read_only?).and_return(true)
visit root_dashboard_path
expect(page).to have_content('You are on a read-only GitLab instance.')
end
it 'does not show read-only banner when database is able to read-write' do
allow(Gitlab::Database).to receive(:read_only?).and_return(false)
visit root_dashboard_path
expect(page).not_to have_content('You are on a read-only GitLab instance.')
end
end
|