Add specs for CI Lint button exposed on a builds page
This commit is contained in:
parent
59ffe978fd
commit
d9629a0cf0
3 changed files with 20 additions and 5 deletions
|
@ -5,7 +5,11 @@ Feature: Project Builds Summary
|
|||
And project has CI enabled
|
||||
And project has a recent build
|
||||
|
||||
Scenario: I browse build summary page
|
||||
When I visit recent build summary page
|
||||
Then I see summary for build
|
||||
Scenario: I browse build details page
|
||||
When I visit recent build details page
|
||||
Then I see details of a build
|
||||
And I see build trace
|
||||
|
||||
Scenario: I browse project builds page
|
||||
When I visit project builds page
|
||||
Then I see button to CI Lint Tool
|
||||
|
|
|
@ -4,11 +4,18 @@ class Spinach::Features::ProjectBuildsSummary < Spinach::FeatureSteps
|
|||
include SharedBuilds
|
||||
include RepoHelpers
|
||||
|
||||
step 'I see summary for build' do
|
||||
step 'I see details of a build' do
|
||||
expect(page).to have_content "Build ##{@build.id}"
|
||||
end
|
||||
|
||||
step 'I see build trace' do
|
||||
expect(page).to have_css '#build-trace'
|
||||
end
|
||||
|
||||
step 'I see button to CI Lint Tool' do
|
||||
page.within('.controls') do
|
||||
ci_lint_tool_link = page.find_link('CI Lint Tool')
|
||||
expect(ci_lint_tool_link[:href]).to eq ci_lint_path
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -10,10 +10,14 @@ module SharedBuilds
|
|||
@build = create :ci_build, commit: ci_commit
|
||||
end
|
||||
|
||||
step 'I visit recent build summary page' do
|
||||
step 'I visit recent build details page' do
|
||||
visit namespace_project_build_path(@project.namespace, @project, @build)
|
||||
end
|
||||
|
||||
step 'I visit project builds page' do
|
||||
visit namespace_project_builds_path(@project.namespace, @project)
|
||||
end
|
||||
|
||||
step 'recent build has artifacts available' do
|
||||
artifacts = Rails.root + 'spec/fixtures/ci_build_artifacts.zip'
|
||||
archive = fixture_file_upload(artifacts, 'application/zip')
|
||||
|
|
Loading…
Reference in a new issue