Improve spec
This commit is contained in:
parent
d89c18901b
commit
d8fb903ef7
3 changed files with 73 additions and 31 deletions
|
@ -422,7 +422,7 @@ describe Projects::JobsController do
|
|||
let(:triggered_by) { create(:user) }
|
||||
|
||||
it 'does not have successful status' do
|
||||
expect(response).to have_gitlab_http_status(:not_found)
|
||||
expect(response).not_to have_gitlab_http_status(:found)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -152,7 +152,7 @@ describe Ci::BuildPolicy do
|
|||
end
|
||||
|
||||
describe 'rules for erase build' do
|
||||
let(:project) { create(:project) }
|
||||
let(:project) { create(:project, :repository) }
|
||||
let(:build) { create(:ci_build, pipeline: pipeline, ref: 'some-ref', user: owner) }
|
||||
|
||||
context 'when a developer erases a build' do
|
||||
|
@ -162,7 +162,7 @@ describe Ci::BuildPolicy do
|
|||
|
||||
context 'when developers can push to the branch' do
|
||||
before do
|
||||
create(:protected_branch, :developers_can_merge,
|
||||
create(:protected_branch, :developers_can_push,
|
||||
name: build.ref, project: project)
|
||||
end
|
||||
|
||||
|
@ -183,7 +183,7 @@ describe Ci::BuildPolicy do
|
|||
let(:owner) { user }
|
||||
|
||||
before do
|
||||
create(:protected_branch, :no_one_can_push,
|
||||
create(:protected_branch, :no_one_can_push, :no_one_can_merge,
|
||||
name: build.ref, project: project)
|
||||
end
|
||||
|
||||
|
@ -196,16 +196,34 @@ describe Ci::BuildPolicy do
|
|||
project.add_master(user)
|
||||
end
|
||||
|
||||
context 'when the build was created by the master' do
|
||||
let(:owner) { user }
|
||||
context 'when masters can push to the branch' do
|
||||
before do
|
||||
create(:protected_branch, :masters_can_push,
|
||||
name: build.ref, project: project)
|
||||
end
|
||||
|
||||
it { expect(policy).to be_allowed :erase_build }
|
||||
context 'when the build was created by the master' do
|
||||
let(:owner) { user }
|
||||
|
||||
it { expect(policy).to be_allowed :erase_build }
|
||||
end
|
||||
|
||||
context 'when the build was created by the other' do
|
||||
let(:owner) { create(:user) }
|
||||
|
||||
it { expect(policy).to be_allowed :erase_build }
|
||||
end
|
||||
end
|
||||
|
||||
context 'when the build was created by the other' do
|
||||
let(:owner) { create(:user) }
|
||||
context 'when no one can push or merge to the branch' do
|
||||
let(:owner) { user }
|
||||
|
||||
it { expect(policy).to be_allowed :erase_build }
|
||||
before do
|
||||
create(:protected_branch, :no_one_can_push, :no_one_can_merge,
|
||||
name: build.ref, project: project)
|
||||
end
|
||||
|
||||
it { expect(policy).to be_disallowed :erase_build }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -500,35 +500,59 @@ describe API::Jobs do
|
|||
end
|
||||
|
||||
describe 'POST /projects/:id/jobs/:job_id/erase' do
|
||||
before do
|
||||
project.add_master(user)
|
||||
context 'when a master erases a build' do
|
||||
before do
|
||||
project.add_master(user)
|
||||
|
||||
post api("/projects/#{project.id}/jobs/#{job.id}/erase", user)
|
||||
end
|
||||
|
||||
context 'job is erasable' do
|
||||
let(:job) { create(:ci_build, :trace, :artifacts, :success, project: project, pipeline: pipeline) }
|
||||
|
||||
it 'erases job content' do
|
||||
expect(response).to have_gitlab_http_status(201)
|
||||
expect(job).not_to have_trace
|
||||
expect(job.artifacts_file.exists?).to be_falsy
|
||||
expect(job.artifacts_metadata.exists?).to be_falsy
|
||||
post api("/projects/#{project.id}/jobs/#{job.id}/erase", user)
|
||||
end
|
||||
|
||||
it 'updates job' do
|
||||
job.reload
|
||||
context 'job is erasable' do
|
||||
let(:job) { create(:ci_build, :trace, :artifacts, :success, project: project, pipeline: pipeline) }
|
||||
|
||||
expect(job.erased_at).to be_truthy
|
||||
expect(job.erased_by).to eq(user)
|
||||
it 'erases job content' do
|
||||
expect(response).to have_gitlab_http_status(201)
|
||||
expect(job).not_to have_trace
|
||||
expect(job.artifacts_file.exists?).to be_falsy
|
||||
expect(job.artifacts_metadata.exists?).to be_falsy
|
||||
end
|
||||
|
||||
it 'updates job' do
|
||||
job.reload
|
||||
|
||||
expect(job.erased_at).to be_truthy
|
||||
expect(job.erased_by).to eq(user)
|
||||
end
|
||||
end
|
||||
|
||||
context 'job is not erasable' do
|
||||
let(:job) { create(:ci_build, :trace, project: project, pipeline: pipeline) }
|
||||
|
||||
it 'responds with forbidden' do
|
||||
expect(response).to have_gitlab_http_status(403)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context 'job is not erasable' do
|
||||
let(:job) { create(:ci_build, :trace, project: project, pipeline: pipeline) }
|
||||
context 'when a developer erases a build' do
|
||||
before do
|
||||
project.add_developer(user)
|
||||
|
||||
it 'responds with forbidden' do
|
||||
expect(response).to have_gitlab_http_status(403)
|
||||
post api("/projects/#{project.id}/jobs/#{job.id}/erase", user)
|
||||
end
|
||||
|
||||
let(:job) { create(:ci_build, :trace, :artifacts, :success, project: project, pipeline: pipeline, user: owner) }
|
||||
|
||||
context 'when the build was created by the developer' do
|
||||
let(:owner) { user }
|
||||
|
||||
it { expect(response).to have_gitlab_http_status(201) }
|
||||
end
|
||||
|
||||
context 'when the build was created by the other' do
|
||||
let(:owner) { create(:user) }
|
||||
|
||||
it { expect(response).to have_gitlab_http_status(403) }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue