|
4 | 4 | import sys
|
5 | 5 | import unittest
|
6 | 6 | import Cheetah.ImportHooks
|
7 |
| -from Cheetah.compat import PY2 |
| 7 | +from Cheetah.compat import PY2, cache_from_source |
8 | 8 |
|
9 | 9 |
|
10 | 10 | ImportHooksTemplatesDir = os.path.join(
|
@@ -53,31 +53,41 @@ def tearDown(self):
|
53 | 53 | _cleanup()
|
54 | 54 |
|
55 | 55 | def test_CheetahDirOwner(self):
|
56 |
| - templates = list(sorted(os.listdir(ImportHooksTemplatesDir))) |
57 |
| - self.assertListEqual(templates, ['index.tmpl', 'layout.tmpl']) |
| 56 | + files = list(sorted(os.listdir(ImportHooksTemplatesDir))) |
| 57 | + self.assertListEqual(files, ['index.tmpl', 'layout.tmpl']) |
58 | 58 |
|
59 | 59 | cdo = Cheetah.ImportHooks.CheetahDirOwner(ImportHooksTemplatesDir)
|
60 | 60 | index_mod = cdo.getmod('index')
|
61 |
| - templates = os.listdir(ImportHooksTemplatesDir) |
62 |
| - self.assertIn('index.py', templates) |
63 |
| - self.assertNotIn('layout.py', templates) |
| 61 | + files = os.listdir(ImportHooksTemplatesDir) |
| 62 | + self.assertIn('index.py', files) |
| 63 | + self.assertNotIn('layout.py', files) |
64 | 64 |
|
65 | 65 | index_co = index_mod.__co__
|
66 | 66 | del index_mod.__co__
|
67 | 67 | self.assertRaises(ImportError, _exec, index_co, index_mod.__dict__)
|
68 | 68 |
|
69 | 69 | cdo.getmod('layout') # Compiled to layout.py and .pyc
|
70 |
| - self.assertIn('layout.py', os.listdir(ImportHooksTemplatesDir)) |
| 70 | + files = os.listdir(ImportHooksTemplatesDir) |
| 71 | + self.assertIn('layout.py', files) |
| 72 | + if not PY2: |
| 73 | + files = os.listdir( |
| 74 | + os.path.join(ImportHooksTemplatesDir, '__pycache__')) |
| 75 | + self.assertIn(os.path.basename(cache_from_source('layout.py')), files) |
71 | 76 |
|
72 | 77 | def test_ImportHooks(self):
|
73 |
| - templates = os.listdir(ImportHooksTemplatesDir) |
74 |
| - self.assertNotIn('index.py', templates) |
75 |
| - self.assertNotIn('layout.py', templates) |
| 78 | + files = os.listdir(ImportHooksTemplatesDir) |
| 79 | + self.assertNotIn('index.py', files) |
| 80 | + self.assertNotIn('layout.py', files) |
76 | 81 | Cheetah.ImportHooks.install()
|
77 | 82 | from index import index # noqa
|
78 |
| - templates = os.listdir(ImportHooksTemplatesDir) |
79 |
| - self.assertIn('index.py', templates) |
80 |
| - self.assertIn('layout.py', templates) |
| 83 | + files = os.listdir(ImportHooksTemplatesDir) |
| 84 | + self.assertIn('index.py', files) |
| 85 | + self.assertIn('layout.py', files) |
| 86 | + if not PY2: |
| 87 | + files = os.listdir( |
| 88 | + os.path.join(ImportHooksTemplatesDir, '__pycache__')) |
| 89 | + self.assertIn(os.path.basename(cache_from_source('index.py')), files) |
| 90 | + self.assertIn(os.path.basename(cache_from_source('layout.py')), files) |
81 | 91 |
|
82 | 92 | def test_import_builtin(self):
|
83 | 93 | Cheetah.ImportHooks.install()
|
|
0 commit comments