debian-mirror-gitlab/spec/features/admin/admin_system_info_spec.rb

62 lines
1.9 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Admin System Info' do
2016-08-24 12:49:21 +05:30
before do
2021-02-22 17:27:13 +05:30
admin = create(:admin)
sign_in(admin)
gitlab_enable_admin_mode_sign_in(admin)
2016-08-24 12:49:21 +05:30
end
describe 'GET /admin/system_info' do
2016-09-13 17:45:13 +05:30
let(:cpu) { double(:cpu, length: 2) }
let(:memory) { double(:memory, active_bytes: 4294967296, total_bytes: 17179869184) }
2016-08-24 12:49:21 +05:30
2016-09-13 17:45:13 +05:30
context 'when all info is available' do
before do
allow(Vmstat).to receive(:cpu).and_return(cpu)
allow(Vmstat).to receive(:memory).and_return(memory)
visit admin_system_info_path
end
it 'shows system info page' do
expect(page).to have_content 'CPU 2 cores'
2018-03-17 18:26:18 +05:30
expect(page).to have_content 'Memory Usage 4 GB / 16 GB'
expect(page).to have_content 'Disk Usage'
2017-09-10 17:25:29 +05:30
expect(page).to have_content 'Uptime'
2016-09-13 17:45:13 +05:30
end
end
context 'when CPU info is not available' do
before do
allow(Vmstat).to receive(:cpu).and_raise(Errno::ENOENT)
allow(Vmstat).to receive(:memory).and_return(memory)
visit admin_system_info_path
end
it 'shows system info page with no CPU info' do
expect(page).to have_content 'CPU Unable to collect CPU info'
2018-03-17 18:26:18 +05:30
expect(page).to have_content 'Memory Usage 4 GB / 16 GB'
expect(page).to have_content 'Disk Usage'
2017-09-10 17:25:29 +05:30
expect(page).to have_content 'Uptime'
2016-09-13 17:45:13 +05:30
end
end
context 'when memory info is not available' do
before do
allow(Vmstat).to receive(:cpu).and_return(cpu)
allow(Vmstat).to receive(:memory).and_raise(Errno::ENOENT)
visit admin_system_info_path
end
it 'shows system info page with no CPU info' do
expect(page).to have_content 'CPU 2 cores'
2018-03-17 18:26:18 +05:30
expect(page).to have_content 'Memory Usage Unable to collect memory info'
expect(page).to have_content 'Disk Usage'
2017-09-10 17:25:29 +05:30
expect(page).to have_content 'Uptime'
2016-09-13 17:45:13 +05:30
end
2016-08-24 12:49:21 +05:30
end
end
end