Commit aa3a3fd1 authored by Lin Jen-Shin's avatar Lin Jen-Shin

Cleanup the tests a bit in order to extend it

parent c9a46263
...@@ -295,31 +295,50 @@ describe Ci::API::API do ...@@ -295,31 +295,50 @@ describe Ci::API::API do
context 'build has been erased' do context 'build has been erased' do
let(:build) { create(:ci_build, erased_at: Time.now) } let(:build) { create(:ci_build, erased_at: Time.now) }
before { upload_artifacts(file_upload, headers_with_token) }
before do
upload_artifacts(file_upload, headers_with_token)
end
it 'should respond with forbidden' do it 'should respond with forbidden' do
expect(response.status).to eq 403 expect(response.status).to eq 403
end end
end end
context "should post artifact to running build" do context 'should post artifact to running build' do
it "uses regual file post" do shared_examples 'post artifact' do
upload_artifacts(file_upload, headers_with_token, false) it 'updates successfully' do
expect(response).to have_http_status(201) response_filename =
expect(json_response["artifacts_file"]["filename"]).to eq(file_upload.original_filename) json_response["artifacts_file"]["filename"]
expect(response).to have_http_status(201)
expect(response_filename).to eq(file_upload.original_filename)
end
end
context 'uses regular file post' do
before do
upload_artifacts(file_upload, headers_with_token, false)
end
it_behaves_like 'post artifact'
end end
it "uses accelerated file post" do context 'uses accelerated file post' do
upload_artifacts(file_upload, headers_with_token, true) before do
expect(response).to have_http_status(201) upload_artifacts(file_upload, headers_with_token, true)
expect(json_response["artifacts_file"]["filename"]).to eq(file_upload.original_filename) end
it_behaves_like 'post artifact'
end end
it "updates artifact" do context 'updates artifact' do
upload_artifacts(file_upload, headers_with_token) before do
upload_artifacts(file_upload2, headers_with_token) upload_artifacts(file_upload2, headers_with_token)
expect(response).to have_http_status(201) upload_artifacts(file_upload, headers_with_token)
expect(json_response["artifacts_file"]["filename"]).to eq(file_upload2.original_filename) end
it_behaves_like 'post artifact'
end end
end end
......
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