-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Don't use the unicode-wrapped os and shutil modules here since
from portage import _unicode_decode
from portage import _unicode_encode
from portage.localization import _
-
-import selinux
+portage.proxy.lazyimport.lazyimport(globals(),
+ 'selinux')
def copyfile(src, dest):
src = _unicode_encode(src, encoding=_encodings['fs'], errors='strict')
'portage.const', 'portage.localization',
'portage.proxy', 'portage.proxy.lazyimport',
'portage.proxy.objectproxy', 'portage._ensure_encodings',
+ 'portage._selinux',
])
_baseline_import_cmd = [portage._python_interpreter, '-c', '''
--- /dev/null
+# Copyright 2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+from portage.const import PORTAGE_PYM_PATH
+from portage.tests import TestCase
+from portage import os
+from portage import _encodings
+from portage import _unicode_decode
+
+class ImportModulesTestCase(TestCase):
+
+ def testImportModules(self):
+ for mod in self._list_modules(PORTAGE_PYM_PATH):
+ __import__(mod)
+
+ def _list_modules(self, base_dir):
+ all_modules = []
+ for parent, dirs, files in os.walk(base_dir):
+ parent = _unicode_decode(parent,
+ encoding=_encodings['fs'], errors='strict')
+ parent_mod = parent[len(PORTAGE_PYM_PATH)+1:]
+ parent_mod = parent_mod.replace("/", ".")
+ for x in files:
+ x = _unicode_decode(x,
+ encoding=_encodings['fs'], errors='strict')
+ if x[-3:] != '.py':
+ continue
+ x = x[:-3]
+ if x[-8:] == '__init__':
+ x = parent_mod
+ else:
+ x = parent_mod + "." + x
+ all_modules.append(x)
+
+ return all_modules