From e7969f5af56be1b9163a8f9ee4686becb3fdcb59 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Jun 25 2014 18:14:52 +0000 Subject: ipatests: test_sudo: Expect root listed out if no RunAsUser available Reviewed-By: Petr Viktorin --- diff --git a/ipatests/test_integration/test_sudo.py b/ipatests/test_integration/test_sudo.py index 7763213..2c4116c 100644 --- a/ipatests/test_integration/test_sudo.py +++ b/ipatests/test_integration/test_sudo.py @@ -481,7 +481,7 @@ class TestSudo(IntegrationTest): def test_sudo_rule_restricted_to_running_as_single_group(self): result1 = self.list_sudo_commands("testuser1", verbose=True) - assert "RunAsUsers:" not in result1.stdout_text + assert "RunAsUsers: root" in result1.stdout_text assert "RunAsGroups: testgroup2" in result1.stdout_text def test_setting_category_to_all_with_valid_entries_runasgroup(self): @@ -502,7 +502,7 @@ class TestSudo(IntegrationTest): def test_sudo_rule_restricted_to_running_as_single_local_group(self): result1 = self.list_sudo_commands("testuser1", verbose=True) - assert "RunAsUsers:" not in result1.stdout_text + assert "RunAsUsers: root" in result1.stdout_text assert "RunAsGroups: localgroup" in result1.stdout_text def test_setting_category_to_all_with_valid_entries_runasgroup_local(self):