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
|
test_name "should modify a user"
tag 'audit:high',
'audit:refactor', # Use block style `test_run`
'audit:acceptance' # Could be done as integration tests, but would
# require changing the system running the test
# in ways that might require special permissions
# or be harmful to the system running the test
name = "pl#{rand(999999).to_i}"
agents.each do |agent|
step "ensure the user is present"
agent.user_present(name)
step "modify the user"
on agent, puppet_resource('user', name, ["ensure=present", "comment=comment#{name}"])
step "verify the user was modified"
agent.user_get(name) do |result|
fail_test "didn't modify the user #{name}" unless result.stdout.include? "comment#{name}"
end
step "delete the user"
agent.user_absent(name)
agent.group_absent(name)
end
|