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
Tatuya Kamada
gitlab-ce
Commits
d92e4ccc
Commit
d92e4ccc
authored
Apr 01, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests.
parent
737f322e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
281 additions
and
34 deletions
+281
-34
spec/controllers/import/bitbucket_controller_spec.rb
spec/controllers/import/bitbucket_controller_spec.rb
+99
-14
spec/controllers/import/github_controller_spec.rb
spec/controllers/import/github_controller_spec.rb
+88
-8
spec/controllers/import/gitlab_controller_spec.rb
spec/controllers/import/gitlab_controller_spec.rb
+94
-12
No files found.
spec/controllers/import/bitbucket_controller_spec.rb
View file @
d92e4ccc
...
@@ -55,24 +55,109 @@ describe Import::BitbucketController do
...
@@ -55,24 +55,109 @@ describe Import::BitbucketController do
end
end
describe
"POST create"
do
describe
"POST create"
do
before
do
let
(
:bitbucket_username
)
{
user
.
username
}
@repo
=
{
slug:
'vim'
,
let
(
:bitbucket_user
)
{
owner:
"john"
{
user:
{
username:
bitbucket_username
}
}.
with_indifferent_access
}.
with_indifferent_access
end
}
it
"takes already existing namespace"
do
let
(
:bitbucket_repo
)
{
namespace
=
create
(
:namespace
,
name:
"john"
,
owner:
user
)
{
expect
(
Gitlab
::
BitbucketImport
::
KeyAdder
).
slug:
"vim"
,
to
receive
(
:new
).
with
(
@repo
,
user
).
owner:
bitbucket_username
and_return
(
double
(
execute:
true
))
}.
with_indifferent_access
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
}
to
receive
(
:new
).
with
(
@repo
,
namespace
,
user
).
before
do
allow
(
Gitlab
::
BitbucketImport
::
KeyAdder
).
to
receive
(
:new
).
with
(
bitbucket_repo
,
user
).
and_return
(
double
(
execute:
true
))
and_return
(
double
(
execute:
true
))
controller
.
stub_chain
(
:client
,
:project
).
and_return
(
@repo
)
post
:create
,
format: :js
controller
.
stub_chain
(
:client
,
:user
).
and_return
(
bitbucket_user
)
controller
.
stub_chain
(
:client
,
:project
).
and_return
(
bitbucket_repo
)
end
context
"when the repository owner is the Bitbucket user"
do
context
"when the Bitbucket user and GitLab user's usernames match"
do
it
"takes the current user's namespace"
do
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
bitbucket_repo
,
user
.
namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
context
"when the Bitbucket user and GitLab user's usernames don't match"
do
let
(
:bitbucket_username
)
{
"someone_else"
}
it
"takes the current user's namespace"
do
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
bitbucket_repo
,
user
.
namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
end
context
"when the repository owner is not the Bitbucket user"
do
let
(
:other_username
)
{
"someone_else"
}
before
do
bitbucket_repo
[
"owner"
]
=
other_username
end
context
"when a namespace with the Bitbucket user's username already exists"
do
let!
(
:existing_namespace
)
{
create
(
:namespace
,
name:
other_username
,
owner:
user
)
}
context
"when the namespace is owned by the GitLab user"
do
it
"takes the existing namespace"
do
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
bitbucket_repo
,
existing_namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
context
"when the namespace is not owned by the GitLab user"
do
before
do
existing_namespace
.
owner
=
create
(
:user
)
existing_namespace
.
save
end
it
"doesn't create a project"
do
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
not_to
receive
(
:new
)
post
:create
,
format: :js
end
end
end
context
"when a namespace with the Bitbucket user's username doesn't exist"
do
it
"creates the namespace"
do
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
to
receive
(
:new
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
expect
(
Namespace
.
where
(
name:
other_username
).
first
).
not_to
be_nil
end
it
"takes the new namespace"
do
expect
(
Gitlab
::
BitbucketImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
bitbucket_repo
,
an_instance_of
(
Group
),
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
end
end
end
end
end
end
spec/controllers/import/github_controller_spec.rb
View file @
d92e4ccc
...
@@ -56,18 +56,98 @@ describe Import::GithubController do
...
@@ -56,18 +56,98 @@ describe Import::GithubController do
end
end
describe
"POST create"
do
describe
"POST create"
do
let
(
:github_username
)
{
user
.
username
}
let
(
:github_user
)
{
OpenStruct
.
new
(
login:
github_username
)
}
let
(
:github_repo
)
{
OpenStruct
.
new
(
name:
'vim'
,
full_name:
"
#{
github_username
}
/vim"
,
owner:
OpenStruct
.
new
(
login:
github_username
))
}
before
do
before
do
@repo
=
OpenStruct
.
new
(
login:
'vim'
,
full_name:
'asd/vim'
,
owner:
OpenStruct
.
new
(
login:
"john"
))
controller
.
stub_chain
(
:client
,
:user
).
and_return
(
github_user
)
controller
.
stub_chain
(
:client
,
:repo
).
and_return
(
github_repo
)
end
context
"when the repository owner is the GitHub user"
do
context
"when the GitHub user and GitLab user's usernames match"
do
it
"takes the current user's namespace"
do
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
github_repo
,
user
.
namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
context
"when the GitHub user and GitLab user's usernames don't match"
do
let
(
:github_username
)
{
"someone_else"
}
it
"takes the current user's namespace"
do
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
github_repo
,
user
.
namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
end
end
it
"takes already existing namespace"
do
context
"when the repository owner is not the GitHub user"
do
namespace
=
create
(
:namespace
,
name:
"john"
,
owner:
user
)
let
(
:other_username
)
{
"someone_else"
}
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
@repo
,
namespace
,
user
).
before
do
and_return
(
double
(
execute:
true
))
github_repo
.
owner
=
OpenStruct
.
new
(
login:
other_username
)
controller
.
stub_chain
(
:client
,
:repo
).
and_return
(
@repo
)
end
context
"when a namespace with the GitHub user's username already exists"
do
let!
(
:existing_namespace
)
{
create
(
:namespace
,
name:
other_username
,
owner:
user
)
}
context
"when the namespace is owned by the GitLab user"
do
it
"takes the existing namespace"
do
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
github_repo
,
existing_namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
context
"when the namespace is not owned by the GitLab user"
do
before
do
existing_namespace
.
owner
=
create
(
:user
)
existing_namespace
.
save
end
it
"doesn't create a project"
do
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
not_to
receive
(
:new
)
post
:create
,
format: :js
end
end
end
context
"when a namespace with the GitHub user's username doesn't exist"
do
it
"creates the namespace"
do
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
to
receive
(
:new
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
expect
(
Namespace
.
where
(
name:
other_username
).
first
).
not_to
be_nil
end
it
"takes the new namespace"
do
expect
(
Gitlab
::
GithubImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
github_repo
,
an_instance_of
(
Group
),
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
post
:create
,
format: :js
end
end
end
end
end
end
end
end
spec/controllers/import/gitlab_controller_spec.rb
View file @
d92e4ccc
...
@@ -48,23 +48,105 @@ describe Import::GitlabController do
...
@@ -48,23 +48,105 @@ describe Import::GitlabController do
end
end
describe
"POST create"
do
describe
"POST create"
do
before
do
let
(
:gitlab_username
)
{
user
.
username
}
@repo
=
{
let
(
:gitlab_user
)
{
{
username:
gitlab_username
}.
with_indifferent_access
}
let
(
:gitlab_repo
)
{
{
path:
'vim'
,
path:
'vim'
,
path_with_namespace:
'asd/vim'
,
path_with_namespace:
"
#{
gitlab_username
}
/vim"
,
owner:
{
name:
"john"
},
owner:
{
name:
gitlab_username
},
namespace:
{
path:
"john"
}
namespace:
{
path:
gitlab_username
}
}.
with_indifferent_access
}.
with_indifferent_access
}
before
do
controller
.
stub_chain
(
:client
,
:user
).
and_return
(
gitlab_user
)
controller
.
stub_chain
(
:client
,
:project
).
and_return
(
gitlab_repo
)
end
context
"when the repository owner is the GitLab.com user"
do
context
"when the GitLab.com user and GitLab server user's usernames match"
do
it
"takes the current user's namespace"
do
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
gitlab_repo
,
user
.
namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
context
"when the GitLab.com user and GitLab server user's usernames don't match"
do
let
(
:gitlab_username
)
{
"someone_else"
}
it
"takes the current user's namespace"
do
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
gitlab_repo
,
user
.
namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
end
end
it
"takes already existing namespace"
do
context
"when the repository owner is not the GitLab.com user"
do
namespace
=
create
(
:namespace
,
name:
"john"
,
owner:
user
)
let
(
:other_username
)
{
"someone_else"
}
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
@repo
,
namespace
,
user
).
before
do
and_return
(
double
(
execute:
true
))
gitlab_repo
[
"namespace"
][
"path"
]
=
other_username
controller
.
stub_chain
(
:client
,
:project
).
and_return
(
@repo
)
end
context
"when a namespace with the GitLab.com user's username already exists"
do
let!
(
:existing_namespace
)
{
create
(
:namespace
,
name:
other_username
,
owner:
user
)
}
context
"when the namespace is owned by the GitLab server user"
do
it
"takes the existing namespace"
do
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
gitlab_repo
,
existing_namespace
,
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
end
end
context
"when the namespace is not owned by the GitLab server user"
do
before
do
existing_namespace
.
owner
=
create
(
:user
)
existing_namespace
.
save
end
it
"doesn't create a project"
do
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
not_to
receive
(
:new
)
post
:create
,
format: :js
end
end
end
context
"when a namespace with the GitLab.com user's username doesn't exist"
do
it
"creates the namespace"
do
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
to
receive
(
:new
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
expect
(
Namespace
.
where
(
name:
other_username
).
first
).
not_to
be_nil
end
it
"takes the new namespace"
do
expect
(
Gitlab
::
GitlabImport
::
ProjectCreator
).
to
receive
(
:new
).
with
(
gitlab_repo
,
an_instance_of
(
Group
),
user
).
and_return
(
double
(
execute:
true
))
post
:create
,
format: :js
post
:create
,
format: :js
end
end
end
end
end
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