2008-05-29 21:11:23 +08:00
|
|
|
"""
|
|
|
|
Test cases for the template loaders
|
2008-06-26 12:22:12 +08:00
|
|
|
|
|
|
|
Note: This test requires setuptools!
|
2008-05-29 21:11:23 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.conf import settings
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
settings.configure()
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
import sys
|
|
|
|
import pkg_resources
|
|
|
|
import imp
|
|
|
|
import StringIO
|
2008-07-29 14:05:15 +08:00
|
|
|
import os.path
|
2008-05-29 21:11:23 +08:00
|
|
|
|
|
|
|
from django.template import TemplateDoesNotExist
|
|
|
|
from django.template.loaders.eggs import load_template_source as lts_egg
|
|
|
|
|
2008-06-26 12:22:12 +08:00
|
|
|
# Mock classes and objects for pkg_resources functions.
|
2008-05-29 21:11:23 +08:00
|
|
|
class MockProvider(pkg_resources.NullProvider):
|
|
|
|
def __init__(self, module):
|
|
|
|
pkg_resources.NullProvider.__init__(self, module)
|
|
|
|
self.module = module
|
|
|
|
|
|
|
|
def _has(self, path):
|
|
|
|
return path in self.module._resources
|
|
|
|
|
|
|
|
def _isdir(self,path):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def get_resource_stream(self, manager, resource_name):
|
|
|
|
return self.module._resources[resource_name]
|
|
|
|
|
|
|
|
def _get(self, path):
|
|
|
|
return self.module._resources[path].read()
|
|
|
|
|
2008-06-26 12:22:12 +08:00
|
|
|
class MockLoader(object):
|
|
|
|
pass
|
2008-05-29 21:11:23 +08:00
|
|
|
|
|
|
|
def create_egg(name, resources):
|
|
|
|
"""
|
2008-06-26 12:22:12 +08:00
|
|
|
Creates a mock egg with a list of resources.
|
|
|
|
|
|
|
|
name: The name of the module.
|
|
|
|
resources: A dictionary of resources. Keys are the names and values the the data.
|
2008-05-29 21:11:23 +08:00
|
|
|
"""
|
|
|
|
egg = imp.new_module(name)
|
|
|
|
egg.__loader__ = MockLoader()
|
|
|
|
egg._resources = resources
|
|
|
|
sys.modules[name] = egg
|
|
|
|
|
|
|
|
class EggLoader(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
pkg_resources._provider_factories[MockLoader] = MockProvider
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
self.empty_egg = create_egg("egg_empty", {})
|
|
|
|
self.egg_1 = create_egg("egg_1", {
|
2008-07-29 14:05:15 +08:00
|
|
|
os.path.normcase('templates/y.html') : StringIO.StringIO("y"),
|
|
|
|
os.path.normcase('templates/x.txt') : StringIO.StringIO("x"),
|
2008-05-29 21:11:23 +08:00
|
|
|
})
|
2008-05-31 07:24:23 +08:00
|
|
|
self._old_installed_apps = settings.INSTALLED_APPS
|
2008-05-29 21:11:23 +08:00
|
|
|
settings.INSTALLED_APPS = []
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2008-05-31 07:24:23 +08:00
|
|
|
def tearDown(self):
|
|
|
|
settings.INSTALLED_APPS = self._old_installed_apps
|
2008-05-29 21:11:23 +08:00
|
|
|
|
|
|
|
def test_empty(self):
|
|
|
|
"Loading any template on an empty egg should fail"
|
|
|
|
settings.INSTALLED_APPS = ['egg_empty']
|
|
|
|
self.assertRaises(TemplateDoesNotExist, lts_egg, "not-existing.html")
|
|
|
|
|
|
|
|
def test_non_existing(self):
|
|
|
|
"Template loading fails if the template is not in the egg"
|
|
|
|
settings.INSTALLED_APPS = ['egg_1']
|
|
|
|
self.assertRaises(TemplateDoesNotExist, lts_egg, "not-existing.html")
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
def test_existing(self):
|
|
|
|
"A template can be loaded from an egg"
|
|
|
|
settings.INSTALLED_APPS = ['egg_1']
|
|
|
|
contents, template_name = lts_egg("y.html")
|
|
|
|
self.assertEqual(contents, "y")
|
|
|
|
self.assertEqual(template_name, "egg:egg_1:templates/y.html")
|
2008-06-26 12:22:12 +08:00
|
|
|
|
2008-05-29 21:11:23 +08:00
|
|
|
def test_not_installed(self):
|
|
|
|
"Loading an existent template from an egg not included in INSTALLED_APPS should fail"
|
|
|
|
settings.INSTALLED_APPS = []
|
|
|
|
self.assertRaises(TemplateDoesNotExist, lts_egg, "y.html")
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|