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
0c3f70ac
Commit
0c3f70ac
authored
Dec 08, 2015
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add API group projects specs
parent
6fb90a2c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
2 deletions
+57
-2
spec/requests/api/groups_spec.rb
spec/requests/api/groups_spec.rb
+57
-2
No files found.
spec/requests/api/groups_spec.rb
View file @
0c3f70ac
...
@@ -10,6 +10,8 @@ describe API::API, api: true do
...
@@ -10,6 +10,8 @@ describe API::API, api: true do
let
(
:avatar_file_path
)
{
File
.
join
(
Rails
.
root
,
'spec'
,
'fixtures'
,
'banana_sample.gif'
)
}
let
(
:avatar_file_path
)
{
File
.
join
(
Rails
.
root
,
'spec'
,
'fixtures'
,
'banana_sample.gif'
)
}
let!
(
:group1
)
{
create
(
:group
,
avatar:
File
.
open
(
avatar_file_path
))
}
let!
(
:group1
)
{
create
(
:group
,
avatar:
File
.
open
(
avatar_file_path
))
}
let!
(
:group2
)
{
create
(
:group
)
}
let!
(
:group2
)
{
create
(
:group
)
}
let!
(
:project1
)
{
create
(
:project
,
namespace:
group1
)
}
let!
(
:project2
)
{
create
(
:project
,
namespace:
group2
)
}
before
do
before
do
group1
.
add_owner
(
user1
)
group1
.
add_owner
(
user1
)
...
@@ -67,7 +69,7 @@ describe API::API, api: true do
...
@@ -67,7 +69,7 @@ describe API::API, api: true do
it
"should return any existing group"
do
it
"should return any existing group"
do
get
api
(
"/groups/
#{
group2
.
id
}
"
,
admin
)
get
api
(
"/groups/
#{
group2
.
id
}
"
,
admin
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
response
.
status
).
to
eq
(
200
)
json_response
[
'name'
]
==
group2
.
name
expect
(
json_response
[
'name'
]).
to
eq
(
group2
.
name
)
end
end
it
"should not return a non existing group"
do
it
"should not return a non existing group"
do
...
@@ -80,7 +82,7 @@ describe API::API, api: true do
...
@@ -80,7 +82,7 @@ describe API::API, api: true do
it
'should return any existing group'
do
it
'should return any existing group'
do
get
api
(
"/groups/
#{
group1
.
path
}
"
,
admin
)
get
api
(
"/groups/
#{
group1
.
path
}
"
,
admin
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
response
.
status
).
to
eq
(
200
)
json_response
[
'name'
]
==
group2
.
name
expect
(
json_response
[
'name'
]).
to
eq
(
group1
.
name
)
end
end
it
'should not return a non existing group'
do
it
'should not return a non existing group'
do
...
@@ -95,6 +97,59 @@ describe API::API, api: true do
...
@@ -95,6 +97,59 @@ describe API::API, api: true do
end
end
end
end
describe
"GET /groups/:id/projects"
do
context
"when authenticated as user"
do
it
"should return the group's projects"
do
get
api
(
"/groups/
#{
group1
.
id
}
/projects"
,
user1
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
json_response
.
length
).
to
eq
(
1
)
expect
(
json_response
.
first
[
'name'
]).
to
eq
(
project1
.
name
)
end
it
"should not return a non existing group"
do
get
api
(
"/groups/1328/projects"
,
user1
)
expect
(
response
.
status
).
to
eq
(
404
)
end
it
"should not return a group not attached to user1"
do
get
api
(
"/groups/
#{
group2
.
id
}
/projects"
,
user1
)
expect
(
response
.
status
).
to
eq
(
403
)
end
end
context
"when authenticated as admin"
do
it
"should return any existing group"
do
get
api
(
"/groups/
#{
group2
.
id
}
/projects"
,
admin
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
json_response
.
length
).
to
eq
(
1
)
expect
(
json_response
.
first
[
'name'
]).
to
eq
(
project2
.
name
)
end
it
"should not return a non existing group"
do
get
api
(
"/groups/1328/projects"
,
admin
)
expect
(
response
.
status
).
to
eq
(
404
)
end
end
context
'when using group path in URL'
do
it
'should return any existing group'
do
get
api
(
"/groups/
#{
group1
.
path
}
/projects"
,
admin
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
json_response
.
first
[
'name'
]).
to
eq
(
project1
.
name
)
end
it
'should not return a non existing group'
do
get
api
(
'/groups/unknown/projects'
,
admin
)
expect
(
response
.
status
).
to
eq
(
404
)
end
it
'should not return a group not attached to user1'
do
get
api
(
"/groups/
#{
group2
.
path
}
/projects"
,
user1
)
expect
(
response
.
status
).
to
eq
(
403
)
end
end
end
describe
"POST /groups"
do
describe
"POST /groups"
do
context
"when authenticated as user without group permissions"
do
context
"when authenticated as user without group permissions"
do
it
"should not create group"
do
it
"should not create group"
do
...
...
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