2019-07-25 21:41:54 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2019-10-23 05:06:03 -04:00
|
|
|
describe 'Metrics rendering', :js, :use_clean_rails_memory_store_caching, :sidekiq_might_not_need_inline do
|
2019-07-25 21:41:54 -04:00
|
|
|
include PrometheusHelpers
|
|
|
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:project) { create(:prometheus_project) }
|
|
|
|
let(:environment) { create(:environment, project: project) }
|
|
|
|
let(:issue) { create(:issue, project: project, description: description) }
|
|
|
|
let(:description) { "See [metrics dashboard](#{metrics_url}) for info." }
|
|
|
|
let(:metrics_url) { metrics_project_environment_url(project, environment) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
configure_host
|
|
|
|
import_common_metrics
|
|
|
|
stub_any_prometheus_request_with_response
|
|
|
|
|
|
|
|
project.add_developer(user)
|
|
|
|
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
restore_host
|
|
|
|
end
|
|
|
|
|
2019-08-15 17:38:29 -04:00
|
|
|
it 'shows embedded metrics' do
|
|
|
|
visit project_issue_path(project, issue)
|
|
|
|
|
|
|
|
expect(page).to have_css('div.prometheus-graph')
|
|
|
|
expect(page).to have_text('Memory Usage (Total)')
|
|
|
|
expect(page).to have_text('Core Usage (Total)')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when dashboard params are in included the url' do
|
|
|
|
let(:metrics_url) { metrics_project_environment_url(project, environment, **chart_params) }
|
|
|
|
|
|
|
|
let(:chart_params) do
|
|
|
|
{
|
|
|
|
group: 'System metrics (Kubernetes)',
|
|
|
|
title: 'Memory Usage (Pod average)',
|
|
|
|
y_label: 'Memory Used per Pod (MB)'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows embedded metrics for the specifiec chart' do
|
2019-07-25 21:41:54 -04:00
|
|
|
visit project_issue_path(project, issue)
|
|
|
|
|
|
|
|
expect(page).to have_css('div.prometheus-graph')
|
2019-08-15 17:38:29 -04:00
|
|
|
expect(page).to have_text(chart_params[:title])
|
|
|
|
expect(page).to have_text(chart_params[:y_label])
|
2019-07-25 21:41:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_common_metrics
|
|
|
|
::Gitlab::DatabaseImporters::CommonMetrics::Importer.new.execute
|
|
|
|
end
|
|
|
|
|
|
|
|
def configure_host
|
|
|
|
@original_default_host = default_url_options[:host]
|
|
|
|
@original_gitlab_url = Gitlab.config.gitlab[:url]
|
|
|
|
|
|
|
|
# Ensure we create a metrics url with the right host.
|
|
|
|
# Configure host for route helpers in specs (also updates root_url):
|
|
|
|
default_url_options[:host] = Capybara.server_host
|
|
|
|
|
|
|
|
# Ensure we identify urls with the appropriate host.
|
|
|
|
# Configure host to include port in app:
|
|
|
|
Gitlab.config.gitlab[:url] = root_url.chomp('/')
|
|
|
|
end
|
|
|
|
|
|
|
|
def restore_host
|
|
|
|
default_url_options[:host] = @original_default_host
|
|
|
|
Gitlab.config.gitlab[:url] = @original_gitlab_url
|
|
|
|
end
|
|
|
|
end
|