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
12b952b6
Commit
12b952b6
authored
Feb 07, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3 from redorkulated/patch-1
Read auth keys file from config
parents
502f771d
de90432d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
spec/gitlab_keys_spec.rb
spec/gitlab_keys_spec.rb
+2
-2
No files found.
spec/gitlab_keys_spec.rb
View file @
12b952b6
...
@@ -20,7 +20,7 @@ describe GitlabKeys do
...
@@ -20,7 +20,7 @@ describe GitlabKeys do
end
end
it
"should receive valid cmd"
do
it
"should receive valid cmd"
do
valid_cmd
=
"echo 'command=
\"
#{
ROOT_PATH
}
/bin/gitlab-shell key-741
\"
,no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaDAxx2E' >>
/home/git/.ssh/authorized_keys
"
valid_cmd
=
"echo 'command=
\"
#{
ROOT_PATH
}
/bin/gitlab-shell key-741
\"
,no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaDAxx2E' >>
#{
GitlabConfig
.
new
.
auth_file
}
"
@gl_keys
.
should_receive
(
:system
).
with
(
valid_cmd
)
@gl_keys
.
should_receive
(
:system
).
with
(
valid_cmd
)
@gl_keys
.
send
:add_key
@gl_keys
.
send
:add_key
end
end
...
@@ -33,7 +33,7 @@ describe GitlabKeys do
...
@@ -33,7 +33,7 @@ describe GitlabKeys do
end
end
it
"should receive valid cmd"
do
it
"should receive valid cmd"
do
valid_cmd
=
"sed -i '/key-741/d'
/home/git/.ssh/authorized_keys
"
valid_cmd
=
"sed -i '/key-741/d'
#{
GitlabConfig
.
new
.
auth_file
}
"
@gl_keys
.
should_receive
(
:system
).
with
(
valid_cmd
)
@gl_keys
.
should_receive
(
:system
).
with
(
valid_cmd
)
@gl_keys
.
send
:rm_key
@gl_keys
.
send
:rm_key
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