gitlab-org--gitlab-foss/features/steps/project/commits/commits.rb

92 lines
2.7 KiB
Ruby
Raw Normal View History

class Spinach::Features::ProjectCommits < Spinach::FeatureSteps
2012-09-10 15:35:03 +00:00
include SharedAuthentication
include SharedProject
include SharedPaths
include RepoHelpers
2012-09-10 15:35:03 +00:00
step 'I see project commits' do
2013-01-04 16:50:31 +00:00
commit = @project.repository.commit
page.should have_content(@project.name)
page.should have_content(commit.message[0..20])
page.should have_content(commit.short_id)
end
step 'I click atom feed link' do
click_link "Feed"
end
step 'I see commits atom feed' do
commit = @project.repository.commit
2014-09-24 06:28:41 +00:00
response_headers['Content-Type'].should have_content("application/atom+xml")
body.should have_selector("title", text: "Recent commits to #{@project.name}")
body.should have_selector("author email", text: commit.author_email)
body.should have_selector("entry summary", text: commit.description[0..10])
end
step 'I click on commit link' do
visit project_commit_path(@project, sample_commit.id)
end
step 'I see commit info' do
page.should have_content sample_commit.message
page.should have_content "Showing #{sample_commit.files_changed_count} changed files"
end
step 'I fill compare fields with refs' do
fill_in "from", with: sample_commit.parent_id
fill_in "to", with: sample_commit.id
click_button "Compare"
end
step 'I see compared refs' do
page.should have_content "Compare View"
2012-09-26 17:58:50 +00:00
page.should have_content "Commits (1)"
page.should have_content "Showing 2 changed files"
end
step 'I see breadcrumb links' do
page.should have_selector('ul.breadcrumb')
page.should have_selector('ul.breadcrumb a', count: 4)
end
2012-11-10 21:33:10 +00:00
step 'I see commits stats' do
2013-04-03 20:33:42 +00:00
page.should have_content 'Top 50 Committers'
2012-11-10 21:33:10 +00:00
page.should have_content 'Committers'
page.should have_content 'Total commits'
2012-11-14 00:20:37 +00:00
page.should have_content 'Authors'
2012-11-10 21:33:10 +00:00
end
step 'I visit big commit page' do
Commit::DIFF_SAFE_FILES = 20
visit project_commit_path(@project, sample_big_commit.id)
end
step 'I see big commit warning' do
page.should have_content sample_big_commit.message
page.should have_content "Too many changes"
Commit::DIFF_SAFE_FILES = 100
end
step 'I visit a commit with an image that changed' do
visit project_commit_path(@project, sample_image_commit.id)
end
step 'The diff links to both the previous and current image' do
2014-09-24 06:28:41 +00:00
links = all('.two-up span div a')
links[0]['href'].should =~ %r{blob/#{sample_image_commit.old_blob_id}}
links[1]['href'].should =~ %r{blob/#{sample_image_commit.new_blob_id}}
end
step 'I click side-by-side diff button' do
click_link "Side-by-side"
end
step 'I see side-by-side diff button' do
page.should have_content "Side-by-side"
end
step 'I see inline diff button' do
page.should have_content "Inline"
end
end