summaryrefslogtreecommitdiff
path: root/spec/support/helpers/http_basic_auth_helpers.rb
blob: bc34e073f9f8eac379622472ed08d18883881b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module HttpBasicAuthHelpers
  def user_basic_auth_header(user)
    access_token = create(:personal_access_token, user: user)

    basic_auth_header(user.username, access_token.token)
  end

  def job_basic_auth_header(job)
    basic_auth_header(::Gitlab::Auth::CI_JOB_USER, job.token)
  end

  def client_basic_auth_header(client)
    basic_auth_header(client.uid, client.secret)
  end

  def build_auth_headers(value)
    { 'HTTP_AUTHORIZATION' => value }
  end

  def build_token_auth_header(token)
    build_auth_headers("Bearer #{token}")
  end

  def basic_auth_header(username, password)
    build_auth_headers(ActionController::HttpAuthentication::Basic.encode_credentials(username, password))
  end
end