summaryrefslogtreecommitdiff
path: root/spec/lib/bulk_imports/projects/pipelines/protected_branches_pipeline_spec.rb
blob: 7de2e26619266c9471477ff03bb6f1e7669afe69 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BulkImports::Projects::Pipelines::ProtectedBranchesPipeline do
  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:bulk_import) { create(:bulk_import, user: user) }
  let_it_be(:entity) { create(:bulk_import_entity, :project_entity, project: project, bulk_import: bulk_import) }
  let_it_be(:tracker) { create(:bulk_import_tracker, entity: entity) }
  let_it_be(:context) { BulkImports::Pipeline::Context.new(tracker) }
  let_it_be(:protected_branch) do
    {
      'name' => 'main',
      'created_at' => '2016-06-14T15:02:47.967Z',
      'updated_at' => '2016-06-14T15:02:47.967Z',
      'merge_access_levels' => [
        {
          'access_level' => 40,
          'created_at' => '2016-06-15T15:02:47.967Z',
          'updated_at' => '2016-06-15T15:02:47.967Z'
        }
      ],
      'push_access_levels' => [
        {
          'access_level' => 30,
          'created_at' => '2016-06-16T15:02:47.967Z',
          'updated_at' => '2016-06-16T15:02:47.967Z'
        }
      ]
    }
  end

  subject(:pipeline) { described_class.new(context) }

  describe '#run' do
    it 'imports protected branch information' do
      allow_next_instance_of(BulkImports::Common::Extractors::NdjsonExtractor) do |extractor|
        allow(extractor).to receive(:extract).and_return(BulkImports::Pipeline::ExtractedData.new(data: [protected_branch, 0]))
      end

      pipeline.run

      imported_protected_branch = project.protected_branches.last
      merge_access_level = imported_protected_branch.merge_access_levels.first
      push_access_level = imported_protected_branch.push_access_levels.first

      aggregate_failures do
        expect(imported_protected_branch.name).to eq(protected_branch['name'])
        expect(imported_protected_branch.updated_at).to eq(protected_branch['updated_at'])
        expect(imported_protected_branch.created_at).to eq(protected_branch['created_at'])
        expect(merge_access_level.access_level).to eq(protected_branch['merge_access_levels'].first['access_level'])
        expect(merge_access_level.created_at).to eq(protected_branch['merge_access_levels'].first['created_at'])
        expect(merge_access_level.updated_at).to eq(protected_branch['merge_access_levels'].first['updated_at'])
        expect(push_access_level.access_level).to eq(protected_branch['push_access_levels'].first['access_level'])
        expect(push_access_level.created_at).to eq(protected_branch['push_access_levels'].first['created_at'])
        expect(push_access_level.updated_at).to eq(protected_branch['push_access_levels'].first['updated_at'])
      end
    end
  end
end