debian-mirror-gitlab/spec/lib/gitlab/backend/shell_spec.rb

32 lines
966 B
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
2015-12-23 02:04:40 +05:30
describe Gitlab::Shell, lib: true do
2014-09-02 18:07:02 +05:30
let(:project) { double('Project', id: 7, path: 'diaspora') }
let(:gitlab_shell) { Gitlab::Shell.new }
before do
2015-09-11 14:41:01 +05:30
allow(Project).to receive(:find).and_return(project)
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
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 }
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
it { expect(gitlab_shell.url_to_repo('diaspora')).to eq(Gitlab.config.gitlab_shell.ssh_path_prefix + "diaspora.git") }
2015-10-24 18:46:33 +05:30
2015-12-23 02:04:40 +05:30
describe Gitlab::Shell::KeyAdder, lib: true do
2015-10-24 18:46:33 +05:30
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
2014-09-02 18:07:02 +05:30
end