debian-mirror-gitlab/spec/lib/gitlab/metrics/dashboard/system_dashboard_service_spec.rb

53 lines
1.6 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
require 'spec_helper'
describe Gitlab::Metrics::Dashboard::SystemDashboardService, :use_clean_rails_memory_store_caching do
include MetricsDashboardHelpers
2019-09-30 21:07:59 +05:30
set(:user) { create(:user) }
set(:project) { create(:project) }
2019-09-04 21:01:54 +05:30
set(:environment) { create(:environment, project: project) }
2019-07-31 22:56:46 +05:30
2019-09-30 21:07:59 +05:30
before do
project.add_maintainer(user)
end
2019-07-31 22:56:46 +05:30
describe 'get_dashboard' do
let(:dashboard_path) { described_class::SYSTEM_DASHBOARD_PATH }
2019-09-30 21:07:59 +05:30
let(:service_params) { [project, user, { environment: environment, dashboard_path: dashboard_path }] }
2019-07-31 22:56:46 +05:30
let(:service_call) { described_class.new(*service_params).get_dashboard }
it_behaves_like 'valid dashboard service response'
2019-09-30 21:07:59 +05:30
it_behaves_like 'raises error for users with insufficient permissions'
2019-07-31 22:56:46 +05:30
it 'caches the unprocessed dashboard for subsequent calls' do
expect(YAML).to receive(:safe_load).once.and_call_original
described_class.new(*service_params).get_dashboard
described_class.new(*service_params).get_dashboard
end
context 'when called with a non-system dashboard' do
let(:dashboard_path) { 'garbage/dashboard/path' }
# We want to alwaus return the system dashboard.
it_behaves_like 'valid dashboard service response'
end
end
2019-09-04 21:01:54 +05:30
describe '::all_dashboard_paths' do
it 'returns the dashboard attributes' do
all_dashboards = described_class.all_dashboard_paths(project)
expect(all_dashboards).to eq(
[{
path: described_class::SYSTEM_DASHBOARD_PATH,
display_name: described_class::SYSTEM_DASHBOARD_NAME,
default: true
}]
)
end
end
2019-07-31 22:56:46 +05:30
end