file_importer_spec.rb 3.3 KB
Newer Older
1 2
# frozen_string_literal: true

3 4
require 'spec_helper'

5
describe Gitlab::ImportExport::FileImporter do
6 7
  include ExportFileHelper

8
  let(:shared) { Gitlab::ImportExport::Shared.new(nil) }
9
  let(:storage_path) { "#{Dir.tmpdir}/file_importer_spec" }
10 11
  let(:valid_file) { "#{shared.export_path}/valid.json" }
  let(:symlink_file) { "#{shared.export_path}/invalid.json" }
12
  let(:hidden_symlink_file) { "#{shared.export_path}/.hidden" }
13
  let(:subfolder_symlink_file) { "#{shared.export_path}/subfolder/invalid.json" }
14
  let(:evil_symlink_file) { "#{shared.export_path}/.\nevil" }
15
  let(:custom_mode_symlink_file) { "#{shared.export_path}/symlink.mode" }
16 17 18

  before do
    stub_const('Gitlab::ImportExport::FileImporter::MAX_RETRIES', 0)
19 20 21
    stub_uploads_object_storage(FileUploader)

    allow_any_instance_of(Gitlab::ImportExport).to receive(:storage_path).and_return(storage_path)
22
    allow_any_instance_of(Gitlab::ImportExport::CommandLineUtil).to receive(:untar_zxf).and_return(true)
23
    allow_any_instance_of(Gitlab::ImportExport::Shared).to receive(:relative_archive_path).and_return('test')
24
    allow(SecureRandom).to receive(:hex).and_return('abcd')
25 26 27 28
    setup_files
  end

  after do
29
    FileUtils.rm_rf(storage_path)
30 31
  end

32 33
  context 'normal run' do
    before do
34
      described_class.import(project: build(:project), archive_file: '', shared: shared)
35
    end
36

37 38 39 40 41 42 43 44
    it 'removes symlinks in root folder' do
      expect(File.exist?(symlink_file)).to be false
    end

    it 'removes hidden symlinks in root folder' do
      expect(File.exist?(hidden_symlink_file)).to be false
    end

45 46 47 48
    it 'removes evil symlinks in root folder' do
      expect(File.exist?(evil_symlink_file)).to be false
    end

49 50 51
    it 'removes symlinks in subfolders' do
      expect(File.exist?(subfolder_symlink_file)).to be false
    end
52

53 54 55 56
    it 'removes symlinks without any file permissions' do
      expect(File.exist?(custom_mode_symlink_file)).to be false
    end

57 58 59 60
    it 'does not remove a valid file' do
      expect(File.exist?(valid_file)).to be true
    end

61 62 63 64
    it 'does not change a valid file permissions' do
      expect(file_permissions(valid_file)).not_to eq(0000)
    end

65 66 67
    it 'creates the file in the right subfolder' do
      expect(shared.export_path).to include('test/abcd')
    end
68 69
  end

70 71 72
  context 'error' do
    before do
      allow_any_instance_of(described_class).to receive(:wait_for_archived_file).and_raise(StandardError)
73
      described_class.import(project: build(:project), archive_file: '', shared: shared)
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    end

    it 'removes symlinks in root folder' do
      expect(File.exist?(symlink_file)).to be false
    end

    it 'removes hidden symlinks in root folder' do
      expect(File.exist?(hidden_symlink_file)).to be false
    end

    it 'removes symlinks in subfolders' do
      expect(File.exist?(subfolder_symlink_file)).to be false
    end

    it 'does not remove a valid file' do
      expect(File.exist?(valid_file)).to be true
    end
91 92 93 94 95 96 97
  end

  def setup_files
    FileUtils.mkdir_p("#{shared.export_path}/subfolder/")
    FileUtils.touch(valid_file)
    FileUtils.ln_s(valid_file, symlink_file)
    FileUtils.ln_s(valid_file, subfolder_symlink_file)
98 99
    FileUtils.ln_s(valid_file, hidden_symlink_file)
    FileUtils.ln_s(valid_file, evil_symlink_file)
100 101
    FileUtils.ln_s(valid_file, custom_mode_symlink_file)
    FileUtils.chmod_R(0000, custom_mode_symlink_file)
102 103
  end
end