2012-09-07 01:16:29 -04:00
|
|
|
require 'spec_helper'
|
2016-09-16 05:43:05 -04:00
|
|
|
require 'stringio'
|
2012-09-07 01:16:29 -04:00
|
|
|
|
2015-12-09 05:55:36 -05:00
|
|
|
describe Gitlab::Shell, lib: true do
|
2013-01-28 10:53:01 -05:00
|
|
|
let(:project) { double('Project', id: 7, path: 'diaspora') }
|
2013-02-11 13:28:27 -05:00
|
|
|
let(:gitlab_shell) { Gitlab::Shell.new }
|
2012-09-07 01:16:29 -04:00
|
|
|
|
|
|
|
before do
|
2015-05-21 17:49:06 -04:00
|
|
|
allow(Project).to receive(:find).and_return(project)
|
2012-09-07 01:16:29 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to respond_to :add_key }
|
|
|
|
it { is_expected.to respond_to :remove_key }
|
|
|
|
it { is_expected.to respond_to :add_repository }
|
|
|
|
it { is_expected.to respond_to :remove_repository }
|
|
|
|
it { is_expected.to respond_to :fork_repository }
|
2016-06-22 17:04:51 -04:00
|
|
|
it { is_expected.to respond_to :add_namespace }
|
|
|
|
it { is_expected.to respond_to :rm_namespace }
|
|
|
|
it { is_expected.to respond_to :mv_namespace }
|
|
|
|
it { is_expected.to respond_to :exists? }
|
2012-09-07 01:16:29 -04:00
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
it { expect(gitlab_shell.url_to_repo('diaspora')).to eq(Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git") }
|
2015-10-08 20:34:50 -04:00
|
|
|
|
2016-09-29 12:46:54 -04:00
|
|
|
describe 'memoized secret_token' do
|
2016-06-24 15:06:46 -04:00
|
|
|
let(:secret_file) { 'tmp/tests/.secret_shell_test' }
|
|
|
|
let(:link_file) { 'tmp/tests/shell-secret-test/.gitlab_shell_secret' }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Gitlab.config.gitlab_shell).to receive(:secret_file).and_return(secret_file)
|
2016-09-29 12:46:54 -04:00
|
|
|
allow(Gitlab.config.gitlab_shell).to receive(:path).and_return('tmp/tests/shell-secret-test')
|
2016-06-24 15:06:46 -04:00
|
|
|
FileUtils.mkdir('tmp/tests/shell-secret-test')
|
2016-10-06 22:40:04 -04:00
|
|
|
Gitlab::Shell.ensure_secret_token!
|
2016-06-24 15:06:46 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
after do
|
|
|
|
FileUtils.rm_rf('tmp/tests/shell-secret-test')
|
|
|
|
FileUtils.rm_rf(secret_file)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates and links the secret token file' do
|
2016-09-29 12:46:54 -04:00
|
|
|
secret_token = Gitlab::Shell.secret_token
|
|
|
|
|
2016-06-24 15:06:46 -04:00
|
|
|
expect(File.exist?(secret_file)).to be(true)
|
2016-09-29 12:46:54 -04:00
|
|
|
expect(File.read(secret_file).chomp).to eq(secret_token)
|
2016-06-24 15:06:46 -04:00
|
|
|
expect(File.symlink?(link_file)).to be(true)
|
|
|
|
expect(File.readlink(link_file)).to eq(secret_file)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-16 05:43:05 -04:00
|
|
|
describe '#add_key' do
|
|
|
|
it 'removes trailing garbage' do
|
|
|
|
allow(gitlab_shell).to receive(:gitlab_shell_keys_path).and_return(:gitlab_shell_keys_path)
|
|
|
|
expect(Gitlab::Utils).to receive(:system_silent).with(
|
|
|
|
[:gitlab_shell_keys_path, 'add-key', 'key-123', 'ssh-rsa foobar']
|
|
|
|
)
|
|
|
|
|
|
|
|
gitlab_shell.add_key('key-123', 'ssh-rsa foobar trailing garbage')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-09 05:55:36 -05:00
|
|
|
describe Gitlab::Shell::KeyAdder, lib: true do
|
2015-10-08 20:34:50 -04:00
|
|
|
describe '#add_key' do
|
2016-09-16 05:43:05 -04:00
|
|
|
it 'removes trailing garbage' do
|
|
|
|
io = spy(:io)
|
2015-10-08 20:34:50 -04:00
|
|
|
adder = described_class.new(io)
|
|
|
|
|
2016-09-16 05:43:05 -04:00
|
|
|
adder.add_key('key-42', "ssh-rsa foo bar\tbaz")
|
|
|
|
|
|
|
|
expect(io).to have_received(:puts).with("key-42\tssh-rsa foo")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'raises an exception if the key contains a tab' do
|
|
|
|
expect do
|
|
|
|
described_class.new(StringIO.new).add_key('key-42', "ssh-rsa\tfoobar")
|
|
|
|
end.to raise_error(Gitlab::Shell::Error)
|
|
|
|
end
|
2015-10-08 20:34:50 -04:00
|
|
|
|
2016-09-16 05:43:05 -04:00
|
|
|
it 'raises an exception if the key contains a newline' do
|
|
|
|
expect do
|
|
|
|
described_class.new(StringIO.new).add_key('key-42', "ssh-rsa foobar\nssh-rsa pawned")
|
|
|
|
end.to raise_error(Gitlab::Shell::Error)
|
2015-10-08 20:34:50 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-09-07 01:16:29 -04:00
|
|
|
end
|