debian-mirror-gitlab/spec/support/api_helpers.rb

63 lines
1.7 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module ApiHelpers
# Public: Prepend a request path with the path to the API
#
# path - Path to append
# user - User object - If provided, automatically appends private_token query
# string for authenticated requests
#
# Examples
#
# >> api('/issues')
# => "/api/v2/issues"
#
# >> api('/issues', User.last)
# => "/api/v2/issues?private_token=..."
#
# >> api('/issues?foo=bar', User.last)
# => "/api/v2/issues?foo=bar&private_token=..."
#
# Returns the relative path to the requested API resource
2017-09-10 17:25:29 +05:30
def api(path, user = nil, version: API::API.version, personal_access_token: nil, oauth_access_token: nil)
2017-08-17 22:00:37 +05:30
"/api/#{version}#{path}" +
2014-09-02 18:07:02 +05:30
# Normalize query string
(path.index('?') ? '' : '?') +
2017-09-10 17:25:29 +05:30
if personal_access_token.present?
"&private_token=#{personal_access_token.token}"
elsif oauth_access_token.present?
"&access_token=#{oauth_access_token.token}"
2014-09-02 18:07:02 +05:30
# Append private_token if given a User object
2017-09-10 17:25:29 +05:30
elsif user.respond_to?(:private_token)
2016-09-13 17:45:13 +05:30
"&private_token=#{user.private_token}"
else
''
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
# Temporary helper method for simplifying V3 exclusive API specs
2017-09-10 17:25:29 +05:30
def v3_api(path, user = nil, personal_access_token: nil, oauth_access_token: nil)
api(
path,
user,
version: 'v3',
personal_access_token: personal_access_token,
oauth_access_token: oauth_access_token
)
2017-08-17 22:00:37 +05:30
end
2015-09-25 12:07:36 +05:30
def ci_api(path, user = nil)
"/ci/api/v1/#{path}" +
# Normalize query string
(path.index('?') ? '' : '?') +
# Append private_token if given a User object
2016-09-13 17:45:13 +05:30
if user.respond_to?(:private_token)
"&private_token=#{user.private_token}"
else
''
end
2015-09-25 12:07:36 +05:30
end
2014-09-02 18:07:02 +05:30
end