blob: c542e51a98ded5becd1e998d0836d81f3cab96f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet_spec/files'
require 'puppet_spec/compiler'
describe Puppet::Type.type(:user), '(integration)', :unless => Puppet.features.microsoft_windows? do
include PuppetSpec::Files
include PuppetSpec::Compiler
context "when set to purge ssh keys from a file" do
let(:tempfile) do
file_containing('user_spec', <<-EOF)
# comment
ssh-rsa KEY-DATA key-name
ssh-rsa KEY-DATA key name
EOF
end
# must use an existing user, or the generated key resource
# will fail on account of an invalid user for the key
# - root should be a safe default
let(:manifest) { "user { 'root': purge_ssh_keys => '#{tempfile}' }" }
it "should purge authorized ssh keys" do
apply_compiled_manifest(manifest)
File.read(tempfile).should_not =~ /key-name/
end
it "should purge keys with spaces in the comment string" do
apply_compiled_manifest(manifest)
File.read(tempfile).should_not =~ /key name/
end
context "with other prefetching resources evaluated first" do
let(:manifest) { "host { 'test': before => User[root] } user { 'root': purge_ssh_keys => '#{tempfile}' }" }
it "should purge authorized ssh keys" do
apply_compiled_manifest(manifest)
File.read(tempfile).should_not =~ /key-name/
end
end
context "with multiple unnamed keys" do
let(:tempfile) do
file_containing('user_spec', <<-EOF)
# comment
ssh-rsa KEY-DATA1
ssh-rsa KEY-DATA2
EOF
end
it "should purge authorized ssh keys" do
apply_compiled_manifest(manifest)
File.read(tempfile).should_not =~ /KEY-DATA/
end
end
end
end
|