module-sshd/spec/defines/ssh_authorized_key_spec.rb

46 lines
1.2 KiB
Ruby
Raw Normal View History

2014-02-02 17:48:24 +01:00
require 'spec_helper'
describe 'sshd::ssh_authorized_key' do
2014-02-05 23:17:36 +01:00
context 'manage authorized key' do
2014-02-02 17:48:24 +01:00
let(:title) { 'foo' }
let(:ssh_key) { 'some_secret_ssh_key' }
let(:params) {{
:key => ssh_key,
}}
it { should contain_ssh_authorized_key('foo').with({
'ensure' => 'present',
'type' => 'ssh-dss',
'user' => 'foo',
'target' => '/home/foo/.ssh/authorized_keys',
'key' => ssh_key,
})
}
end
2014-02-05 23:21:36 +01:00
context 'manage authoried key with options' do
let(:title) { 'foo2' }
let(:ssh_key) { 'some_secret_ssh_key' }
let(:params) {{
:key => ssh_key,
:options => ['command="/usr/bin/date"',
'no-pty','no-X11-forwarding','no-agent-forwarding',
'no-port-forwarding']
}}
it { should contain_ssh_authorized_key('foo2').with({
'ensure' => 'present',
'type' => 'ssh-dss',
'user' => 'foo2',
'target' => '/home/foo2/.ssh/authorized_keys',
'key' => ssh_key,
'options' => ['command="/usr/bin/date"',
'no-pty','no-X11-forwarding','no-agent-forwarding',
'no-port-forwarding']
})
}
end
2014-02-02 17:48:24 +01:00
end