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
58
59
60
61
62
63
|
#! /usr/bin/env ruby -S rspec
require 'spec_helper_acceptance'
describe 'validate_augeas function', :unless => ((UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem'))) or (fact('osfamily') == 'windows')) do
describe 'prep' do
it 'installs augeas for tests'
end
describe 'success' do
context 'valid inputs with no 3rd argument' do
{
'root:x:0:0:root:/root:/bin/bash\n' => 'Passwd.lns',
'proc /proc proc nodev,noexec,nosuid 0 0\n' => 'Fstab.lns'
}.each do |line,lens|
it "validates a single argument for #{lens}" do
pp = <<-EOS
$line = "#{line}"
$lens = "#{lens}"
validate_augeas($line, $lens)
EOS
apply_manifest(pp, :catch_failures => true)
end
end
end
context 'valid inputs with 3rd and 4th arguments' do
it "validates a restricted value" do
line = 'root:x:0:0:root:/root:/bin/barsh\n'
lens = 'Passwd.lns'
restriction = '$file/*[shell="/bin/barsh"]'
pp = <<-EOS
$line = "#{line}"
$lens = "#{lens}"
$restriction = ['#{restriction}']
validate_augeas($line, $lens, $restriction, "my custom failure message")
EOS
expect(apply_manifest(pp, :expect_failures => true).stderr).to match(/my custom failure message/)
end
end
context 'invalid inputs' do
{
'root:x:0:0:root' => 'Passwd.lns',
'127.0.1.1' => 'Hosts.lns'
}.each do |line,lens|
it "validates a single argument for #{lens}" do
pp = <<-EOS
$line = "#{line}"
$lens = "#{lens}"
validate_augeas($line, $lens)
EOS
apply_manifest(pp, :expect_failures => true)
end
end
end
context 'garbage inputs' do
it 'raises an error on invalid inputs'
end
end
describe 'failure' do
it 'handles improper number of arguments'
end
end
|