2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'User activates Prometheus' do
|
2022-04-04 11:22:00 +05:30
|
|
|
include_context 'project integration activation'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
before do
|
2020-04-22 19:07:51 +05:30
|
|
|
stub_request(:get, /.*prometheus.example.com.*/)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
it 'saves and activates integration', :js do
|
2020-04-22 19:07:51 +05:30
|
|
|
visit_project_integration('Prometheus')
|
2018-03-17 18:26:18 +05:30
|
|
|
check('Active')
|
|
|
|
fill_in('API URL', with: 'http://prometheus.example.com')
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
click_button('Save changes')
|
|
|
|
|
2022-07-16 23:28:13 +05:30
|
|
|
expect(page).to have_content('Prometheus settings saved and active.')
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|