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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
f1de7dde
Commit
f1de7dde
authored
Sep 05, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/import-file-spec-error' into 'master'
Fix Import/Export spec failure See merge request !14032
parents
597bc292
7831e5ca
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
spec/features/projects/import_export/import_file_spec.rb
spec/features/projects/import_export/import_file_spec.rb
+8
-6
No files found.
spec/features/projects/import_export/import_file_spec.rb
View file @
f1de7dde
...
@@ -18,23 +18,25 @@ feature 'Import/Export - project import integration test', js: true do
...
@@ -18,23 +18,25 @@ feature 'Import/Export - project import integration test', js: true do
context
'when selecting the namespace'
do
context
'when selecting the namespace'
do
let
(
:user
)
{
create
(
:admin
)
}
let
(
:user
)
{
create
(
:admin
)
}
let!
(
:namespace
)
{
create
(
:namespace
,
name:
"asd"
,
owner:
user
)
}
let!
(
:namespace
)
{
create
(
:namespace
,
name:
'asd'
,
owner:
user
)
}
let
(
:project_path
)
{
'test-project-path'
+
SecureRandom
.
hex
}
context
'prefilled the path'
do
context
'prefilled the path'
do
scenario
'user imports an exported project successfully'
do
scenario
'user imports an exported project successfully'
do
visit
new_project_path
visit
new_project_path
select2
(
namespace
.
id
,
from:
'#project_namespace_id'
)
select2
(
namespace
.
id
,
from:
'#project_namespace_id'
)
fill_in
:project_path
,
with:
'test-project-path'
,
visible:
true
fill_in
:project_path
,
with:
project_path
,
visible:
true
click_link
'GitLab export'
click_link
'GitLab export'
expect
(
page
).
to
have_content
(
'Import an exported GitLab project'
)
expect
(
page
).
to
have_content
(
'Import an exported GitLab project'
)
expect
(
URI
.
parse
(
current_url
).
query
).
to
eq
(
"namespace_id=
#{
namespace
.
id
}
&path=
test-project-path
"
)
expect
(
URI
.
parse
(
current_url
).
query
).
to
eq
(
"namespace_id=
#{
namespace
.
id
}
&path=
#{
project_path
}
"
)
expect
(
Gitlab
::
ImportExport
).
to
receive
(
:import_upload_path
).
with
(
filename:
/\A\h{32}_test-project-path\z/
).
and_call_original
expect
(
Gitlab
::
ImportExport
).
to
receive
(
:import_upload_path
).
with
(
filename:
/\A\h{32}_test-project-path\
h*\
z/
).
and_call_original
attach_file
(
'file'
,
file
)
attach_file
(
'file'
,
file
)
click_on
'Import project'
expect
{
click_on
'Import project'
}.
to
change
{
Project
.
count
}.
by
(
1
)
expect
(
Project
.
count
).
to
eq
(
1
)
project
=
Project
.
last
project
=
Project
.
last
expect
(
project
).
not_to
be_nil
expect
(
project
).
not_to
be_nil
...
@@ -64,7 +66,7 @@ feature 'Import/Export - project import integration test', js: true do
...
@@ -64,7 +66,7 @@ feature 'Import/Export - project import integration test', js: true do
end
end
scenario
'invalid project'
do
scenario
'invalid project'
do
namespace
=
create
(
:namespace
,
name:
"asd"
,
owner:
user
)
namespace
=
create
(
:namespace
,
name:
'asdf'
,
owner:
user
)
project
=
create
(
:project
,
namespace:
namespace
)
project
=
create
(
:project
,
namespace:
namespace
)
visit
new_project_path
visit
new_project_path
...
...
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