Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-shell
Commits
e6eaa8e0
Commit
e6eaa8e0
authored
Nov 05, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'banish_shell_from_gitlab_keys' of /home/git/repositories/gitlab/gitlab-shell
parents
af88f842
ab008254
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
30 deletions
+46
-30
lib/gitlab_keys.rb
lib/gitlab_keys.rb
+8
-3
spec/gitlab_keys_spec.rb
spec/gitlab_keys_spec.rb
+38
-27
No files found.
lib/gitlab_keys.rb
View file @
e6eaa8e0
...
...
@@ -36,12 +36,17 @@ class GitlabKeys
def
rm_key
$logger
.
info
"Removing key
#{
@key_id
}
"
Tempfile
.
open
(
'authorized_keys'
)
do
|
temp
|
cmd
=
"sed '/shell
#{
@key_id
}
\"
/d'
#{
auth_file
}
>
#{
temp
.
path
}
&& mv
#{
temp
.
path
}
#{
auth_file
}
"
system
(
cmd
)
open
(
auth_file
,
'r+'
)
do
|
current
|
current
.
each
do
|
line
|
temp
.
puts
(
line
)
unless
line
.
include?
(
"/bin/gitlab-shell
#{
@key_id
}
\"
"
)
end
end
temp
.
close
FileUtils
.
cp
(
temp
.
path
,
auth_file
)
end
end
def
clear
system
(
"echo '# Managed by gitlab-shell' >
#{
auth_file
}
"
)
open
(
auth_file
,
'w'
)
{
|
file
|
file
.
puts
'# Managed by gitlab-shell'
}
end
end
spec/gitlab_keys_spec.rb
View file @
e6eaa8e0
...
...
@@ -14,39 +14,46 @@ describe GitlabKeys do
it
{
gitlab_keys
.
instance_variable_get
(
:@key_id
).
should
==
'key-741'
}
end
describe
:add_key
do
let
(
:gitlab_keys
)
{
build_gitlab_keys
(
'add-key'
,
'key-741'
,
'ssh-rsa AAAAB3NzaDAxx2E'
)
}
let
(
:file
)
{
mock
(
:file
)
}
it
"should receive valid cmd"
do
auth_line
=
"command=
\"
#{
ROOT_PATH
}
/bin/gitlab-shell key-741
\"
,no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaDAxx2E"
gitlab_keys
.
should_receive
(
:open
).
with
(
GitlabConfig
.
new
.
auth_file
,
'a'
).
and_yield
(
file
)
file
.
should_receive
(
:puts
).
with
(
auth_line
)
gitlab_keys
.
send
:add_key
context
"file writing tests"
do
before
do
FileUtils
.
mkdir_p
(
File
.
dirname
(
tmp_authorized_keys_path
))
open
(
tmp_authorized_keys_path
,
'w'
)
{
|
file
|
file
.
puts
(
'existing content'
)
}
gitlab_keys
.
stub
(
auth_file:
tmp_authorized_keys_path
)
end
it
"should log an add-key event"
do
$logger
.
should_receive
(
:info
).
with
(
'Adding key key-741 => "ssh-rsa AAAAB3NzaDAxx2E"'
)
gitlab_keys
.
stub
(
:open
)
gitlab_keys
.
send
:add_key
end
end
describe
:add_key
do
let
(
:gitlab_keys
)
{
build_gitlab_keys
(
'add-key'
,
'key-741'
,
'ssh-rsa AAAAB3NzaDAxx2E'
)
}
describe
:rm_key
do
let
(
:gitlab_keys
)
{
build_gitlab_keys
(
'rm-key'
,
'key-741'
,
'ssh-rsa AAAAB3NzaDAxx2E'
)
}
let
(
:temp_file
)
{
mock
(
:temp_file
,
path:
'tmp_path'
)
}
before
{
Tempfile
.
should_receive
(
:open
).
and_yield
(
temp_file
)
}
it
"adds a line at the end of the file"
do
gitlab_keys
.
send
:add_key
auth_line
=
"command=
\"
#{
ROOT_PATH
}
/bin/gitlab-shell key-741
\"
,no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaDAxx2E"
File
.
read
(
tmp_authorized_keys_path
).
should
==
"existing content
\n
#{
auth_line
}
\n
"
end
it
"should receive valid cmd
"
do
auth_file
=
GitlabConfig
.
new
.
auth_file
valid_cmd
=
"sed '/shell key-741
\"
/d'
#{
auth_file
}
> tmp_path && mv tmp_path
#{
auth_file
}
"
gitlab_keys
.
should_receive
(
:system
).
with
(
valid_cmd
)
gitlab_keys
.
send
:rm_key
it
"should log an add-key event
"
do
$logger
.
should_receive
(
:info
).
with
(
'Adding key key-741 => "ssh-rsa AAAAB3NzaDAxx2E"'
)
gitlab_keys
.
stub
(
:open
)
gitlab_keys
.
send
:add_key
end
end
it
"should log an rm-key event"
do
$logger
.
should_receive
(
:info
).
with
(
'Removing key key-741'
)
gitlab_keys
.
send
:rm_key
describe
:rm_key
do
let
(
:gitlab_keys
)
{
build_gitlab_keys
(
'rm-key'
,
'key-741'
,
'ssh-rsa AAAAB3NzaDAxx2E'
)
}
it
"removes the right line"
do
other_line
=
"command=
\"
#{
ROOT_PATH
}
/bin/gitlab-shell key-742
\"
,options ssh-rsa AAAAB3NzaDAxx2E"
open
(
tmp_authorized_keys_path
,
'a'
)
do
|
auth_file
|
auth_file
.
puts
"command=
\"
#{
ROOT_PATH
}
/bin/gitlab-shell key-741
\"
,options ssh-rsa AAAAB3NzaDAxx2E"
auth_file
.
puts
other_line
end
gitlab_keys
.
send
:rm_key
File
.
read
(
tmp_authorized_keys_path
).
should
==
"existing content
\n
#{
other_line
}
\n
"
end
it
"should log an rm-key event"
do
$logger
.
should_receive
(
:info
).
with
(
'Removing key key-741'
)
gitlab_keys
.
send
:rm_key
end
end
end
...
...
@@ -87,4 +94,8 @@ describe GitlabKeys do
ARGV
[
i
]
=
arg
end
end
def
tmp_authorized_keys_path
File
.
join
(
ROOT_PATH
,
'tmp'
,
'authorized_keys'
)
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