gitlab-org--gitlab-foss/features/steps/project/issues/labels.rb

101 lines
2.6 KiB
Ruby
Raw Normal View History

class Spinach::Features::ProjectIssuesLabels < Spinach::FeatureSteps
2012-09-10 11:35:03 -04:00
include SharedAuthentication
include SharedProject
include SharedPaths
step 'I visit \'bug\' label edit page' do
visit edit_namespace_project_label_path(project.namespace, project, bug_label)
end
step 'I remove label \'bug\'' do
2016-10-15 11:23:16 -04:00
page.within "#project_label_#{bug_label.id}" do
2016-05-24 09:16:22 -04:00
first(:link, 'Delete').click
end
end
step 'I delete all labels' do
page.within '.labels' do
page.all('.remove-row').each do
first('.remove-row').click
end
end
end
step 'I should see labels help message' do
page.within '.labels' do
expect(page).to have_content 'Generate a default set of labels'
expect(page).to have_content 'New label'
end
end
step 'I submit new label \'support\'' do
fill_in 'Title', with: 'support'
2015-12-03 08:54:14 -05:00
fill_in 'Background color', with: '#F95610'
2015-12-03 12:32:29 -05:00
click_button 'Create Label'
end
2014-08-13 08:12:05 -04:00
step 'I submit new label \'bug\'' do
fill_in 'Title', with: 'bug'
2015-12-03 08:54:14 -05:00
fill_in 'Background color', with: '#F95610'
2015-12-03 12:32:29 -05:00
click_button 'Create Label'
2014-08-13 08:12:05 -04:00
end
2014-08-11 17:59:30 -04:00
step 'I submit new label with invalid color' do
fill_in 'Title', with: 'support'
2015-12-03 08:54:14 -05:00
fill_in 'Background color', with: '#12'
2015-12-03 12:32:29 -05:00
click_button 'Create Label'
2014-08-11 17:59:30 -04:00
end
2014-08-13 08:12:05 -04:00
step 'I should see label label exist error message' do
page.within '.label-form' do
expect(page).to have_content 'Title has already been taken'
2014-08-13 08:12:05 -04:00
end
end
2014-08-11 17:59:30 -04:00
step 'I should see label color error message' do
page.within '.label-form' do
2015-12-01 18:53:44 -05:00
expect(page).to have_content 'Color must be a valid color code'
2014-08-11 17:59:30 -04:00
end
end
2014-09-11 16:53:21 -04:00
step 'I should see label \'feature\'' do
2016-05-20 17:11:29 -04:00
page.within '.other-labels .manage-labels-list' do
expect(page).to have_content 'feature'
2014-09-11 16:53:21 -04:00
end
end
2014-08-13 08:12:05 -04:00
step 'I should see label \'bug\'' do
2016-05-20 17:11:29 -04:00
page.within '.other-labels .manage-labels-list' do
expect(page).to have_content 'bug'
2014-08-13 08:12:05 -04:00
end
end
step 'I should not see label \'bug\'' do
2016-05-20 17:11:29 -04:00
page.within '.other-labels .manage-labels-list' do
expect(page).not_to have_content 'bug'
end
end
step 'I should see label \'support\'' do
2016-05-20 17:11:29 -04:00
page.within '.other-labels .manage-labels-list' do
expect(page).to have_content 'support'
end
end
step 'I change label \'bug\' to \'fix\'' do
fill_in 'Title', with: 'fix'
2015-12-03 08:54:14 -05:00
fill_in 'Background color', with: '#F15610'
2015-12-03 12:32:29 -05:00
click_button 'Save changes'
end
step 'I should see label \'fix\'' do
2016-05-20 17:11:29 -04:00
page.within '.other-labels .manage-labels-list' do
expect(page).to have_content 'fix'
end
end
def bug_label
project.labels.find_or_create_by(title: 'bug')
end
end