2019-07-25 01:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-19 12:11:12 -04:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :deploy_token do
|
2019-10-01 20:06:26 -04:00
|
|
|
token { nil }
|
|
|
|
token_encrypted { Gitlab::CryptoHelper.aes256_gcm_encrypt(SecureRandom.hex(50)) }
|
2018-03-19 12:11:12 -04:00
|
|
|
sequence(:name) { |n| "PDT #{n}" }
|
2019-10-01 20:06:26 -04:00
|
|
|
read_repository { true }
|
|
|
|
read_registry { true }
|
|
|
|
revoked { false }
|
2018-03-19 12:11:12 -04:00
|
|
|
expires_at { 5.days.from_now }
|
|
|
|
|
|
|
|
trait :revoked do
|
2019-10-01 20:06:26 -04:00
|
|
|
revoked { true }
|
2018-03-19 12:11:12 -04:00
|
|
|
end
|
2018-04-16 16:47:35 -04:00
|
|
|
|
|
|
|
trait :gitlab_deploy_token do
|
2019-10-01 20:06:26 -04:00
|
|
|
name { DeployToken::GITLAB_DEPLOY_TOKEN_NAME }
|
2018-04-16 16:47:35 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
trait :expired do
|
|
|
|
expires_at { Date.today - 1.month }
|
|
|
|
end
|
2018-03-19 12:11:12 -04:00
|
|
|
end
|
|
|
|
end
|