Welcome to mirror list, hosted at ThFree Co, Russian Federation.

relation_saver_spec.rb « project « import_export « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5032dd864bb0385dd94305fb653f7a696da15adb (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::ImportExport::Project::RelationSaver do
  include ImportExport::CommonUtil

  subject(:relation_saver) { described_class.new(project: project, shared: shared, relation: relation) }

  let_it_be(:export_path) { "#{Dir.tmpdir}/project_tree_saver_spec" }
  let_it_be(:project) { setup_project }

  let(:relation) { Projects::ImportExport::RelationExport::ROOT_RELATION }
  let(:shared) do
    shared = project.import_export_shared
    allow(shared).to receive(:export_path).and_return(export_path)
    shared
  end

  after do
    FileUtils.rm_rf(export_path)
  end

  describe '#save' do
    context 'when relation is the root node' do
      let(:relation) { Projects::ImportExport::RelationExport::ROOT_RELATION }

      it 'serializes the root node as a json file in the export path' do
        relation_saver.save # rubocop:disable Rails/SaveBang

        json = read_json(File.join(shared.export_path, 'tree', 'project.json'))
        expect(json).to include({ 'description' => 'Project description' })
      end

      it 'serializes only allowed attributes' do
        relation_saver.save # rubocop:disable Rails/SaveBang

        json = read_json(File.join(shared.export_path, 'tree', 'project.json'))
        expect(json).to include({ 'description' => 'Project description' })
        expect(json.keys).not_to include('name')
      end

      it 'successfuly serializes without errors' do
        result = relation_saver.save # rubocop:disable Rails/SaveBang

        expect(result).to eq(true)
        expect(shared.errors).to be_empty
      end
    end

    context 'when relation is a child node' do
      let(:relation) { 'labels' }

      it 'serializes the child node as a ndjson file in the export path inside the project folder' do
        relation_saver.save # rubocop:disable Rails/SaveBang

        ndjson = read_ndjson(File.join(shared.export_path, 'tree', 'project', "#{relation}.ndjson"))
        expect(ndjson.first).to include({ 'title' => 'Label 1' })
        expect(ndjson.second).to include({ 'title' => 'Label 2' })
      end

      it 'serializes only allowed attributes' do
        relation_saver.save # rubocop:disable Rails/SaveBang

        ndjson = read_ndjson(File.join(shared.export_path, 'tree', 'project', "#{relation}.ndjson"))
        expect(ndjson.first.keys).not_to include('description_html')
      end

      it 'successfuly serializes without errors' do
        result = relation_saver.save # rubocop:disable Rails/SaveBang

        expect(result).to eq(true)
        expect(shared.errors).to be_empty
      end
    end

    context 'when relation name is not supported' do
      let(:relation) { 'unknown' }

      it 'returns false and register the error' do
        result = relation_saver.save # rubocop:disable Rails/SaveBang

        expect(result).to eq(false)
        expect(shared.errors).to be_present
      end
    end

    context 'when an exception occurs during serialization' do
      it 'returns false and register the exception error message' do
        allow_next_instance_of(Gitlab::ImportExport::Json::StreamingSerializer) do |serializer|
          allow(serializer).to receive(:serialize_root).and_raise('Error!')
        end

        result = relation_saver.save # rubocop:disable Rails/SaveBang

        expect(result).to eq(false)
        expect(shared.errors).to include('Error!')
      end
    end
  end

  def setup_project
    project = create(:project,
      description: 'Project description'
    )

    create(:label, project: project, title: 'Label 1')
    create(:label, project: project, title: 'Label 2')

    project
  end

  def read_json(path)
    Gitlab::Json.parse(File.read(path))
  end

  def read_ndjson(path)
    relations = []
    File.foreach(path) do |line|
      json = Gitlab::Json.parse(line)
      relations << json
    end
    relations
  end
end