Commit 1e19737c authored by Grzegorz Bizon's avatar Grzegorz Bizon

Refactor feature tests for project builds page

parent 60c2d590
...@@ -2,51 +2,56 @@ require 'spec_helper' ...@@ -2,51 +2,56 @@ require 'spec_helper'
require 'tempfile' require 'tempfile'
describe "Builds" do describe "Builds" do
let(:artifacts_file) { fixture_file_upload(Rails.root + 'spec/fixtures/banana_sample.gif', 'image/gif') } let(:artifacts_file) do
fixture_file_upload(Rails.root + 'spec/fixtures/banana_sample.gif', 'image/gif')
end
let(:user) { create(:user) }
let(:project) { create(:project) }
let(:pipeline) { create(:ci_pipeline, project: project) }
let!(:build) { create(:ci_build, :trace, pipeline: pipeline) }
let!(:build2) { create(:ci_build) }
before do before do
login_as(:user) project.team << [user, :developer]
@commit = FactoryGirl.create :ci_pipeline login_as(user)
@build = FactoryGirl.create :ci_build, :trace, pipeline: @commit
@build2 = FactoryGirl.create :ci_build
@project = @commit.project
@project.team << [@user, :developer]
end end
describe "GET /:project/builds" do describe "GET /:project/builds" do
context "Pending scope" do context "Pending scope" do
before do before do
visit namespace_project_builds_path(@project.namespace, @project, scope: :pending) visit namespace_project_builds_path(project.namespace, project, scope: :pending)
end end
it "shows Pending tab builds" do it "shows Pending tab builds" do
expect(page).to have_link 'Cancel running' expect(page).to have_link 'Cancel running'
expect(page).to have_selector('.nav-links li.active', text: 'Pending') expect(page).to have_selector('.nav-links li.active', text: 'Pending')
expect(page).to have_content @build.short_sha expect(page).to have_content build.short_sha
expect(page).to have_content @build.ref expect(page).to have_content build.ref
expect(page).to have_content @build.name expect(page).to have_content build.name
end end
end end
context "Running scope" do context "Running scope" do
before do before do
@build.run! build.run!
visit namespace_project_builds_path(@project.namespace, @project, scope: :running) visit namespace_project_builds_path(project.namespace, project, scope: :running)
end end
it "shows Running tab builds" do it "shows Running tab builds" do
expect(page).to have_selector('.nav-links li.active', text: 'Running') expect(page).to have_selector('.nav-links li.active', text: 'Running')
expect(page).to have_link 'Cancel running' expect(page).to have_link 'Cancel running'
expect(page).to have_content @build.short_sha expect(page).to have_content build.short_sha
expect(page).to have_content @build.ref expect(page).to have_content build.ref
expect(page).to have_content @build.name expect(page).to have_content build.name
end end
end end
context "Finished scope" do context "Finished scope" do
before do before do
@build.run! build.run!
visit namespace_project_builds_path(@project.namespace, @project, scope: :finished) visit namespace_project_builds_path(project.namespace, project, scope: :finished)
end end
it "shows Finished tab builds" do it "shows Finished tab builds" do
...@@ -58,15 +63,15 @@ describe "Builds" do ...@@ -58,15 +63,15 @@ describe "Builds" do
context "All builds" do context "All builds" do
before do before do
@project.builds.running_or_pending.each(&:success) project.builds.running_or_pending.each(&:success)
visit namespace_project_builds_path(@project.namespace, @project) visit namespace_project_builds_path(project.namespace, project)
end end
it "shows All tab builds" do it "shows All tab builds" do
expect(page).to have_selector('.nav-links li.active', text: 'All') expect(page).to have_selector('.nav-links li.active', text: 'All')
expect(page).to have_content @build.short_sha expect(page).to have_content build.short_sha
expect(page).to have_content @build.ref expect(page).to have_content build.ref
expect(page).to have_content @build.name expect(page).to have_content build.name
expect(page).not_to have_link 'Cancel running' expect(page).not_to have_link 'Cancel running'
end end
end end
...@@ -74,17 +79,17 @@ describe "Builds" do ...@@ -74,17 +79,17 @@ describe "Builds" do
describe "POST /:project/builds/:id/cancel_all" do describe "POST /:project/builds/:id/cancel_all" do
before do before do
@build.run! build.run!
visit namespace_project_builds_path(@project.namespace, @project) visit namespace_project_builds_path(project.namespace, project)
click_link "Cancel running" click_link "Cancel running"
end end
it 'shows all necessary content' do it 'shows all necessary content' do
expect(page).to have_selector('.nav-links li.active', text: 'All') expect(page).to have_selector('.nav-links li.active', text: 'All')
expect(page).to have_content 'canceled' expect(page).to have_content 'canceled'
expect(page).to have_content @build.short_sha expect(page).to have_content build.short_sha
expect(page).to have_content @build.ref expect(page).to have_content build.ref
expect(page).to have_content @build.name expect(page).to have_content build.name
expect(page).not_to have_link 'Cancel running' expect(page).not_to have_link 'Cancel running'
end end
end end
...@@ -92,20 +97,20 @@ describe "Builds" do ...@@ -92,20 +97,20 @@ describe "Builds" do
describe "GET /:project/builds/:id" do describe "GET /:project/builds/:id" do
context "Build from project" do context "Build from project" do
before do before do
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
end end
it 'shows commit`s data' do it 'shows commit`s data' do
expect(page.status_code).to eq(200) expect(page.status_code).to eq(200)
expect(page).to have_content @commit.sha[0..7] expect(page).to have_content pipeline.sha[0..7]
expect(page).to have_content @commit.git_commit_message expect(page).to have_content pipeline.git_commit_message
expect(page).to have_content @commit.git_author_name expect(page).to have_content pipeline.git_author_name
end end
end end
context "Build from other project" do context "Build from other project" do
before do before do
visit namespace_project_build_path(@project.namespace, @project, @build2) visit namespace_project_build_path(project.namespace, project, build2)
end end
it { expect(page.status_code).to eq(404) } it { expect(page.status_code).to eq(404) }
...@@ -113,8 +118,8 @@ describe "Builds" do ...@@ -113,8 +118,8 @@ describe "Builds" do
context "Download artifacts" do context "Download artifacts" do
before do before do
@build.update_attributes(artifacts_file: artifacts_file) build.update_attributes(artifacts_file: artifacts_file)
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
end end
it 'has button to download artifacts' do it 'has button to download artifacts' do
...@@ -124,8 +129,8 @@ describe "Builds" do ...@@ -124,8 +129,8 @@ describe "Builds" do
context 'Artifacts expire date' do context 'Artifacts expire date' do
before do before do
@build.update_attributes(artifacts_file: artifacts_file, artifacts_expire_at: expire_at) build.update_attributes(artifacts_file: artifacts_file, artifacts_expire_at: expire_at)
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
end end
context 'no expire date defined' do context 'no expire date defined' do
...@@ -160,8 +165,8 @@ describe "Builds" do ...@@ -160,8 +165,8 @@ describe "Builds" do
context 'Build raw trace' do context 'Build raw trace' do
before do before do
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
end end
it do it do
...@@ -170,10 +175,14 @@ describe "Builds" do ...@@ -170,10 +175,14 @@ describe "Builds" do
end end
describe 'Variables' do describe 'Variables' do
let(:trigger_request) { create(:ci_trigger_request_with_variables) }
let(:build) do
create :ci_build, pipeline: pipeline, trigger_request: trigger_request
end
before do before do
@trigger_request = create :ci_trigger_request_with_variables visit namespace_project_build_path(project.namespace, project, build)
@build = create :ci_build, pipeline: @commit, trigger_request: @trigger_request
visit namespace_project_build_path(@project.namespace, @project, @build)
end end
it 'shows variable key and value after click', js: true do it 'shows variable key and value after click', js: true do
...@@ -193,8 +202,8 @@ describe "Builds" do ...@@ -193,8 +202,8 @@ describe "Builds" do
describe "POST /:project/builds/:id/cancel" do describe "POST /:project/builds/:id/cancel" do
context "Build from project" do context "Build from project" do
before do before do
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
click_link "Cancel" click_link "Cancel"
end end
...@@ -207,9 +216,9 @@ describe "Builds" do ...@@ -207,9 +216,9 @@ describe "Builds" do
context "Build from other project" do context "Build from other project" do
before do before do
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
page.driver.post(cancel_namespace_project_build_path(@project.namespace, @project, @build2)) page.driver.post(cancel_namespace_project_build_path(project.namespace, project, build2))
end end
it { expect(page.status_code).to eq(404) } it { expect(page.status_code).to eq(404) }
...@@ -219,8 +228,8 @@ describe "Builds" do ...@@ -219,8 +228,8 @@ describe "Builds" do
describe "POST /:project/builds/:id/retry" do describe "POST /:project/builds/:id/retry" do
context "Build from project" do context "Build from project" do
before do before do
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
click_link 'Cancel' click_link 'Cancel'
page.within('.build-header') do page.within('.build-header') do
click_link 'Retry build' click_link 'Retry build'
...@@ -238,10 +247,10 @@ describe "Builds" do ...@@ -238,10 +247,10 @@ describe "Builds" do
context "Build from other project" do context "Build from other project" do
before do before do
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
click_link 'Cancel' click_link 'Cancel'
page.driver.post(retry_namespace_project_build_path(@project.namespace, @project, @build2)) page.driver.post(retry_namespace_project_build_path(project.namespace, project, build2))
end end
it { expect(page).to have_http_status(404) } it { expect(page).to have_http_status(404) }
...@@ -249,13 +258,13 @@ describe "Builds" do ...@@ -249,13 +258,13 @@ describe "Builds" do
context "Build that current user is not allowed to retry" do context "Build that current user is not allowed to retry" do
before do before do
@build.run! build.run!
@build.cancel! build.cancel!
@project.update(visibility_level: Gitlab::VisibilityLevel::PUBLIC) project.update(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
logout_direct logout_direct
login_with(create(:user)) login_with(create(:user))
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
end end
it 'does not show the Retry button' do it 'does not show the Retry button' do
...@@ -268,15 +277,15 @@ describe "Builds" do ...@@ -268,15 +277,15 @@ describe "Builds" do
describe "GET /:project/builds/:id/download" do describe "GET /:project/builds/:id/download" do
before do before do
@build.update_attributes(artifacts_file: artifacts_file) build.update_attributes(artifacts_file: artifacts_file)
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
click_link 'Download' click_link 'Download'
end end
context "Build from other project" do context "Build from other project" do
before do before do
@build2.update_attributes(artifacts_file: artifacts_file) build2.update_attributes(artifacts_file: artifacts_file)
visit download_namespace_project_build_artifacts_path(@project.namespace, @project, @build2) visit download_namespace_project_build_artifacts_path(project.namespace, project, build2)
end end
it { expect(page.status_code).to eq(404) } it { expect(page.status_code).to eq(404) }
...@@ -288,23 +297,23 @@ describe "Builds" do ...@@ -288,23 +297,23 @@ describe "Builds" do
context 'build from project' do context 'build from project' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile')
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
page.within('.js-build-sidebar') { click_link 'Raw' } page.within('.js-build-sidebar') { click_link 'Raw' }
end end
it 'sends the right headers' do it 'sends the right headers' do
expect(page.status_code).to eq(200) expect(page.status_code).to eq(200)
expect(page.response_headers['Content-Type']).to eq('text/plain; charset=utf-8') expect(page.response_headers['Content-Type']).to eq('text/plain; charset=utf-8')
expect(page.response_headers['X-Sendfile']).to eq(@build.path_to_trace) expect(page.response_headers['X-Sendfile']).to eq(build.path_to_trace)
end end
end end
context 'build from other project' do context 'build from other project' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile')
@build2.run! build2.run!
visit raw_namespace_project_build_path(@project.namespace, @project, @build2) visit raw_namespace_project_build_path(project.namespace, project, build2)
end end
it 'sends the right headers' do it 'sends the right headers' do
...@@ -325,8 +334,8 @@ describe "Builds" do ...@@ -325,8 +334,8 @@ describe "Builds" do
context 'when build has trace in file' do context 'when build has trace in file' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile')
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
allow_any_instance_of(Project).to receive(:ci_id).and_return(nil) allow_any_instance_of(Project).to receive(:ci_id).and_return(nil)
allow_any_instance_of(Ci::Build).to receive(:path_to_trace).and_return(existing_file) allow_any_instance_of(Ci::Build).to receive(:path_to_trace).and_return(existing_file)
...@@ -345,8 +354,8 @@ describe "Builds" do ...@@ -345,8 +354,8 @@ describe "Builds" do
context 'when build has trace in old file' do context 'when build has trace in old file' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile')
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
allow_any_instance_of(Project).to receive(:ci_id).and_return(999) allow_any_instance_of(Project).to receive(:ci_id).and_return(999)
allow_any_instance_of(Ci::Build).to receive(:path_to_trace).and_return(non_existing_file) allow_any_instance_of(Ci::Build).to receive(:path_to_trace).and_return(non_existing_file)
...@@ -365,8 +374,8 @@ describe "Builds" do ...@@ -365,8 +374,8 @@ describe "Builds" do
context 'when build has trace in DB' do context 'when build has trace in DB' do
before do before do
Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile') Capybara.current_session.driver.header('X-Sendfile-Type', 'X-Sendfile')
@build.run! build.run!
visit namespace_project_build_path(@project.namespace, @project, @build) visit namespace_project_build_path(project.namespace, project, build)
allow_any_instance_of(Project).to receive(:ci_id).and_return(nil) allow_any_instance_of(Project).to receive(:ci_id).and_return(nil)
allow_any_instance_of(Ci::Build).to receive(:path_to_trace).and_return(non_existing_file) allow_any_instance_of(Ci::Build).to receive(:path_to_trace).and_return(non_existing_file)
...@@ -385,7 +394,7 @@ describe "Builds" do ...@@ -385,7 +394,7 @@ describe "Builds" do
describe "GET /:project/builds/:id/trace.json" do describe "GET /:project/builds/:id/trace.json" do
context "Build from project" do context "Build from project" do
before do before do
visit trace_namespace_project_build_path(@project.namespace, @project, @build, format: :json) visit trace_namespace_project_build_path(project.namespace, project, build, format: :json)
end end
it { expect(page.status_code).to eq(200) } it { expect(page.status_code).to eq(200) }
...@@ -393,7 +402,7 @@ describe "Builds" do ...@@ -393,7 +402,7 @@ describe "Builds" do
context "Build from other project" do context "Build from other project" do
before do before do
visit trace_namespace_project_build_path(@project.namespace, @project, @build2, format: :json) visit trace_namespace_project_build_path(project.namespace, project, build2, format: :json)
end end
it { expect(page.status_code).to eq(404) } it { expect(page.status_code).to eq(404) }
...@@ -403,7 +412,7 @@ describe "Builds" do ...@@ -403,7 +412,7 @@ describe "Builds" do
describe "GET /:project/builds/:id/status" do describe "GET /:project/builds/:id/status" do
context "Build from project" do context "Build from project" do
before do before do
visit status_namespace_project_build_path(@project.namespace, @project, @build) visit status_namespace_project_build_path(project.namespace, project, build)
end end
it { expect(page.status_code).to eq(200) } it { expect(page.status_code).to eq(200) }
...@@ -411,7 +420,7 @@ describe "Builds" do ...@@ -411,7 +420,7 @@ describe "Builds" do
context "Build from other project" do context "Build from other project" do
before do before do
visit status_namespace_project_build_path(@project.namespace, @project, @build2) visit status_namespace_project_build_path(project.namespace, project, build2)
end end
it { expect(page.status_code).to eq(404) } it { expect(page.status_code).to eq(404) }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment