summaryrefslogtreecommitdiff
path: root/spec/features/read_only_spec.rb
blob: 1e6f8c885d3e9abb3882f66713358e96f08c21ef (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
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