Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
de3edb71
Commit
de3edb71
authored
Feb 12, 2018
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add more specs
parent
9bfa690b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
5 deletions
+29
-5
spec/requests/api/project_import_spec.rb
spec/requests/api/project_import_spec.rb
+29
-5
No files found.
spec/requests/api/project_import_spec.rb
View file @
de3edb71
...
...
@@ -4,7 +4,7 @@ describe API::ProjectImport do
let
(
:export_path
)
{
"
#{
Dir
.
tmpdir
}
/project_export_spec"
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:file
)
{
File
.
join
(
Rails
.
root
,
'spec'
,
'features'
,
'projects'
,
'import_export'
,
'test_project_export.tar.gz'
)
}
let
(
:namespace
){
create
(
:group
)
}
let
(
:namespace
)
{
create
(
:group
)
}
before
do
allow_any_instance_of
(
Gitlab
::
ImportExport
).
to
receive
(
:storage_path
).
and_return
(
export_path
)
...
...
@@ -15,11 +15,35 @@ describe API::ProjectImport do
FileUtils
.
rm_rf
(
export_path
,
secure:
true
)
end
describe
'POST /projects/import'
do
it
'schedules an import'
do
expect_any_instance_of
(
Project
).
to
receive
(
:import_schedule
)
post
"/projects/import"
,
file:
file
,
namespace:
namespace
.
full_path
post
api
(
'/projects/import'
,
user
)
,
file:
file
,
namespace:
namespace
.
full_path
expect
(
project
.
status
).
to
eq
(
'started'
)
end
end
describe
'GET /projects/:id/import'
do
it
'returns the import status'
do
project
=
create
(
:project
,
import_status:
'started'
)
get
api
(
"/projects/
#{
project
.
id
}
/import"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
eq
(
'import_status'
=>
'started'
)
end
it
'returns the import status and the error if failed'
do
project
=
create
(
:project
,
import_status:
'failed'
,
import_error:
'error'
)
get
api
(
"/projects/
#{
project
.
id
}
/import"
,
user
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
json_response
).
to
eq
(
'import_status'
=>
'failed'
,
'import_error'
=>
'error'
)
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment