summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/import_export/repo_saver_spec.rb
blob: a7f4e11271e38549939b3616284df1d445fd8858 (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
require 'spec_helper'

describe Gitlab::ImportExport::RepoSaver, services: true do
  describe 'bundle a project Git repo' do
    let(:user) { create(:user) }
    let!(:project) { create(:empty_project, :public, name: 'searchable_project') }
    let(:export_path) { "#{Dir.tmpdir}/project_tree_saver_spec" }
    let(:shared) { Gitlab::ImportExport::Shared.new(relative_path: project.path_with_namespace) }
    let(:bundler) { described_class.new(project: project, shared: shared) }

    before do
      project.team << [user, :master]
      allow_any_instance_of(Gitlab::ImportExport).to receive(:storage_path).and_return(export_path)
    end

    after do
      FileUtils.rm_rf(export_path)
    end

    it 'bundles the repo successfully' do
      expect(bundler.save).to be true
    end
  end
end