diff options
Diffstat (limited to 'features/steps/project/services.rb')
-rw-r--r-- | features/steps/project/services.rb | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/features/steps/project/services.rb b/features/steps/project/services.rb new file mode 100644 index 00000000000..54b3f18e084 --- /dev/null +++ b/features/steps/project/services.rb @@ -0,0 +1,103 @@ +class ProjectServices < Spinach::FeatureSteps + include SharedAuthentication + include SharedProject + include SharedPaths + + step 'I visit project "Shop" services page' do + visit project_services_path(@project) + end + + step 'I should see list of available services' do + page.should have_content 'Project services' + page.should have_content 'Campfire' + page.should have_content 'Hipchat' + page.should have_content 'GitLab CI' + page.should have_content 'Assembla' + end + + step 'I click gitlab-ci service link' do + click_link 'GitLab CI' + end + + step 'I fill gitlab-ci settings' do + check 'Active' + fill_in 'Project url', with: 'http://ci.gitlab.org/projects/3' + fill_in 'Token', with: 'verySecret' + click_button 'Save' + end + + step 'I should see service settings saved' do + find_field('Project url').value.should == 'http://ci.gitlab.org/projects/3' + end + + step 'I click hipchat service link' do + click_link 'Hipchat' + end + + step 'I fill hipchat settings' do + check 'Active' + fill_in 'Room', with: 'gitlab' + fill_in 'Token', with: 'verySecret' + click_button 'Save' + end + + step 'I should see hipchat service settings saved' do + find_field('Room').value.should == 'gitlab' + end + + + step 'I click pivotaltracker service link' do + click_link 'PivotalTracker' + end + + step 'I fill pivotaltracker settings' do + check 'Active' + fill_in 'Token', with: 'verySecret' + click_button 'Save' + end + + step 'I should see pivotaltracker service settings saved' do + find_field('Token').value.should == 'verySecret' + end + + step 'I click Flowdock service link' do + click_link 'Flowdock' + end + + step 'I fill Flowdock settings' do + check 'Active' + fill_in 'Token', with: 'verySecret' + click_button 'Save' + end + + step 'I should see Flowdock service settings saved' do + find_field('Token').value.should == 'verySecret' + end + + step 'I click Assembla service link' do + click_link 'Assembla' + end + + step 'I fill Assembla settings' do + check 'Active' + fill_in 'Token', with: 'verySecret' + click_button 'Save' + end + + step 'I should see Assembla service settings saved' do + find_field('Token').value.should == 'verySecret' + end + + step 'I click email on push service link' do + click_link 'Emails on push' + end + + step 'I fill email on push settings' do + fill_in 'Recipients', with: 'qa@company.name' + click_button 'Save' + end + + step 'I should see email on push service settings saved' do + find_field('Recipients').value.should == 'qa@company.name' + end +end |