summaryrefslogtreecommitdiffstats
path: root/acceptance
diff options
context:
space:
mode:
authorJacob Helwig <jacob@puppetlabs.com>2011-07-22 13:20:13 -0700
committerJacob Helwig <jacob@puppetlabs.com>2011-07-22 13:20:13 -0700
commit69acbb026145f7c5042cbb32ea0fbcfe88865897 (patch)
tree8b20e2c3c30e57bb28b378d130922bb3db092071 /acceptance
parenta87ef54385cbf325d6b085200606562b0d4d7876 (diff)
parente6398680e673e69240bacdf2f0262524bf9e964e (diff)
downloadpuppet-69acbb026145f7c5042cbb32ea0fbcfe88865897.tar.gz
puppet-69acbb026145f7c5042cbb32ea0fbcfe88865897.tar.xz
puppet-69acbb026145f7c5042cbb32ea0fbcfe88865897.zip
Merge branch 'confine_shadow_acceptance_tests' into 2.6.x
* confine_shadow_acceptance_tests: Confine password disclosure acceptance test to hosts with required libraries
Diffstat (limited to 'acceptance')
-rw-r--r--acceptance/tests/ticket_6857_password-disclosure-when-changing-a-users-password.rb16
1 files changed, 13 insertions, 3 deletions
diff --git a/acceptance/tests/ticket_6857_password-disclosure-when-changing-a-users-password.rb b/acceptance/tests/ticket_6857_password-disclosure-when-changing-a-users-password.rb
index f1e100c2e..d3b415691 100644
--- a/acceptance/tests/ticket_6857_password-disclosure-when-changing-a-users-password.rb
+++ b/acceptance/tests/ticket_6857_password-disclosure-when-changing-a-users-password.rb
@@ -1,5 +1,15 @@
test_name "#6857: redact password hashes when applying in noop mode"
+hosts_to_test = agents.reject do |agent|
+ if agent['platform'].match /(?:ubuntu|centos|debian|rhel)/
+ result = on(agent, %q{ruby -e 'require "shadow" or raise'}, :silent => true)
+ result.exit_code != 0
+ else
+ false
+ end
+end
+skip_test "No suitable hosts found" if hosts_to_test.empty?
+
adduser_manifest = <<MANIFEST
user { 'passwordtestuser':
ensure => 'present',
@@ -15,9 +25,9 @@ user { 'passwordtestuser':
}
MANIFEST
-apply_manifest_on(agents, adduser_manifest )
-results = apply_manifest_on(agents, changepass_manifest )
+apply_manifest_on(hosts_to_test, adduser_manifest )
+results = apply_manifest_on(hosts_to_test, changepass_manifest )
results.each do |result|
- assert_match( /current_value \[old password hash redacted\], should be \[new password hash redacted\]/ , "#{result.stdout}" )
+ assert_match( /current_value \[old password hash redacted\], should be \[new password hash redacted\]/ , "#{result.host}: #{result.stdout}" )
end