Commit d3b3f5d1 authored by James Lopez's avatar James Lopez

update import API and spec

parent 82ff66ef
...@@ -17,6 +17,7 @@ module API ...@@ -17,6 +17,7 @@ module API
end end
params do params do
requires :name, type: String, desc: 'The new project name'
optional :namespace, type: String, desc: 'The ID or name of the namespace that the project will be imported into. Defaults to the user namespace.' optional :namespace, type: String, desc: 'The ID or name of the namespace that the project will be imported into. Defaults to the user namespace.'
requires :file, type: File, desc: 'The project export file to be imported' requires :file, type: File, desc: 'The project export file to be imported'
end end
...@@ -37,9 +38,11 @@ module API ...@@ -37,9 +38,11 @@ module API
Namespace.find_by_path_or_name(namespace) Namespace.find_by_path_or_name(namespace)
end end
project = ::Projects::GitlabProjectsImportService.new(current_user, import_params).execute project_params = import_params.merge(namespace: namespace.id)
render_api_error!(link.project.full_messages.first, 400) unless project.saved? project = ::Projects::GitlabProjectsImportService.new(current_user, project_params).execute
render_api_error!(project.full_messages.first, 400) unless project.saved?
present project, with: Entities::ProjectImportStatus present project, with: Entities::ProjectImportStatus
end end
......
...@@ -16,11 +16,10 @@ describe API::ProjectImport do ...@@ -16,11 +16,10 @@ describe API::ProjectImport do
end end
describe 'POST /projects/import' do describe 'POST /projects/import' do
it 'schedules an import' do it 'schedules an import' do
expect_any_instance_of(Project).to receive(:import_schedule) expect_any_instance_of(Project).to receive(:import_schedule)
post api('/projects/import', user), file: file, namespace: namespace.full_path post api('/projects/import', user), name: 'test', file: file, namespace: namespace.full_path
expect(project.status).to eq('started') expect(project.status).to eq('started')
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment