debian-mirror-gitlab/spec/features/projects/import_export/import_file_spec.rb

101 lines
3.1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-06-22 15:30:34 +05:30
require 'spec_helper'
2018-11-08 19:23:39 +05:30
describe 'Import/Export - project import integration test', :js do
2018-12-05 23:21:45 +05:30
include GitHelpers
2016-06-22 15:30:34 +05:30
2017-09-10 17:25:29 +05:30
let(:user) { create(:user) }
2016-06-22 15:30:34 +05:30
let(:file) { File.join(Rails.root, 'spec', 'features', 'projects', 'import_export', 'test_project_export.tar.gz') }
2017-08-17 22:00:37 +05:30
let(:export_path) { "#{Dir.tmpdir}/import_file_spec" }
2016-06-22 15:30:34 +05:30
2018-11-08 19:23:39 +05:30
before do
2018-11-20 20:47:30 +05:30
stub_uploads_object_storage(FileUploader)
2019-12-26 22:10:19 +05:30
allow_next_instance_of(Gitlab::ImportExport) do |instance|
allow(instance).to receive(:storage_path).and_return(export_path)
end
2017-09-10 17:25:29 +05:30
gitlab_sign_in(user)
2016-06-22 15:30:34 +05:30
end
2018-03-17 18:26:18 +05:30
after do
2016-06-22 15:30:34 +05:30
FileUtils.rm_rf(export_path, secure: true)
end
2016-11-03 12:29:30 +05:30
context 'when selecting the namespace' do
let(:user) { create(:admin) }
2018-03-17 18:26:18 +05:30
let!(:namespace) { user.namespace }
2018-12-05 23:21:45 +05:30
let(:randomHex) { SecureRandom.hex }
let(:project_name) { 'Test Project Name' + randomHex }
let(:project_path) { 'test-project-name' + randomHex }
2016-11-03 12:29:30 +05:30
2017-09-10 17:25:29 +05:30
context 'prefilled the path' do
2019-12-26 22:10:19 +05:30
it 'user imports an exported project successfully', :sidekiq_might_not_need_inline do
2017-09-10 17:25:29 +05:30
visit new_project_path
2016-06-22 15:30:34 +05:30
2018-11-20 20:47:30 +05:30
fill_in :project_name, with: project_name, visible: true
2018-03-17 18:26:18 +05:30
click_import_project_tab
2017-09-10 17:25:29 +05:30
click_link 'GitLab export'
2016-06-22 15:30:34 +05:30
2017-09-10 17:25:29 +05:30
expect(page).to have_content('Import an exported GitLab project')
2018-11-20 20:47:30 +05:30
expect(URI.parse(current_url).query).to eq("namespace_id=#{namespace.id}&name=#{ERB::Util.url_encode(project_name)}&path=#{project_path}")
2016-06-22 15:30:34 +05:30
2017-09-10 17:25:29 +05:30
attach_file('file', file)
2018-03-17 18:26:18 +05:30
click_on 'Import project'
2016-06-22 15:30:34 +05:30
2018-03-17 18:26:18 +05:30
expect(Project.count).to eq(1)
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
project = Project.last
expect(project).not_to be_nil
2018-05-09 12:01:36 +05:30
expect(project.description).to eq("Foo Bar")
2017-09-10 17:25:29 +05:30
expect(project.issues).not_to be_empty
expect(project.merge_requests).not_to be_empty
expect(wiki_exists?(project)).to be true
2018-10-15 14:42:47 +05:30
expect(project.import_state.status).to eq('finished')
2017-09-10 17:25:29 +05:30
end
2016-09-13 17:45:13 +05:30
end
2016-06-22 15:30:34 +05:30
2017-09-10 17:25:29 +05:30
context 'path is not prefilled' do
2019-12-26 22:10:19 +05:30
it 'user imports an exported project successfully', :sidekiq_might_not_need_inline do
2017-09-10 17:25:29 +05:30
visit new_project_path
2018-03-17 18:26:18 +05:30
click_import_project_tab
2017-09-10 17:25:29 +05:30
click_link 'GitLab export'
2016-08-24 12:49:21 +05:30
2018-11-20 20:47:30 +05:30
fill_in :name, with: 'Test Project Name', visible: true
2017-09-10 17:25:29 +05:30
fill_in :path, with: 'test-project-path', visible: true
attach_file('file', file)
2016-08-24 12:49:21 +05:30
2017-09-10 17:25:29 +05:30
expect { click_on 'Import project' }.to change { Project.count }.by(1)
2016-08-24 12:49:21 +05:30
2017-09-10 17:25:29 +05:30
project = Project.last
expect(project).not_to be_nil
expect(page).to have_content("Project 'test-project-path' is being imported")
2016-09-13 17:45:13 +05:30
end
end
2017-09-10 17:25:29 +05:30
end
2016-09-13 17:45:13 +05:30
2018-11-08 19:23:39 +05:30
it 'invalid project' do
2018-03-17 18:26:18 +05:30
project = create(:project, namespace: user.namespace)
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
visit new_project_path
2016-09-13 17:45:13 +05:30
2018-11-20 20:47:30 +05:30
fill_in :project_name, with: project.name, visible: true
2018-03-17 18:26:18 +05:30
click_import_project_tab
2017-09-10 17:25:29 +05:30
click_link 'GitLab export'
attach_file('file', file)
click_on 'Import project'
2016-09-13 17:45:13 +05:30
2017-09-10 17:25:29 +05:30
page.within('.flash-container') do
expect(page).to have_content('Project could not be imported')
2016-08-24 12:49:21 +05:30
end
end
2016-11-03 12:29:30 +05:30
def wiki_exists?(project)
2016-06-22 15:30:34 +05:30
wiki = ProjectWiki.new(project)
2018-11-08 19:23:39 +05:30
wiki.repository.exists? && !wiki.repository.empty?
2016-06-22 15:30:34 +05:30
end
2016-11-03 12:29:30 +05:30
2018-03-17 18:26:18 +05:30
def click_import_project_tab
find('#import-project-tab').click
2016-11-03 12:29:30 +05:30
end
2016-06-22 15:30:34 +05:30
end