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

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

  let(:admin) { create(:admin) }
  let(:normal_user) { create(:user) }
  let!(:namespace) { create(:namespace, name: "asd", owner: admin) }
  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)
  end

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

  context 'admin user' do
    before do
      login_as(admin)
    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
  end

  context 'normal user' do
    before do
      login_as(normal_user)
    end

    scenario 'non-admin user is not allowed to import a project' do
      expect(Project.all.count).to be_zero

      visit new_project_path

      fill_in :project_path, with: 'test-project-path', visible: true

      expect(page).not_to have_content('GitLab export')
    end
  end

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