gitlab-org--gitlab-foss/spec/lib/gitlab/backend/shell_spec.rb

37 lines
1.2 KiB
Ruby
Raw Normal View History

require 'spec_helper'
2015-12-09 10:55:36 +00:00
describe Gitlab::Shell, lib: true do
2013-01-28 15:53:01 +00:00
let(:project) { double('Project', id: 7, path: 'diaspora') }
2013-02-11 18:28:27 +00:00
let(:gitlab_shell) { Gitlab::Shell.new }
before do
2015-05-21 21:49:06 +00:00
allow(Project).to receive(:find).and_return(project)
end
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 }
it { is_expected.to respond_to :gc }
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? }
it { expect(gitlab_shell.url_to_repo('diaspora')).to eq(Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git") }
2015-12-09 10:55:36 +00:00
describe Gitlab::Shell::KeyAdder, lib: true do
describe '#add_key' do
it 'normalizes space characters in the key' do
io = spy
adder = described_class.new(io)
adder.add_key('key-42', "sha-rsa foo\tbar\tbaz")
expect(io).to have_received(:puts).with("key-42\tsha-rsa foo bar baz")
end
end
end
end