debian-mirror-gitlab/spec/requests/api/metadata_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

91 lines
2.3 KiB
Ruby
Raw Normal View History

2022-08-13 15:12:31 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe API::Metadata do
shared_examples_for 'GET /metadata' do
context 'when unauthenticated' do
it 'returns authentication error' do
2022-11-25 23:54:43 +05:30
get api(endpoint)
2022-08-13 15:12:31 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
end
end
context 'when authenticated as user' do
let(:user) { create(:user) }
it 'returns the metadata information' do
2022-11-25 23:54:43 +05:30
get api(endpoint, user)
2022-08-13 15:12:31 +05:30
expect_metadata
end
end
context 'when authenticated with token' do
let(:personal_access_token) { create(:personal_access_token, scopes: scopes) }
context 'with api scope' do
let(:scopes) { %i(api) }
it 'returns the metadata information' do
2022-11-25 23:54:43 +05:30
get api(endpoint, personal_access_token: personal_access_token)
2022-08-13 15:12:31 +05:30
expect_metadata
end
it 'returns "200" response on head requests' do
2022-11-25 23:54:43 +05:30
head api(endpoint, personal_access_token: personal_access_token)
2022-08-13 15:12:31 +05:30
expect(response).to have_gitlab_http_status(:ok)
end
end
context 'with read_user scope' do
let(:scopes) { %i(read_user) }
it 'returns the metadata information' do
2022-11-25 23:54:43 +05:30
get api(endpoint, personal_access_token: personal_access_token)
2022-08-13 15:12:31 +05:30
expect_metadata
end
it 'returns "200" response on head requests' do
2022-11-25 23:54:43 +05:30
head api(endpoint, personal_access_token: personal_access_token)
2022-08-13 15:12:31 +05:30
expect(response).to have_gitlab_http_status(:ok)
end
end
context 'with neither api nor read_user scope' do
let(:scopes) { %i(read_repository) }
it 'returns authorization error' do
2022-11-25 23:54:43 +05:30
get api(endpoint, personal_access_token: personal_access_token)
2022-08-13 15:12:31 +05:30
expect(response).to have_gitlab_http_status(:forbidden)
end
end
end
def expect_metadata
aggregate_failures("testing response") do
expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/metadata')
end
end
end
2022-11-25 23:54:43 +05:30
describe 'GET /metadata' do
let(:endpoint) { '/metadata' }
2022-08-13 15:12:31 +05:30
include_examples 'GET /metadata'
end
2022-11-25 23:54:43 +05:30
describe 'GET /version' do
let(:endpoint) { '/version' }
2022-08-13 15:12:31 +05:30
include_examples 'GET /metadata'
end
end