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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
4e516433
Commit
4e516433
authored
Feb 26, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
specs for api/internal
parent
2c5e4955
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
109 additions
and
0 deletions
+109
-0
lib/api/internal.rb
lib/api/internal.rb
+6
-0
spec/requests/api/internal_spec.rb
spec/requests/api/internal_spec.rb
+103
-0
No files found.
lib/api/internal.rb
View file @
4e516433
...
...
@@ -5,6 +5,12 @@ module Gitlab
#
# Check if ssh key has access to project code
#
# Params:
# key_id - SSH Key id
# project - project path with namespace
# action - git action (git-upload-pack or git-receive-pack)
# ref - branch name
#
get
"/allowed"
do
key
=
Key
.
find
(
params
[
:key_id
])
project
=
Project
.
find_with_namespace
(
params
[
:project
])
...
...
spec/requests/api/internal_spec.rb
0 → 100644
View file @
4e516433
require
'spec_helper'
describe
Gitlab
::
API
do
include
ApiHelpers
let
(
:user
)
{
create
(
:user
)
}
let
(
:key
)
{
create
(
:key
,
user:
user
)
}
let
(
:project
)
{
create
(
:project
)
}
describe
"GET /internal/check"
,
no_db:
true
do
it
do
get
api
(
"/internal/check"
)
response
.
status
.
should
==
200
json_response
[
'api_version'
].
should
==
Gitlab
::
API
.
version
end
end
describe
"GET /internal/discover"
do
it
do
get
(
api
(
"/internal/discover"
),
key_id:
key
.
id
)
response
.
status
.
should
==
200
json_response
[
'email'
].
should
==
user
.
email
end
end
describe
"GET /internal/allowed"
do
context
"access granted"
do
before
do
project
.
team
<<
[
user
,
:developer
]
end
context
"git pull"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-pack'
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'true'
end
end
context
"git push"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-receive-pack'
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'true'
end
end
end
context
"access denied"
do
before
do
project
.
team
<<
[
user
,
:guest
]
end
context
"git pull"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-upload-pack'
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
end
end
context
"git push"
do
it
do
get
(
api
(
"/internal/allowed"
),
ref:
'master'
,
key_id:
key
.
id
,
project:
project
.
path_with_namespace
,
action:
'git-receive-pack'
)
response
.
status
.
should
==
200
response
.
body
.
should
==
'false'
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