summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_importlib/extension/test_finder.py
blob: 990f29c4e5897fc348a1aab6648652f5bd2a21ef (plain)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from .. import abc
from .. import util as test_util
from . import util

machinery = test_util.import_importlib('importlib.machinery')

import unittest
import warnings

# XXX find_spec tests

class FinderTests(abc.FinderTests):

    """Test the finder for extension modules."""

    def find_module(self, fullname):
        importer = self.machinery.FileFinder(util.PATH,
                                            (self.machinery.ExtensionFileLoader,
                                             self.machinery.EXTENSION_SUFFIXES))
        with warnings.catch_warnings():
            warnings.simplefilter('ignore', DeprecationWarning)
            return importer.find_module(fullname)

    def test_module(self):
        self.assertTrue(self.find_module(util.NAME))

    # No extension module as an __init__ available for testing.
    test_package = test_package_in_package = None

    # No extension module in a package available for testing.
    test_module_in_package = None

    # Extension modules cannot be an __init__ for a package.
    test_package_over_module = None

    def test_failure(self):
        self.assertIsNone(self.find_module('asdfjkl;'))

Frozen_FinderTests, Source_FinderTests = test_util.test_both(
        FinderTests, machinery=machinery)


if __name__ == '__main__':
    unittest.main()