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
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
Kazuhiko Shiozaki
gitlab-shell
Commits
ab008254
Commit
ab008254
authored
Nov 05, 2013
by
Jacob Vosmaer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More file writing tests for GitlabKeys
parent
de09438a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
27 deletions
+33
-27
spec/gitlab_keys_spec.rb
spec/gitlab_keys_spec.rb
+33
-27
No files found.
spec/gitlab_keys_spec.rb
View file @
ab008254
...
...
@@ -14,15 +14,20 @@ describe GitlabKeys do
it
{
gitlab_keys
.
instance_variable_get
(
:@key_id
).
should
==
'key-741'
}
end
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
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
)
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 log an add-key event"
do
...
...
@@ -35,14 +40,14 @@ describe GitlabKeys do
describe
:rm_key
do
let
(
:gitlab_keys
)
{
build_gitlab_keys
(
'rm-key'
,
'key-741'
,
'ssh-rsa AAAAB3NzaDAxx2E'
)
}
it
"should receive valid cmd"
do
FileUtils
.
mkdir_p
(
File
.
dirname
(
tmp_authorized_keys_path
))
open
(
tmp_authorized_keys_path
,
'w'
)
do
|
auth_file
|
auth_file
.
puts
[
'first key'
,
'/bin/gitlab-shell key-741"'
,
'third key'
]
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
.
stub
(
auth_file:
tmp_authorized_keys_path
)
gitlab_keys
.
send
:rm_key
File
.
read
(
tmp_authorized_keys_path
).
should
==
"first key
\n
third key
\n
"
File
.
read
(
tmp_authorized_keys_path
).
should
==
"existing content
\n
#{
other_line
}
\n
"
end
it
"should log an rm-key event"
do
...
...
@@ -50,6 +55,7 @@ describe GitlabKeys do
gitlab_keys
.
send
:rm_key
end
end
end
describe
:exec
do
it
'add-key arg should execute add_key method'
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