summaryrefslogtreecommitdiff
path: root/spec/features/projects/import_export/import_file_spec.rb
blob: 7835e1678ad0596a1ed2c60fedada963261df467 (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
require 'spec_helper'

feature 'project import', feature: true, js: true do
  include Select2Helper

  let(:user) { create(:admin) }
  let!(:namespace) { create(:namespace, name: "asd", owner: user) }
  let(:file) { File.join(Rails.root, 'spec', 'features', 'projects', 'import_export', 'test_project_export.tar.gz') }
  let(:export_path) { "#{Dir::tmpdir}/import_file_spec" }
  let(:project) { Project.last }
  let(:project_hook) { Gitlab::Git::Hook.new('post-receive', project.repository.path) }

  background do
    allow_any_instance_of(Gitlab::ImportExport).to receive(:storage_path).and_return(export_path)
    login_as(user)
  end

  after(:each) do
    FileUtils.rm_rf(export_path, secure: true)
  end

  scenario 'user imports an exported project successfully' do
    expect(Project.all.count).to be_zero

    visit new_project_path

    select2('2', from: '#project_namespace_id')
    fill_in :project_path, with: 'test-project-path', visible: true
    click_link 'GitLab export'

    expect(page).to have_content('GitLab project export')
    expect(URI.parse(current_url).query).to eq('namespace_id=2&path=test-project-path')

    attach_file('file', file)

    click_on 'Import project' # import starts

    expect(project).not_to be_nil
    expect(project.issues).not_to be_empty
    expect(project.merge_requests).not_to be_empty
    expect(project_hook).to exist
    expect(wiki_exists?).to be true
    expect(project.import_status).to eq('finished')
  end

  scenario 'invalid project' do
    project = create(:project, namespace_id: 2)

    visit new_project_path

    select2('2', from: '#project_namespace_id')
    fill_in :project_path, with: project.name, visible: true
    click_link 'GitLab export'

    attach_file('file', file)
    click_on 'Import project'

    page.within('.flash-container') do
      expect(page).to have_content('Project could not be imported')
    end
  end

  scenario 'project with no name' do
    create(:project, namespace_id: 2)

    visit new_project_path

    select2('2', from: '#project_namespace_id')

    # click on disabled element
    find(:link, 'GitLab export').trigger('click')

    page.within('.flash-container') do
      expect(page).to have_content('Please enter path and name')
    end
  end

  def wiki_exists?
    wiki = ProjectWiki.new(project)
    File.exist?(wiki.repository.path_to_repo) && !wiki.repository.empty?
  end
end