2015-04-26 12:48:37 +05:30
|
|
|
class Spinach::Features::AdminSettings < Spinach::FeatureSteps
|
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedAdmin
|
|
|
|
include Gitlab::CurrentSettings
|
|
|
|
|
|
|
|
step 'I modify settings and save form' do
|
|
|
|
uncheck 'Gravatar enabled'
|
2015-09-11 14:41:01 +05:30
|
|
|
fill_in 'Home page URL', with: 'https://about.gitlab.com/'
|
2015-09-25 12:07:36 +05:30
|
|
|
fill_in 'Help page text', with: 'Example text'
|
2015-04-26 12:48:37 +05:30
|
|
|
click_button 'Save'
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see application settings saved' do
|
2015-09-11 14:41:01 +05:30
|
|
|
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-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
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')
|
|
|
|
page.check('Push events')
|
|
|
|
page.check('Tag push events')
|
|
|
|
page.check('Comments')
|
|
|
|
page.check('Issues events')
|
|
|
|
page.check('Merge Request events')
|
2015-12-23 02:04:40 +05:30
|
|
|
page.check('Build events')
|
2015-04-26 12:48:37 +05:30
|
|
|
click_on 'Save'
|
|
|
|
end
|
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
step 'I fill out Slack settings' do
|
|
|
|
fill_in 'Webhook', with: 'http://localhost'
|
|
|
|
fill_in 'Username', with: 'test_user'
|
|
|
|
fill_in 'Channel', with: '#test_channel'
|
2015-12-23 02:04:40 +05:30
|
|
|
page.check('Notify only broken builds')
|
2015-09-11 14:41:01 +05:30
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
step 'I should see service template settings saved' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(page).to have_content 'Application settings saved successfully'
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see all checkboxes checked' do
|
2015-09-11 14:41:01 +05:30
|
|
|
page.all('input[type=checkbox]').each do |checkbox|
|
|
|
|
expect(checkbox).to be_checked
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
end
|
2015-09-11 14:41:01 +05:30
|
|
|
|
|
|
|
step 'I should see Slack settings saved' do
|
|
|
|
expect(find_field('Webhook').value).to eq 'http://localhost'
|
|
|
|
expect(find_field('Username').value).to eq 'test_user'
|
|
|
|
expect(find_field('Channel').value).to eq '#test_channel'
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|