summaryrefslogtreecommitdiff
path: root/spec/factories/plan_limits.rb
blob: 1e4f70cd925d2b1585e7cdc7d281b8ae2dbdf28b (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
# frozen_string_literal: true

FactoryBot.define do
  factory :plan_limits do
    plan

    dast_profile_schedules { 50 }

    Plan.all_plans.each do |plan|
      trait :"#{plan}_plan" do
        plan factory: :"#{plan}_plan"
      end
    end

    trait :with_package_file_sizes do
      conan_max_file_size { 100 }
      helm_max_file_size { 100 }
      maven_max_file_size { 100 }
      npm_max_file_size { 100 }
      nuget_max_file_size { 100 }
      pypi_max_file_size { 100 }
      generic_packages_max_file_size { 100 }
    end
  end
end