debian-mirror-gitlab/spec/features/projects/services/user_activates_prometheus_spec.rb

27 lines
650 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
describe 'User activates Prometheus' do
let(:project) { create(:project) }
let(:user) { create(:user) }
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
sign_in(user)
visit(project_settings_integrations_path(project))
click_link('Prometheus')
end
2020-03-13 15:44:24 +05:30
it 'does not activate service and informs about deprecation' do
2018-03-17 18:26:18 +05:30
check('Active')
fill_in('API URL', with: 'http://prometheus.example.com')
click_button('Save changes')
2020-03-13 15:44:24 +05:30
expect(page).not_to have_content('Prometheus activated.')
expect(page).to have_content('Fields on this page has been deprecated.')
2018-03-17 18:26:18 +05:30
end
end