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
|
test_name "#6928: Puppet --parseonly should return deprication message"
# Create good and bad formatted manifests
step "Master: create valid, invalid formatted manifests"
create_remote_file(master, '/tmp/good.pp', %w{notify{good:}} )
create_remote_file(master, '/tmp/bad.pp', 'notify{bad:')
step "Master: use --parseonly on an invalid manifest, should return 1 and issue deprecation warning"
on master, puppet_master( %w{--parseonly /tmp/bad.pp} ), :acceptable_exit_codes => [ 1 ]
fail_test "Deprecation warning not issued for --parseonly" unless
stdout.include? '--parseonly has been removed. Please use \'puppet parser validate <manifest>\''
step "Agents: create valid, invalid formatted manifests"
agents.each do |host|
create_remote_file(host, '/tmp/good.pp', %w{notify{good:}} )
create_remote_file(host, '/tmp/bad.pp', 'notify{bad:')
end
step "Agents: use --parseonly on an invalid manifest, should return 1 and issue deprecation warning"
agents.each do |host|
on(host, "puppet --parseonly /tmp/bad.pp}", :acceptable_exit_codes => [ 1 ]) do
fail_test "Deprecation warning not issued for --parseonly" unless
stdout.include? '--parseonly has been removed. Please use \'puppet parser validate <manifest>\''
end
end
step "Test Face for ‘parser validate’ with good manifest -- should pass"
agents.each do |host|
on(host, "puppet parser validate /tmp/good.pp", :acceptable_exit_codes => [ 0 ])
end
step "Test Face for ‘parser validate’ with bad manifest -- should fail"
agents.each do |host|
on(host, "puppet parser validate /tmp/bad.pp", :acceptable_exit_codes => [ 1 ]) do
fail_test "Bad manifest detection failed" unless
stderr.include? 'Could not run: Could not parse for environment production'
end
end
|