File: test_import_jy.py

package info (click to toggle)
jython 2.7.2%2Brepack1-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 62,676 kB
  • sloc: python: 640,908; java: 306,458; xml: 1,984; sh: 522; ansic: 126; makefile: 76
file content (458 lines) | stat: -rw-r--r-- 18,034 bytes parent folder | download | duplicates (2)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
# -*- coding: utf-8 -*-
"""Misc. import tests

Made for Jython.
"""
from __future__ import with_statement
import imp
import os
import shutil
import sys
import tempfile
import unittest
import subprocess
import zipfile
from test import test_support
from test_chdir import read, safe_mktemp, COMPILED_SUFFIX

class MislabeledImportTestCase(unittest.TestCase):

    def setUp(self):
        self.dir = tempfile.mkdtemp()
        self.orig_cwd = os.getcwd()
        os.chdir(self.dir)
        self.orig_syspath = sys.path
        sys.path.append('')

    def tearDown(self):
        shutil.rmtree(self.dir)
        os.chdir(self.orig_cwd)
        sys.path = self.orig_syspath

    def test_renamed_bytecode(self):
        source = safe_mktemp(dir=self.dir, suffix='.py')
        fp = open(source, 'w')
        fp.write("test = 'imported'")
        fp.close()

        module = os.path.basename(source)[:-3]
        compiled = module + COMPILED_SUFFIX
        # Compile to bytecode
        module_obj = __import__(module)
        self.assertEquals(module_obj.test, 'imported')
        self.assert_(os.path.exists(compiled))

        # Rename the bytecode
        compiled_moved = safe_mktemp(dir=self.dir, suffix=COMPILED_SUFFIX)
        os.rename(compiled, compiled_moved)

        # Ensure we can still import the renamed bytecode
        moved_module = os.path.basename(compiled_moved)[:-len(COMPILED_SUFFIX)]
        module_obj = __import__(moved_module)
        self.assertEquals(module_obj.__file__, os.path.basename(compiled_moved))
        self.assertEquals(module_obj.test, 'imported')

    def test_dunder_init(self):
        os.mkdir('dunder_init_test')

        # typical import: dunder_init_test.__init__$py.class is actually
        # compiled with a class name of dunder_init_test
        init = os.path.join('dunder_init_test', '__init__.py')
        fp = open(init, 'w')
        fp.write("bar = 'test'")
        fp.close()
        module_obj = __import__('dunder_init_test')
        self.assertEquals(module_obj.__file__, init)
        self.assertEquals(module_obj.bar, 'test')

        init_compiled = init[:-3] + COMPILED_SUFFIX
        self.assert_(os.path.exists(init_compiled))
        bytecode = read(init_compiled)

        # trigger an abnormal import of dunder_init_test.__init__; ask for it
        # by the mismatched __init__ name
        fp = open(os.path.join('dunder_init_test', 'test.py'), 'w')
        fp.write("import __init__; baz = __init__.bar + 'test'; "
                 "init_file = __init__.__file__")
        fp.close()
        module_obj = __import__('dunder_init_test.test')
        self.assertEquals(module_obj.test.baz, 'testtest')
        self.assertEqual(module_obj.test.init_file,
                         os.path.join('dunder_init_test',
                                      '__init__' + COMPILED_SUFFIX))

        # Ensure a recompile of __init__$py.class wasn't triggered to
        # satisfy the abnormal import
        self.assertEquals(bytecode, read(init_compiled),
                          'bytecode was recompiled')

        # Ensure load_module can still load it as dunder_init_test (doesn't
        # recompile)
        module_obj = imp.load_module('dunder_init_test',
                                     *imp.find_module('dunder_init_test'))
        self.assertEquals(module_obj.bar, 'test')

        # Again ensure we didn't recompile
        self.assertEquals(bytecode, read(init_compiled),
                          'bytecode was recompiled')

    def test_corrupt_bytecode(self):
        f = open("empty$py.class", "w")
        f.close()
        self.assertRaises(ImportError, __import__, "empty")

class OverrideBuiltinsImportTestCase(unittest.TestCase):
    def test_override(self):
        modname = os.path.__name__
        tests = [
            ("import os.path"         , "('os.path', None, -1, 'os')"),
            ("import os.path as path2", "('os.path', None, -1, 'os')"),
            ("from os.path import *"  ,
             "('os.path', ('*',), -1, '%s')" % modname),
            ("from os.path import join",
                 "('os.path', ('join',), -1, '%s')" % modname),
            ("from os.path import join as join2",
                 "('os.path', ('join',), -1, '%s')" % modname),
            ("from os.path import join as join2, split as split2",
                 "('os.path', ('join', 'split'), -1, '%s')" % modname),
        ]

        import sys
        # Replace __builtin__.__import__ to trace the calls
        import __builtin__
        oldimp = __builtin__.__import__
        try:
            def __import__(name, globs, locs, fromlist, level=-1):
                mod = oldimp(name, globs, locs, fromlist, level)
                globs["result"] = str((name, fromlist, level, mod.__name__))
                raise ImportError

            __builtin__.__import__ = __import__
            failed = 0
            for statement, expected in tests:
                try:
                    c = compile(statement, "<unknown>", "exec")
                    exec c in locals(), globals()
                    raise Exception("ImportError expected.")
                except ImportError:
                    pass
                self.assertEquals(expected, result)
        finally:
            __builtin__.__import__ = oldimp

class ImpTestCase(unittest.TestCase):

    def test_imp_find_module_builtins(self):
        self.assertEqual(imp.find_module('sys'), (None, 'sys', ('', '', 6)))
        self.assertEqual(imp.find_module('__builtin__'),
                         (None, '__builtin__', ('', '', 6)))

    def test_imp_is_builtin(self):
        self.assertTrue(all(imp.is_builtin(mod)
                            for mod in ['sys', '__builtin__']))
        self.assertFalse(imp.is_builtin('os'))

    def test_load_compiled(self):
        compiled = os.__file__
        if compiled.endswith('.py'):
            compiled = compiled[:-3] + COMPILED_SUFFIX

        os.__doc__ = 'foo'
        self.assertEqual(os, imp.load_compiled("os", compiled))
        self.assertFalse(os.__doc__ == 'foo')
        with open(compiled, 'rb') as fp:
            os.__doc__ = 'foo'
            self.assertEqual(os, imp.load_compiled("os", compiled, fp))
            self.assertFalse(os.__doc__ == 'foo')

    def test_getattr_module(self):
        '''Replacing __getattr__ in a class shouldn't lead to calls to __getitem__

        http://bugs.jython.org/issue438108'''
        from test import anygui
        # causes a stack overflow if the bug occurs
        self.assertRaises(Exception, getattr, anygui, 'abc')

    def test_import_star(self):
        self.assertEquals(0, subprocess.call(
                [sys.executable, test_support.findfile("import_star_from_java.py")]))

    def test_selfreferential_classes(self):
        from org.python.tests.inbred import Metis
        from org.python.tests.inbred import Zeus
        self.assertEquals(Metis, Zeus.Athena.__bases__[0])
        self.assertEquals(Zeus, Metis.__bases__[0])

    def test_sys_modules_deletion(self):
        self.assertRaises(ZeroDivisionError, __import__, 'test.module_deleter')

    #XXX: this is probably a good test to push upstream to CPython.
    if hasattr(os, "symlink"):
        def test_symlinks(self):
            # Ensure imports work over symlinks.  Did not work in Jython from
            # 2.1 to 2.5.0, fixed in 2.5.1  See
            # http://bugs.jython.org/issue645615.
            sym = test_support.TESTFN+"1"
            try:
                os.mkdir(test_support.TESTFN)
                init = os.path.join(test_support.TESTFN, "__init__.py")
                with open(init, 'w') as fp:
                    fp.write("test = 'imported'")
                os.symlink(test_support.TESTFN, sym)
                module = os.path.basename(sym)
                module_obj = __import__(module)
                self.assertEquals(module_obj.test, 'imported')

            finally:
                shutil.rmtree(test_support.TESTFN)
                test_support.unlink(sym)

    def test_issue1811(self):
        # Previously this blew out the stack
        from test.issue1811 import foo
        self.assertTrue(foo.issue1811.foo is foo)

    def test_issue1952(self):
        # CPython 2.x ignores non-dict's in second arg to __import__
        # The following threw an exception in Jython previously.
        __import__("os", [], level=-1)


class UnicodeNamesTestCase(unittest.TestCase):

    def test_import_non_ascii_module(self):
        module = "mødülé"
        with self.assertRaises(ImportError) as cm:
            __import__(module)

    def test_import_unicode_module(self):
        module = u"mødülé"
        with self.assertRaises(UnicodeEncodeError) as cm:
            __import__(module)
        self.assertEqual(cm.exception.encoding, "ascii")
        self.assertEqual(cm.exception.object, module)
        self.assertEqual(cm.exception.reason, "ordinal not in range(128)")


class MixedImportTestCase(unittest.TestCase):
    #
    # This test case depends on material in a file structure unpacked
    # from an associated ZIP archive. The test depends on Python source
    # and Java class files. The archive also contains the Java source
    # from which the class files may be regenerated if necessary.
    #
    # To regenerate the class files, explode the archive in a
    # convenient spot on the file system and compile them with javac at
    # the lowest supported code standard (currently Java 7), e.g. (posh)
    #   PS jython-trunk> cd mylib
    #   PS mylib> javac  $(get-childitem -Recurse -Name -Include "*.java")
    # or the equivalent Unix command using find.

    ZIP = test_support.findfile("test_import_jy.zip")

    @classmethod
    def setUpClass(cls):
        td = tempfile.mkdtemp()
        cls.source = os.path.join(td, "test.py")
        cls.setpath = "import sys; sys.modules[0] = r'" + td + "'"
        zip = zipfile.ZipFile(cls.ZIP, 'r')
        zip.extractall(td)
        cls.tmpdir = td

    @classmethod
    def tearDownClass(cls):
        td = cls.tmpdir
        if td and os.path.isdir(td):
            test_support.rmtree(td)

    def make_prog(self, *script):
        "Write a program to test.py"
        with open(self.source, "wt") as f:
            print >> f, MixedImportTestCase.setpath
            for line in script:
                print >> f, line
            print >> f, "raise SystemExit"

    def run_prog(self):
        # Feed lines to interpreter and capture output
        process = subprocess.Popen([sys.executable, "-S", MixedImportTestCase.source],
                                   stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        output, err = process.communicate()
        retcode = process.poll()
        if retcode:
            raise subprocess.CalledProcessError(retcode, sys.executable, output=err)
        return output

    def module_regex(self, module):
        "Partial filename from module"
        sep = "\\" + os.path.sep
        return sep + module.replace('.', sep)

    def check_package(self, line, module):
        target = "Executed: .*" +  self.module_regex(module) + "\\" + os.path.sep \
                    + r"__init__(\.py|\$py\.class|\.pyc)"
        self.assertRegexpMatches(line, target)

    def check_module(self, line, module):
        "Check output from loading a module"
        target = "Executed: .*" + self.module_regex(module) + r"(\.py|\$py\.class|\.pyc)"
        self.assertRegexpMatches(line, target)

    def test_import_to_program(self):
        # A Python module in a Python program
        self.make_prog("import a.b.c.m", "print repr(a.b.c.m)")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "a")
        self.check_package(out[1], "a.b")
        self.check_package(out[2], "a.b.c")
        self.check_module(out[3], "a.b.c.m")
        self.assertRegexpMatches(out[4], r"\<module 'a\.b\.c\.m' from .*\>")

    def test_import_to_program_no_magic(self):
        # A Python module in a Python program (issue 2654)
        self.make_prog("import a.b, a.b.c", "print repr(a.b.m3)")
        try:
            out = self.run_prog()
            self.fail("reference to a.b.m3 did not raise exception")
        except subprocess.CalledProcessError as e:
            self.assertRegexpMatches(e.output, r"AttributeError: .* has no attribute 'm3'")

    def test_import_relative_implicit(self):
        # A Python module by implicit relative import (no dots)
        self.make_prog("import a.b.m3")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "a")
        self.check_package(out[1], "a.b")
        self.check_module(out[2], "a.b.m3")
        self.check_package(out[3], "a.b.c")
        self.check_module(out[4], "a.b.c.m")
        self.assertRegexpMatches(out[5], r"\<module 'a\.b\.c\.m' from .*\>")

    def test_import_absolute_implicit(self):
        # A built-in module by absolute import (but relative must be tried first)
        self.make_prog("import a.b.m4")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "a")
        self.check_package(out[1], "a.b")
        self.check_module(out[2], "a.b.m4")
        self.assertRegexpMatches(out[3], r"\<module 'sys' \(built-in\)\>")

    def test_import_from_module(self):
        # A Python module by from-import
        self.make_prog("import a.b.m5")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "a")
        self.check_package(out[1], "a.b")
        self.check_module(out[2], "a.b.m5")
        self.check_package(out[3], "a.b.c")
        self.check_module(out[4], "a.b.c.m")
        self.assertRegexpMatches(out[5], r"\<module 'a\.b\.c\.m' from .*\>")
        self.assertRegexpMatches(out[6], r"1 2")

    def test_import_from_relative_module(self):
        # A Python module by relative from-import
        self.make_prog("import a.b.m6")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "a")
        self.check_package(out[1], "a.b")
        self.check_module(out[2], "a.b.m6")
        self.check_package(out[3], "a.b.c")
        self.check_module(out[4], "a.b.c.m")
        self.assertRegexpMatches(out[5], r"\<module 'a\.b\.c\.m' from .*\>")
        self.assertRegexpMatches(out[6], r"1 2")

    def check_java_package(self, line, module):
        target = r"\<java package " + module + r" 0x[0-9a-f]+\>"
        self.assertRegexpMatches(line, target)

    def test_import_java_java(self):
        # A Java class in a Java package by from-import
        self.make_prog("from jpkg.j import K", "print repr(K)")
        out = self.run_prog().splitlines()
        self.assertRegexpMatches(out[0], r"\<type 'jpkg.j.K'\>")

    def test_import_java_java_magic(self):
        # A Java class in a Java package
        # with implicit sub-module and class import
        self.make_prog(
            "import jpkg",
            "print repr(jpkg)",
            "print repr(jpkg.j)",
            "print repr(jpkg.j.K)",
            "print repr(jpkg.L)")
        out = self.run_prog().splitlines()
        self.check_java_package(out[0], "jpkg")
        self.check_java_package(out[1], "jpkg.j")
        self.assertRegexpMatches(out[2], r"\<type 'jpkg.j.K'\>")
        self.assertRegexpMatches(out[3], r"\<type 'jpkg.L'\>")

    def test_import_java_python(self):
        # A Java class in a Python package by from-import
        self.make_prog("from mix.b import K1", "print repr(K1)")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "mix")
        self.check_package(out[1], "mix.b")
        self.assertRegexpMatches(out[2], r"\<type 'mix.b.K1'\>")

    def test_import_java_python_magic(self):
        # A Java class in a Python package
        # with implicit sub-module and class import
        self.make_prog(
            "import mix",
            "print repr(mix.b)",
            "print repr(mix.b.K1)",
            "import mix.b",
            "print repr(mix.b)",
            "print repr(mix.b.K1)",
            "print repr(mix.J1)")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "mix")
        self.check_java_package(out[1], "mix.b")
        self.assertRegexpMatches(out[2], r"\<type 'mix.b.K1'\>")
        self.check_package(out[3], "mix.b")
        self.assertRegexpMatches(out[4], r"\<module 'mix\.b' from .*\>")
        self.assertRegexpMatches(out[5], r"\<type 'mix.b.K1'\>")
        self.assertRegexpMatches(out[6], r"\<type 'mix.J1'\>")

    def test_import_javapkg_python(self):
        # A Java package in a Python package
        self.make_prog("import mix.j", "print repr(mix.j)", "print repr(mix.j.K2)")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "mix")
        self.check_java_package(out[1], "mix.j")
        self.assertRegexpMatches(out[2], r"\<type 'mix.j.K2'\>")

    def test_import_java_from_javapkg(self):
        # A Java class in a Java package in a Python package
        self.make_prog("from mix.j import K2", "print repr(K2)")
        out = self.run_prog().splitlines()
        self.check_package(out[0], "mix")
        self.assertRegexpMatches(out[1], r"\<type 'mix.j.K2'\>")

    def test_import_javapkg_magic(self):
        # A Java class in a Java package in a Python package
        # with implicit sub-module and class import
        self.make_prog(
            "import mix",
            "print repr(mix.J1)",
            "print repr(mix.j)",
            "print repr(mix.j.K2)",
            )
        out = self.run_prog().splitlines()
        self.check_package(out[0], "mix")
        self.assertRegexpMatches(out[1], r"\<type 'mix.J1'\>")
        self.check_java_package(out[2], "mix.j")
        self.assertRegexpMatches(out[3], r"\<type 'mix.j.K2'\>")


def test_main():
    test_support.run_unittest(
            MislabeledImportTestCase,
            OverrideBuiltinsImportTestCase,
            ImpTestCase,
            UnicodeNamesTestCase,
            MixedImportTestCase
    )

if __name__ == '__main__':
    test_main()