summaryrefslogtreecommitdiff
path: root/spec/factories/ci/reports/sbom/sources.rb
blob: 688c0250b5f94b622b3b86c1c1a38c26014954f2 (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
30
31
# frozen_string_literal: true

FactoryBot.define do
  factory :ci_reports_sbom_source, class: '::Gitlab::Ci::Reports::Sbom::Source' do
    type { :dependency_scanning }

    transient do
      sequence(:input_file_path) { |n| "subproject-#{n}/package-lock.json" }
      sequence(:source_file_path) { |n| "subproject-#{n}/package.json" }
    end

    data do
      {
        'category' => 'development',
        'input_file' => { 'path' => input_file_path },
        'source_file' => { 'path' => source_file_path },
        'package_manager' => { 'name' => 'npm' },
        'language' => { 'name' => 'JavaScript' }
      }
    end

    skip_create

    initialize_with do
      ::Gitlab::Ci::Reports::Sbom::Source.new(
        type: type,
        data: data
      )
    end
  end
end