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

export_service_spec.rb « import_export « groups « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b1f76964722221da9fb95b36af43cb6021a226e0 (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
# frozen_string_literal: true

require 'spec_helper'

describe Groups::ImportExport::ExportService do
  describe '#execute' do
    let!(:user) { create(:user) }
    let(:group) { create(:group) }
    let(:shared) { Gitlab::ImportExport::Shared.new(group) }
    let(:export_path) { shared.export_path }
    let(:service) { described_class.new(group: group, user: user, params: { shared: shared }) }

    before do
      group.add_owner(user)
    end

    after do
      FileUtils.rm_rf(export_path)
    end

    it 'saves the models' do
      expect(Gitlab::ImportExport::GroupTreeSaver).to receive(:new).and_call_original

      service.execute
    end

    context 'when saver succeeds' do
      it 'saves the group in the file system' do
        service.execute

        expect(group.import_export_upload.export_file.file).not_to be_nil
        expect(File.directory?(export_path)).to eq(false)
        expect(File.exist?(shared.archive_path)).to eq(false)
      end
    end

    context 'when user does not have admin_group permission' do
      let!(:another_user) { create(:user) }
      let(:service) { described_class.new(group: group, user: another_user, params: { shared: shared }) }

      it 'fails' do
        expected_message =
          "User with ID: %s does not have permission to Group %s with ID: %s." %
            [another_user.id, group.name, group.id]
        expect { service.execute }.to raise_error(Gitlab::ImportExport::Error).with_message(expected_message)
      end
    end

    context 'when saving services fail' do
      before do
        allow(service).to receive_message_chain(:tree_exporter, :save).and_return(false)
      end

      it 'removes the remaining exported data' do
        allow_any_instance_of(Gitlab::ImportExport::Saver).to receive(:compress_and_save).and_return(false)

        expect { service.execute }.to raise_error(Gitlab::ImportExport::Error)

        expect(group.import_export_upload).to be_nil
        expect(File.directory?(export_path)).to eq(false)
        expect(File.exist?(shared.archive_path)).to eq(false)
      end

      it 'notifies logger' do
        expect_any_instance_of(Gitlab::Import::Logger).to receive(:error)

        expect { service.execute }.to raise_error(Gitlab::ImportExport::Error)
      end
    end
  end
end