2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec . describe MetricsDashboard do
2019-12-26 22:10:19 +05:30
include MetricsDashboardHelpers
2019-12-21 20:55:43 +05:30
describe 'GET #metrics_dashboard' do
let_it_be ( :user ) { create ( :user ) }
2019-12-26 22:10:19 +05:30
let_it_be ( :project ) { project_with_dashboard ( '.gitlab/dashboards/test.yml' ) }
2019-12-21 20:55:43 +05:30
let_it_be ( :environment ) { create ( :environment , project : project ) }
before do
sign_in ( user )
project . add_maintainer ( user )
end
controller ( :: ApplicationController ) do
2020-03-13 15:44:24 +05:30
include MetricsDashboard
2019-12-21 20:55:43 +05:30
end
let ( :json_response ) do
routes . draw { get " metrics_dashboard " = > " anonymous # metrics_dashboard " }
response = get :metrics_dashboard , format : :json
2020-03-13 15:44:24 +05:30
response . parsed_body
2019-12-21 20:55:43 +05:30
end
context 'when no parameters are provided' do
it 'returns an error json_response' do
expect ( json_response [ 'status' ] ) . to eq ( 'error' )
end
end
context 'when params are provided' do
2019-12-26 22:10:19 +05:30
let ( :params ) { { environment : environment } }
2019-12-21 20:55:43 +05:30
before do
allow ( controller ) . to receive ( :project ) . and_return ( project )
allow ( controller )
. to receive ( :metrics_dashboard_params )
2019-12-26 22:10:19 +05:30
. and_return ( params )
2019-12-21 20:55:43 +05:30
end
it 'returns the specified dashboard' do
expect ( json_response [ 'dashboard' ] [ 'dashboard' ] ) . to eq ( 'Environment metrics' )
expect ( json_response ) . not_to have_key ( 'all_dashboards' )
2020-05-24 23:13:21 +05:30
expect ( json_response ) . to have_key ( 'metrics_data' )
2019-12-21 20:55:43 +05:30
end
2019-12-26 22:10:19 +05:30
context 'when the params are in an alternate format' do
let ( :params ) { ActionController :: Parameters . new ( { environment : environment } ) . permit! }
it 'returns the specified dashboard' do
expect ( json_response [ 'dashboard' ] [ 'dashboard' ] ) . to eq ( 'Environment metrics' )
expect ( json_response ) . not_to have_key ( 'all_dashboards' )
2020-05-24 23:13:21 +05:30
expect ( json_response ) . to have_key ( 'metrics_data' )
2020-03-13 15:44:24 +05:30
end
end
context 'when environment for dashboard is available' do
let ( :params ) { { environment : environment } }
before do
allow ( controller ) . to receive ( :project ) . and_return ( project )
allow ( controller ) . to receive ( :environment ) . and_return ( environment )
allow ( controller )
. to receive ( :metrics_dashboard_params )
. and_return ( params )
end
it 'returns the specified dashboard' do
expect ( json_response [ 'dashboard' ] [ 'dashboard' ] ) . to eq ( 'Environment metrics' )
expect ( json_response ) . not_to have_key ( 'all_dashboards' )
expect ( json_response ) . to have_key ( 'metrics_data' )
2019-12-26 22:10:19 +05:30
end
end
2020-07-28 23:09:34 +05:30
context 'when dashboard path includes encoded characters' do
let ( :params ) { { dashboard_path : 'dashboard%26copy.yml' } }
before do
allow ( controller )
. to receive ( :metrics_dashboard_params )
. and_return ( params )
end
it 'decodes dashboard path' do
expect ( :: Gitlab :: Metrics :: Dashboard :: Finder ) . to receive ( :find ) . with ( anything , anything , hash_including ( dashboard_path : 'dashboard©.yml' ) )
json_response
end
end
2019-12-21 20:55:43 +05:30
context 'when parameters are provided and the list of all dashboards is required' do
before do
allow ( controller ) . to receive ( :include_all_dashboards? ) . and_return ( true )
end
it 'returns a dashboard in addition to the list of dashboards' do
expect ( json_response [ 'dashboard' ] [ 'dashboard' ] ) . to eq ( 'Environment metrics' )
expect ( json_response ) . to have_key ( 'all_dashboards' )
end
2019-12-26 22:10:19 +05:30
context 'in all_dashboard list' do
let ( :system_dashboard ) { json_response [ 'all_dashboards' ] . find { | dashboard | dashboard [ " system_dashboard " ] == true } }
2020-07-28 23:09:34 +05:30
let ( :project_dashboard ) do
json_response [ 'all_dashboards' ] . find do | dashboard |
dashboard [ 'path' ] == '.gitlab/dashboards/test.yml'
end
end
2019-12-26 22:10:19 +05:30
it 'includes project_blob_path only for project dashboards' do
expect ( system_dashboard [ 'project_blob_path' ] ) . to be_nil
2020-03-13 15:44:24 +05:30
expect ( project_dashboard [ 'project_blob_path' ] ) . to eq ( " / #{ project . namespace . path } / #{ project . name } /-/blob/master/.gitlab/dashboards/test.yml " )
2019-12-26 22:10:19 +05:30
end
2020-07-28 23:09:34 +05:30
it 'allows editing only for project dashboards' do
expect ( system_dashboard [ 'can_edit' ] ) . to be ( false )
expect ( project_dashboard [ 'can_edit' ] ) . to be ( true )
end
it 'includes out_of_the_box_dashboard key' do
expect ( system_dashboard [ 'out_of_the_box_dashboard' ] ) . to be ( true )
expect ( project_dashboard [ 'out_of_the_box_dashboard' ] ) . to be ( false )
end
2019-12-26 22:10:19 +05:30
describe 'project permissions' do
using RSpec :: Parameterized :: TableSyntax
where ( :can_collaborate , :system_can_edit , :project_can_edit ) do
false | false | false
true | false | true
end
with_them do
before do
allow ( controller ) . to receive ( :can_collaborate_with_project? ) . and_return ( can_collaborate )
end
it " sets can_edit appropriately " do
expect ( system_dashboard [ " can_edit " ] ) . to eq ( system_can_edit )
expect ( project_dashboard [ " can_edit " ] ) . to eq ( project_can_edit )
end
end
end
2020-05-24 23:13:21 +05:30
context 'starred dashboards' do
let_it_be ( :dashboard_yml ) { fixture_file ( 'lib/gitlab/metrics/dashboard/sample_dashboard.yml' ) }
let_it_be ( :dashboards ) do
{
'.gitlab/dashboards/test.yml' = > dashboard_yml ,
'.gitlab/dashboards/anomaly.yml' = > dashboard_yml ,
'.gitlab/dashboards/errors.yml' = > dashboard_yml
}
end
2021-01-29 00:20:46 +05:30
2020-05-24 23:13:21 +05:30
let_it_be ( :project ) { create ( :project , :custom_repo , files : dashboards ) }
before do
create ( :metrics_users_starred_dashboard , user : user , project : project , dashboard_path : '.gitlab/dashboards/errors.yml' )
create ( :metrics_users_starred_dashboard , user : user , project : project , dashboard_path : '.gitlab/dashboards/test.yml' )
end
it 'adds starred dashboard information and sorts the list' do
all_dashboards = json_response [ 'all_dashboards' ] . map { | dashboard | dashboard . slice ( 'display_name' , 'starred' , 'user_starred_path' ) }
expected_response = [
{ " display_name " = > " anomaly.yml " , " starred " = > false , 'user_starred_path' = > api_v4_projects_metrics_user_starred_dashboards_path ( id : project . id , params : { dashboard_path : '.gitlab/dashboards/anomaly.yml' } ) } ,
{ " display_name " = > " errors.yml " , " starred " = > true , 'user_starred_path' = > api_v4_projects_metrics_user_starred_dashboards_path ( id : project . id , params : { dashboard_path : '.gitlab/dashboards/errors.yml' } ) } ,
2020-10-24 23:57:45 +05:30
{ " display_name " = > " K8s pod health " , " starred " = > false , 'user_starred_path' = > api_v4_projects_metrics_user_starred_dashboards_path ( id : project . id , params : { dashboard_path : 'config/prometheus/pod_metrics.yml' } ) } ,
{ " display_name " = > " Overview " , " starred " = > false , 'user_starred_path' = > api_v4_projects_metrics_user_starred_dashboards_path ( id : project . id , params : { dashboard_path : 'config/prometheus/common_metrics.yml' } ) } ,
2020-05-24 23:13:21 +05:30
{ " display_name " = > " test.yml " , " starred " = > true , 'user_starred_path' = > api_v4_projects_metrics_user_starred_dashboards_path ( id : project . id , params : { dashboard_path : '.gitlab/dashboards/test.yml' } ) }
]
2020-10-24 23:57:45 +05:30
expect ( all_dashboards ) . to eq ( expected_response )
2020-05-24 23:13:21 +05:30
end
end
2019-12-26 22:10:19 +05:30
end
2019-12-21 20:55:43 +05:30
end
end
end
end