Skip to content

Commit 52355b2

Browse files
committed
Tests(ImportHooks): Test import created byte-code files
1 parent 5ae983f commit 52355b2

File tree

1 file changed

+23
-13
lines changed

1 file changed

+23
-13
lines changed

Cheetah/Tests/ImportHooks.py

+23-13
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import unittest
66
import Cheetah.ImportHooks
7-
from Cheetah.compat import PY2
7+
from Cheetah.compat import PY2, cache_from_source
88

99

1010
ImportHooksTemplatesDir = os.path.join(
@@ -53,31 +53,41 @@ def tearDown(self):
5353
_cleanup()
5454

5555
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'])
5858

5959
cdo = Cheetah.ImportHooks.CheetahDirOwner(ImportHooksTemplatesDir)
6060
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)
6464

6565
index_co = index_mod.__co__
6666
del index_mod.__co__
6767
self.assertRaises(ImportError, _exec, index_co, index_mod.__dict__)
6868

6969
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)
7176

7277
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)
7681
Cheetah.ImportHooks.install()
7782
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)
8191

8292
def test_import_builtin(self):
8393
Cheetah.ImportHooks.install()

0 commit comments

Comments
 (0)