debian-mirror-gitlab/spec/factories/deploy_tokens.rb
2020-04-22 19:07:51 +05:30

36 lines
875 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :deploy_token do
token { nil }
token_encrypted { Gitlab::CryptoHelper.aes256_gcm_encrypt(SecureRandom.hex(50)) }
sequence(:name) { |n| "PDT #{n}" }
read_repository { true }
read_registry { true }
write_registry { false }
revoked { false }
expires_at { 5.days.from_now }
deploy_token_type { DeployToken.deploy_token_types[:project_type] }
trait :revoked do
revoked { true }
end
trait :gitlab_deploy_token do
name { DeployToken::GITLAB_DEPLOY_TOKEN_NAME }
end
trait :expired do
expires_at { Date.today - 1.month }
end
trait :group do
deploy_token_type { DeployToken.deploy_token_types[:group_type] }
end
trait :project do
deploy_token_type { DeployToken.deploy_token_types[:project_type] }
end
end
end