ipatests: test_trust: use domain name instead of realm for user lookups

This commit is contained in:
Tomas Babej 2013-11-01 13:59:16 +01:00 committed by Martin Kosek
parent 428aecec49
commit 9cbb94cd66

View File

@ -86,7 +86,8 @@ class TestBasicADTrust(ADTrustBase):
def test_user_gid_uid_resolution_in_nonposix_trust(self):
"""Check that user has SID-generated UID"""
testuser = 'testuser@%s' % self.ad.domain.realm
# Using domain name since it is lowercased realm name for AD domains
testuser = 'testuser@%s' % self.ad.domain.name
result = self.master.run_command(['getent', 'passwd', testuser])
# This regex checks that Test User does not have UID 10042 nor belongs
@ -124,7 +125,8 @@ class TestPosixADTrust(ADTrustBase):
def test_user_uid_gid_resolution_in_posix_trust(self):
# Check that user has AD-defined UID
testuser = 'testuser@%s' % self.ad.domain.realm
# Using domain name since it is lowercased realm name for AD domains
testuser = 'testuser@%s' % self.ad.domain.name
result = self.master.run_command(['getent', 'passwd', testuser])
testuser_stdout = "testuser@%s:*:10042:10047:"\
@ -136,7 +138,8 @@ class TestPosixADTrust(ADTrustBase):
def test_user_without_posix_attributes_not_visible(self):
# Check that user has AD-defined UID
nonposixuser = 'nonposixuser@%s' % self.ad.domain.realm
# Using domain name since it is lowercased realm name for AD domains
nonposixuser = 'nonposixuser@%s' % self.ad.domain.name
result = self.master.run_command(['getent', 'passwd', nonposixuser],
raiseonerr=False)