debian-mirror-gitlab/spec/requests/api/graphql/metrics/dashboard_query_spec.rb

183 lines
6 KiB
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'Getting Metrics Dashboard' do
2020-04-22 19:07:51 +05:30
include GraphqlHelpers
let_it_be(:current_user) { create(:user) }
2021-09-30 23:02:18 +05:30
2020-04-22 19:07:51 +05:30
let(:project) { create(:project) }
2020-11-24 15:15:51 +05:30
let(:environment) { create(:environment, project: project) }
2020-04-22 19:07:51 +05:30
let(:query) do
2020-06-23 00:09:42 +05:30
graphql_query_for(
'project', { 'fullPath' => project.full_path },
query_graphql_field(
:environments, { 'name' => environment.name },
query_graphql_field(
:nodes, nil,
query_graphql_field(
:metricsDashboard, { 'path' => path },
all_graphql_fields_for('MetricsDashboard'.classify)
)
)
)
2020-04-22 19:07:51 +05:30
)
end
2020-11-24 15:15:51 +05:30
context 'with metrics_dashboard_exhaustive_validations feature flag off' do
2020-04-22 19:07:51 +05:30
before do
2020-11-24 15:15:51 +05:30
stub_feature_flags(metrics_dashboard_exhaustive_validations: false)
2020-04-22 19:07:51 +05:30
end
2020-11-24 15:15:51 +05:30
context 'for anonymous user' do
before do
post_graphql(query, current_user: current_user)
end
context 'requested dashboard is available' do
let(:path) { 'config/prometheus/common_metrics.yml' }
it_behaves_like 'a working graphql query'
it 'returns nil' do
dashboard = graphql_data.dig('project', 'environments', 'nodes')
expect(dashboard).to be_nil
end
end
end
context 'for user with developer access' do
before do
project.add_developer(current_user)
post_graphql(query, current_user: current_user)
end
context 'requested dashboard is available' do
let(:path) { 'config/prometheus/common_metrics.yml' }
it_behaves_like 'a working graphql query'
it 'returns metrics dashboard' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
expect(dashboard).to eql("path" => path, "schemaValidationWarnings" => nil)
end
context 'invalid dashboard' do
let(:path) { '.gitlab/dashboards/metrics.yml' }
let(:project) { create(:project, :repository, :custom_repo, namespace: current_user.namespace, files: { path => "---\ndashboard: 'test'" }) }
it 'returns metrics dashboard' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
expect(dashboard).to eql("path" => path, "schemaValidationWarnings" => ["panel_groups: should be an array of panel_groups objects"])
end
end
context 'empty dashboard' do
let(:path) { '.gitlab/dashboards/metrics.yml' }
let(:project) { create(:project, :repository, :custom_repo, namespace: current_user.namespace, files: { path => "" }) }
it 'returns metrics dashboard' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
expect(dashboard).to eql("path" => path, "schemaValidationWarnings" => ["dashboard: can't be blank", "panel_groups: should be an array of panel_groups objects"])
end
end
end
context 'requested dashboard can not be found' do
let(:path) { 'config/prometheus/i_am_not_here.yml' }
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
it_behaves_like 'a working graphql query'
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
it 'returns nil' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
expect(dashboard).to be_nil
end
2020-04-22 19:07:51 +05:30
end
end
end
2020-11-24 15:15:51 +05:30
context 'with metrics_dashboard_exhaustive_validations feature flag on' do
2020-04-22 19:07:51 +05:30
before do
2020-11-24 15:15:51 +05:30
stub_feature_flags(metrics_dashboard_exhaustive_validations: true)
2020-04-22 19:07:51 +05:30
end
2020-11-24 15:15:51 +05:30
context 'for anonymous user' do
before do
post_graphql(query, current_user: current_user)
end
context 'requested dashboard is available' do
let(:path) { 'config/prometheus/common_metrics.yml' }
it_behaves_like 'a working graphql query'
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
it 'returns nil' do
dashboard = graphql_data.dig('project', 'environments', 'nodes')
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
expect(dashboard).to be_nil
end
end
end
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
context 'for user with developer access' do
before do
project.add_developer(current_user)
post_graphql(query, current_user: current_user)
2020-06-23 00:09:42 +05:30
end
2020-11-24 15:15:51 +05:30
context 'requested dashboard is available' do
let(:path) { 'config/prometheus/common_metrics.yml' }
it_behaves_like 'a working graphql query'
2020-06-23 00:09:42 +05:30
it 'returns metrics dashboard' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
2020-11-24 15:15:51 +05:30
expect(dashboard).to eql("path" => path, "schemaValidationWarnings" => nil)
2020-06-23 00:09:42 +05:30
end
2020-11-24 15:15:51 +05:30
context 'invalid dashboard' do
let(:path) { '.gitlab/dashboards/metrics.yml' }
let(:project) { create(:project, :repository, :custom_repo, namespace: current_user.namespace, files: { path => "---\ndashboard: 'test'" }) }
2020-06-23 00:09:42 +05:30
2020-11-24 15:15:51 +05:30
it 'returns metrics dashboard' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
2020-06-23 00:09:42 +05:30
2020-11-24 15:15:51 +05:30
expect(dashboard).to eql("path" => path, "schemaValidationWarnings" => ["root is missing required keys: panel_groups"])
end
end
context 'empty dashboard' do
let(:path) { '.gitlab/dashboards/metrics.yml' }
let(:project) { create(:project, :repository, :custom_repo, namespace: current_user.namespace, files: { path => "" }) }
it 'returns metrics dashboard' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
expect(dashboard).to eql("path" => path, "schemaValidationWarnings" => ["root is missing required keys: dashboard, panel_groups"])
end
2020-06-23 00:09:42 +05:30
end
2020-04-22 19:07:51 +05:30
end
2020-11-24 15:15:51 +05:30
context 'requested dashboard can not be found' do
let(:path) { 'config/prometheus/i_am_not_here.yml' }
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
it_behaves_like 'a working graphql query'
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
it 'returns nil' do
dashboard = graphql_data.dig('project', 'environments', 'nodes', 0, 'metricsDashboard')
2020-04-22 19:07:51 +05:30
2020-11-24 15:15:51 +05:30
expect(dashboard).to be_nil
end
2020-04-22 19:07:51 +05:30
end
end
end
end