2015-01-08 12:53:35 -05:00
|
|
|
class Spinach::Features::AdminSettings < Spinach::FeatureSteps
|
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedAdmin
|
|
|
|
include Gitlab::CurrentSettings
|
|
|
|
|
2015-01-16 19:09:20 -05:00
|
|
|
step 'I modify settings and save form' do
|
2015-01-08 12:53:35 -05:00
|
|
|
uncheck 'Gravatar enabled'
|
2015-07-26 05:21:10 -04:00
|
|
|
fill_in 'Home page URL', with: 'https://about.gitlab.com/'
|
2015-09-16 07:51:42 -04:00
|
|
|
fill_in 'Help page text', with: 'Example text'
|
2015-01-08 12:53:35 -05:00
|
|
|
click_button 'Save'
|
|
|
|
end
|
|
|
|
|
2015-01-16 19:09:20 -05:00
|
|
|
step 'I should see application settings saved' do
|
2015-06-18 22:13:32 -04:00
|
|
|
expect(current_application_settings.gravatar_enabled).to be_falsey
|
|
|
|
expect(current_application_settings.home_page_url).to eq "https://about.gitlab.com/"
|
|
|
|
expect(page).to have_content "Application settings saved successfully"
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|
2015-03-23 08:51:38 -04:00
|
|
|
|
|
|
|
step 'I click on "Service Templates"' do
|
|
|
|
click_link 'Service Templates'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I click on "Slack" service' do
|
|
|
|
click_link 'Slack'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I check all events and submit form' do
|
|
|
|
page.check('Active')
|
2016-07-06 16:52:00 -04:00
|
|
|
page.check('Push')
|
|
|
|
page.check('Tag push')
|
|
|
|
page.check('Note')
|
|
|
|
page.check('Issue')
|
|
|
|
page.check('Merge request')
|
|
|
|
page.check('Build')
|
2016-07-29 13:24:03 -04:00
|
|
|
page.check('Pipeline')
|
2015-03-23 08:51:38 -04:00
|
|
|
click_on 'Save'
|
|
|
|
end
|
|
|
|
|
2015-04-24 11:33:24 -04:00
|
|
|
step 'I fill out Slack settings' do
|
|
|
|
fill_in 'Webhook', with: 'http://localhost'
|
|
|
|
fill_in 'Username', with: 'test_user'
|
2016-07-06 16:52:00 -04:00
|
|
|
fill_in 'service_push_channel', with: '#test_channel'
|
2015-12-07 07:23:23 -05:00
|
|
|
page.check('Notify only broken builds')
|
2015-04-24 11:33:24 -04:00
|
|
|
end
|
|
|
|
|
2015-03-23 08:51:38 -04:00
|
|
|
step 'I should see service template settings saved' do
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(page).to have_content 'Application settings saved successfully'
|
2015-03-23 08:51:38 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see all checkboxes checked' do
|
2015-06-01 17:43:59 -04:00
|
|
|
page.all('input[type=checkbox]').each do |checkbox|
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(checkbox).to be_checked
|
2015-03-23 08:51:38 -04:00
|
|
|
end
|
|
|
|
end
|
2015-04-24 11:33:24 -04:00
|
|
|
|
|
|
|
step 'I should see Slack settings saved' do
|
2015-06-12 00:44:13 -04:00
|
|
|
expect(find_field('Webhook').value).to eq 'http://localhost'
|
|
|
|
expect(find_field('Username').value).to eq 'test_user'
|
2016-07-06 16:52:00 -04:00
|
|
|
expect(find('#service_push_channel').value).to eq '#test_channel'
|
2015-04-24 11:33:24 -04:00
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|