summaryrefslogtreecommitdiff
path: root/spec/factories/terraform/state.rb
blob: c54a8aedbc6781f1bde42f0a52e465c6c3dfde4f (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

FactoryBot.define do
  factory :terraform_state, class: 'Terraform::State' do
    project { association(:project) }

    sequence(:name) { |n| "state-#{n}" }

    trait :with_file do
      versioning_enabled { false }
      file { fixture_file_upload('spec/fixtures/terraform/terraform.tfstate', 'application/json') }
    end

    trait :locked do
      sequence(:lock_xid) { |n| "lock-#{n}" }
      locked_at { Time.current }
      locked_by_user { association(:user) }
    end

    trait :with_version do
      after(:create) do |state|
        create(:terraform_state_version, terraform_state: state)
      end
    end

    # Remove with https://gitlab.com/gitlab-org/gitlab/-/issues/235108
    factory :legacy_terraform_state, parent: :terraform_state, traits: [:with_file]
  end
end