diff options
author | blackst0ne <blackst0ne.ru@gmail.com> | 2017-09-05 10:55:12 +1100 |
---|---|---|
committer | Vitaliy @blackst0ne Klachkov <blackst0ne.ru@gmail.com> | 2017-09-05 20:54:12 +1100 |
commit | 02aa269e34b7c05a52e5226fc02d91ffbbb6010f (patch) | |
tree | b03816d8e9b04680d10061a9949bc358b81657d7 /spec | |
parent | 89efaf2aa2d65ae41ce5502059d40fa068be945f (diff) | |
download | gitlab-ce-02aa269e34b7c05a52e5226fc02d91ffbbb6010f.tar.gz |
Add branch existence check to the APIv4 branches via HEAD request
Diffstat (limited to 'spec')
-rw-r--r-- | spec/requests/api/branches_spec.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/requests/api/branches_spec.rb b/spec/requests/api/branches_spec.rb index b1e011de604..cc794fad3a7 100644 --- a/spec/requests/api/branches_spec.rb +++ b/spec/requests/api/branches_spec.rb @@ -75,6 +75,22 @@ describe API::Branches do let(:route) { "/projects/#{project_id}/repository/branches/#{branch_name}" } shared_examples_for 'repository branch' do + context 'HEAD request' do + it 'returns 204 No Content' do + head api(route, user) + + expect(response).to have_gitlab_http_status(204) + expect(response.body).to be_empty + end + + it 'returns 404 Not Found' do + head api("/projects/#{project_id}/repository/branches/unknown", user) + + expect(response).to have_gitlab_http_status(404) + expect(response.body).to be_empty + end + end + it 'returns the repository branch' do get api(route, current_user) |