Merge pull request #1365 from PlasmaPower/testing-outside-vagrant

Allow running tests outside of Vagrant
This commit is contained in:
TW 2016-07-23 16:43:19 +02:00 committed by GitHub
commit ffdd3a53f9
1 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import os
import shutil
import sys
import tempfile
import pwd
import unittest
from ..platform import acl_get, acl_set, swidth
@ -35,6 +36,14 @@ def fakeroot_detected():
return 'FAKEROOTKEY' in os.environ
def user_exists(username):
try:
pwd.getpwnam(username)
return True
except KeyError:
return False
@unittest.skipUnless(sys.platform.startswith('linux'), 'linux only test')
@unittest.skipIf(fakeroot_detected(), 'not compatible with fakeroot')
class PlatformLinuxTestCase(BaseTestCase):
@ -72,6 +81,7 @@ class PlatformLinuxTestCase(BaseTestCase):
self.assert_equal(self.get_acl(self.tmpdir)['acl_access'], ACCESS_ACL)
self.assert_equal(self.get_acl(self.tmpdir)['acl_default'], DEFAULT_ACL)
@unittest.skipIf(not user_exists('übel'), 'requires übel user')
def test_non_ascii_acl(self):
# Testing non-ascii ACL processing to see whether our code is robust.
# I have no idea whether non-ascii ACLs are allowed by the standard,