2019-07-31 22:56:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
require 'spec_helper'
|
2019-07-31 22:56:46 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
describe Metrics::Dashboard::ProjectDashboardService, :use_clean_rails_memory_store_caching do
|
2019-07-31 22:56:46 +05:30
|
|
|
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
|
|
|
|
|
|
|
before do
|
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'get_dashboard' do
|
|
|
|
let(:dashboard_path) { '.gitlab/dashboards/test.yml' }
|
|
|
|
let(:service_params) { [project, user, { environment: environment, dashboard_path: dashboard_path }] }
|
|
|
|
let(:service_call) { described_class.new(*service_params).get_dashboard }
|
|
|
|
|
|
|
|
context 'when the dashboard does not exist' do
|
|
|
|
it_behaves_like 'misconfigured dashboard service response', :not_found
|
|
|
|
end
|
|
|
|
|
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
|
|
|
context 'when the dashboard exists' do
|
|
|
|
let(:project) { project_with_dashboard(dashboard_path) }
|
|
|
|
|
|
|
|
it_behaves_like 'valid dashboard service response'
|
|
|
|
|
|
|
|
it 'caches the unprocessed dashboard for subsequent calls' do
|
|
|
|
expect_any_instance_of(described_class)
|
|
|
|
.to receive(:get_raw_dashboard)
|
|
|
|
.once
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
described_class.new(*service_params).get_dashboard
|
|
|
|
described_class.new(*service_params).get_dashboard
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'and the dashboard is then deleted' do
|
|
|
|
it 'does not return the previously cached dashboard' do
|
|
|
|
described_class.new(*service_params).get_dashboard
|
|
|
|
|
|
|
|
delete_project_dashboard(project, user, dashboard_path)
|
|
|
|
|
|
|
|
expect_any_instance_of(described_class)
|
|
|
|
.to receive(:get_raw_dashboard)
|
|
|
|
.once
|
|
|
|
.and_call_original
|
|
|
|
|
|
|
|
described_class.new(*service_params).get_dashboard
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the dashboard is configured incorrectly' do
|
|
|
|
let(:project) { project_with_dashboard(dashboard_path, {}) }
|
|
|
|
|
|
|
|
it_behaves_like 'misconfigured dashboard service response', :unprocessable_entity
|
|
|
|
end
|
|
|
|
end
|
2019-09-04 21:01:54 +05:30
|
|
|
|
|
|
|
describe '::all_dashboard_paths' do
|
|
|
|
let(:all_dashboards) { described_class.all_dashboard_paths(project) }
|
|
|
|
|
|
|
|
context 'when there are no project dashboards' do
|
|
|
|
it 'returns an empty array' do
|
|
|
|
expect(all_dashboards).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there are project dashboards available' do
|
|
|
|
let(:dashboard_path) { '.gitlab/dashboards/test.yml' }
|
|
|
|
let(:project) { project_with_dashboard(dashboard_path) }
|
|
|
|
|
|
|
|
it 'returns the dashboard attributes' do
|
|
|
|
expect(all_dashboards).to eq(
|
|
|
|
[{
|
|
|
|
path: dashboard_path,
|
|
|
|
display_name: 'test.yml',
|
2019-12-26 22:10:19 +05:30
|
|
|
default: false,
|
|
|
|
system_dashboard: false
|
2019-09-04 21:01:54 +05:30
|
|
|
}]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2019-07-31 22:56:46 +05:30
|
|
|
end
|