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

108 lines
3.1 KiB
Ruby
Raw Normal View History

2016-06-22 15:30:34 +05:30
require 'spec_helper'
2016-09-29 09:46:39 +05:30
feature 'Import/Export - project import integration test', feature: true, js: true do
2016-06-22 15:30:34 +05:30
include Select2Helper
let(:file) { File.join(Rails.root, 'spec', 'features', 'projects', 'import_export', 'test_project_export.tar.gz') }
let(:export_path) { "#{Dir::tmpdir}/import_file_spec" }
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
2016-11-03 12:29:30 +05:30
context 'when selecting the namespace' do
let(:user) { create(:admin) }
let!(:namespace) { create(:namespace, name: "asd", owner: user) }
2016-09-13 17:45:13 +05:30
before do
2016-11-03 12:29:30 +05:30
login_as(user)
2016-09-13 17:45:13 +05:30
end
2016-06-22 15:30:34 +05:30
2016-09-13 17:45:13 +05:30
scenario 'user imports an exported project successfully' do
visit new_project_path
2016-06-22 15:30:34 +05:30
2016-11-03 12:29:30 +05:30
select2(namespace.id, from: '#project_namespace_id')
2016-09-13 17:45:13 +05:30
fill_in :project_path, with: 'test-project-path', visible: true
click_link 'GitLab export'
2016-06-22 15:30:34 +05:30
2016-09-13 17:45:13 +05:30
expect(page).to have_content('GitLab project export')
2016-11-03 12:29:30 +05:30
expect(URI.parse(current_url).query).to eq("namespace_id=#{namespace.id}&path=test-project-path")
2016-06-22 15:30:34 +05:30
2016-09-13 17:45:13 +05:30
attach_file('file', file)
2016-06-22 15:30:34 +05:30
2016-11-03 12:29:30 +05:30
expect { click_on 'Import project' }.to change { Project.count }.from(0).to(1)
2016-09-13 17:45:13 +05:30
2016-11-03 12:29:30 +05:30
project = Project.last
2016-09-13 17:45:13 +05:30
expect(project).not_to be_nil
expect(project.issues).not_to be_empty
expect(project.merge_requests).not_to be_empty
2016-11-03 12:29:30 +05:30
expect(project_hook_exists?(project)).to be true
expect(wiki_exists?(project)).to be true
2016-09-13 17:45:13 +05:30
expect(project.import_status).to eq('finished')
end
2016-06-22 15:30:34 +05:30
2016-09-13 17:45:13 +05:30
scenario 'invalid project' do
2016-11-03 12:29:30 +05:30
project = create(:project, namespace: namespace)
2016-08-24 12:49:21 +05:30
2016-09-13 17:45:13 +05:30
visit new_project_path
2016-08-24 12:49:21 +05:30
2016-11-03 12:29:30 +05:30
select2(namespace.id, from: '#project_namespace_id')
2016-09-13 17:45:13 +05:30
fill_in :project_path, with: project.name, visible: true
click_link 'GitLab export'
2016-08-24 12:49:21 +05:30
2016-09-13 17:45:13 +05:30
attach_file('file', file)
click_on 'Import project'
2016-08-24 12:49:21 +05:30
2016-09-13 17:45:13 +05:30
page.within('.flash-container') do
expect(page).to have_content('Project could not be imported')
end
end
scenario 'project with no name' do
2016-11-03 12:29:30 +05:30
create(:project, namespace: namespace)
2016-09-13 17:45:13 +05:30
visit new_project_path
2016-11-03 12:29:30 +05:30
select2(namespace.id, from: '#project_namespace_id')
2016-09-13 17:45:13 +05:30
# 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
2016-08-24 12:49:21 +05:30
end
end
2016-11-03 12:29:30 +05:30
context 'when limited to the default user namespace' do
let(:user) { create(:user) }
2016-09-13 17:45:13 +05:30
before do
2016-11-03 12:29:30 +05:30
login_as(user)
2016-09-13 17:45:13 +05:30
end
2016-08-24 12:49:21 +05:30
2016-11-03 12:29:30 +05:30
scenario 'passes correct namespace ID in the URL' do
2016-09-13 17:45:13 +05:30
visit new_project_path
2016-08-24 12:49:21 +05:30
2016-09-13 17:45:13 +05:30
fill_in :project_path, with: 'test-project-path', visible: true
2016-08-24 12:49:21 +05:30
2016-11-03 12:29:30 +05:30
click_link 'GitLab export'
expect(page).to have_content('GitLab project export')
expect(URI.parse(current_url).query).to eq("namespace_id=#{user.namespace.id}&path=test-project-path")
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)
File.exist?(wiki.repository.path_to_repo) && !wiki.repository.empty?
end
2016-11-03 12:29:30 +05:30
def project_hook_exists?(project)
Gitlab::Git::Hook.new('post-receive', project.repository.path).exists?
end
2016-06-22 15:30:34 +05:30
end