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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

109 lines
3.2 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'Import/Export - Group Import', :js do
2020-06-23 00:09:42 +05:30
let_it_be(:user) { create(:user) }
let_it_be(:import_path) { "#{Dir.tmpdir}/group_import_spec" }
before do
allow_next_instance_of(Gitlab::ImportExport) do |import_export|
allow(import_export).to receive(:storage_path).and_return(import_path)
end
stub_uploads_object_storage(FileUploader)
gitlab_sign_in(user)
end
after do
FileUtils.rm_rf(import_path, secure: true)
end
context 'when the user uploads a valid export file' do
let(:file) { File.join(Rails.root, 'spec', %w[fixtures group_export.tar.gz]) }
context 'when using the pre-filled path', :sidekiq_inline do
it 'successfully imports the group' do
group_name = 'Test Group Import'
visit new_group_path
2021-09-04 01:27:46 +05:30
click_link 'Import group'
2020-06-23 00:09:42 +05:30
2022-08-13 15:12:31 +05:30
fill_in s_('Groups|Group name'), with: group_name
2020-06-23 00:09:42 +05:30
2021-02-22 17:27:13 +05:30
expect(page).to have_content 'Import group from file'
2020-06-23 00:09:42 +05:30
attach_file(file) do
find('.js-filepicker-button').click
end
2021-02-22 17:27:13 +05:30
expect { click_on 'Import' }.to change { Group.count }.by 1
2020-06-23 00:09:42 +05:30
group = Group.find_by(name: group_name)
2022-08-13 15:12:31 +05:30
aggregate_failures do
expect(group).not_to be_nil
expect(group.description).to eq 'A voluptate non sequi temporibus quam at.'
expect(group.path).to eq 'test-group-import'
expect(group.import_state.status).to eq GroupImportState.state_machine.states[:finished].value
end
2020-06-23 00:09:42 +05:30
end
end
context 'when modifying the pre-filled path' do
it 'successfully imports the group' do
visit new_group_path
2021-09-04 01:27:46 +05:30
click_link 'Import group'
2020-06-23 00:09:42 +05:30
2022-08-13 15:12:31 +05:30
fill_in s_('Groups|Group name'), with: 'Test Group Import'
2020-06-23 00:09:42 +05:30
2022-08-13 15:12:31 +05:30
fill_in s_('Groups|Group URL'), with: 'custom-path'
2020-06-23 00:09:42 +05:30
attach_file(file) do
find('.js-filepicker-button').click
end
2021-02-22 17:27:13 +05:30
expect { click_on 'Import' }.to change { Group.count }.by 1
2020-06-23 00:09:42 +05:30
group = Group.find_by(name: 'Test Group Import')
expect(group.path).to eq 'custom-path'
end
end
context 'when the path is already taken' do
before do
create(:group, path: 'test-group-import')
end
it 'suggests a unique path' do
visit new_group_path
2021-09-04 01:27:46 +05:30
click_link 'Import group'
2020-06-23 00:09:42 +05:30
2022-08-13 15:12:31 +05:30
fill_in s_('Groups|Group URL'), with: 'test-group-import'
expect(page).to have_content s_(
'Groups|Group path is unavailable. Path has been replaced with a suggested available path.'
)
2020-06-23 00:09:42 +05:30
end
end
end
context 'when the user uploads an invalid export file' do
let(:file) { File.join(Rails.root, 'spec', %w[fixtures big-image.png]) }
2021-12-11 22:18:48 +05:30
it 'displays an error', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/343995' do
2020-06-23 00:09:42 +05:30
visit new_group_path
2021-09-04 01:27:46 +05:30
click_link 'Import group'
2020-06-23 00:09:42 +05:30
2022-08-13 15:12:31 +05:30
fill_in s_('Groups|Group name'), with: 'Test Group Import'
2020-06-23 00:09:42 +05:30
attach_file(file) do
find('.js-filepicker-button').click
end
2021-02-22 17:27:13 +05:30
expect { click_on 'Import' }.not_to change { Group.count }
2020-06-23 00:09:42 +05:30
page.within('.flash-container') do
expect(page).to have_content('Unable to process group import file')
end
end
end
end