debian-mirror-gitlab/spec/factories/clusters/agent_tokens.rb

12 lines
310 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :cluster_agent_token, class: 'Clusters::AgentToken' do
association :agent, factory: :cluster_agent
token_encrypted { Gitlab::CryptoHelper.aes256_gcm_encrypt(SecureRandom.hex(50)) }
2021-04-17 20:07:23 +05:30
sequence(:name) { |n| "agent-token-#{n}" }
2020-10-24 23:57:45 +05:30
end
end