mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	[1.8.x] Moved contrib.sitemaps tests out of contrib.
Backport of fbc467c26b from master
			
			
This commit is contained in:
		| @@ -30,6 +30,5 @@ recursive-include django/contrib/gis/tests/geoapp/fixtures * | ||||
| recursive-include django/contrib/gis/tests/geogapp/fixtures * | ||||
| recursive-include django/contrib/gis/tests/relatedapp/fixtures * | ||||
| recursive-include django/contrib/sitemaps/templates * | ||||
| recursive-include django/contrib/sitemaps/tests/templates * | ||||
| recursive-exclude * __pycache__ | ||||
| recursive-exclude * *.py[co] | ||||
|   | ||||
| @@ -1,42 +0,0 @@ | ||||
| from django.apps import apps | ||||
| from django.core.cache import cache | ||||
| from django.core.urlresolvers import reverse | ||||
| from django.db import models | ||||
| from django.test import TestCase, override_settings | ||||
|  | ||||
|  | ||||
| class TestModel(models.Model): | ||||
|     name = models.CharField(max_length=100) | ||||
|  | ||||
|     class Meta: | ||||
|         app_label = 'sitemaps' | ||||
|  | ||||
|     def __unicode__(self): | ||||
|         return self.name | ||||
|  | ||||
|     def get_absolute_url(self): | ||||
|         return '/testmodel/%s/' % self.id | ||||
|  | ||||
|  | ||||
| class I18nTestModel(models.Model): | ||||
|     name = models.CharField(max_length=100) | ||||
|  | ||||
|     class Meta: | ||||
|         app_label = 'sitemaps' | ||||
|  | ||||
|     def get_absolute_url(self): | ||||
|         return reverse('i18n_testmodel', args=[self.id]) | ||||
|  | ||||
|  | ||||
| @override_settings(ROOT_URLCONF='django.contrib.sitemaps.tests.urls.http') | ||||
| class SitemapTestsBase(TestCase): | ||||
|     protocol = 'http' | ||||
|     sites_installed = apps.is_installed('django.contrib.sites') | ||||
|     domain = 'example.com' if sites_installed else 'testserver' | ||||
|  | ||||
|     def setUp(self): | ||||
|         self.base_url = '%s://%s' % (self.protocol, self.domain) | ||||
|         cache.clear() | ||||
|         # Create an object for sitemap content. | ||||
|         TestModel.objects.create(name='Test Object') | ||||
|         self.i18n_model = I18nTestModel.objects.create(name='Test Object') | ||||
							
								
								
									
										20
									
								
								tests/sitemaps_tests/base.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								tests/sitemaps_tests/base.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| from django.apps import apps | ||||
| from django.core.cache import cache | ||||
| from django.test import TestCase, modify_settings, override_settings | ||||
|  | ||||
| from .models import I18nTestModel, TestModel | ||||
|  | ||||
|  | ||||
| @modify_settings(INSTALLED_APPS={'append': 'django.contrib.sitemaps'}) | ||||
| @override_settings(ROOT_URLCONF='sitemaps_tests.urls.http') | ||||
| class SitemapTestsBase(TestCase): | ||||
|     protocol = 'http' | ||||
|     sites_installed = apps.is_installed('django.contrib.sites') | ||||
|     domain = 'example.com' if sites_installed else 'testserver' | ||||
|  | ||||
|     def setUp(self): | ||||
|         self.base_url = '%s://%s' % (self.protocol, self.domain) | ||||
|         cache.clear() | ||||
|         # Create an object for sitemap content. | ||||
|         TestModel.objects.create(name='Test Object') | ||||
|         self.i18n_model = I18nTestModel.objects.create(name='Test Object') | ||||
							
								
								
									
										16
									
								
								tests/sitemaps_tests/models.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								tests/sitemaps_tests/models.py
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,16 @@ | ||||
| from django.core.urlresolvers import reverse | ||||
| from django.db import models | ||||
|  | ||||
|  | ||||
| class TestModel(models.Model): | ||||
|     name = models.CharField(max_length=100) | ||||
|  | ||||
|     def get_absolute_url(self): | ||||
|         return '/testmodel/%s/' % self.id | ||||
|  | ||||
|  | ||||
| class I18nTestModel(models.Model): | ||||
|     name = models.CharField(max_length=100) | ||||
|  | ||||
|     def get_absolute_url(self): | ||||
|         return reverse('i18n_testmodel', args=[self.id]) | ||||
| @@ -2,7 +2,8 @@ from __future__ import unicode_literals | ||||
| 
 | ||||
| from django.test import override_settings | ||||
| 
 | ||||
| from .base import SitemapTestsBase, TestModel | ||||
| from .base import SitemapTestsBase | ||||
| from .models import TestModel | ||||
| 
 | ||||
| 
 | ||||
| @override_settings(ABSOLUTE_URL_OVERRIDES={}) | ||||
| @@ -15,7 +15,8 @@ from django.utils.deprecation import RemovedInDjango20Warning | ||||
| from django.utils.formats import localize | ||||
| from django.utils.translation import activate, deactivate | ||||
| 
 | ||||
| from .base import SitemapTestsBase, TestModel | ||||
| from .base import SitemapTestsBase | ||||
| from .models import TestModel | ||||
| 
 | ||||
| 
 | ||||
| class HTTPSitemapTests(SitemapTestsBase): | ||||
| @@ -8,7 +8,7 @@ from django.utils.deprecation import RemovedInDjango20Warning | ||||
| from .base import SitemapTestsBase | ||||
| 
 | ||||
| 
 | ||||
| @override_settings(ROOT_URLCONF='django.contrib.sitemaps.tests.urls.https') | ||||
| @override_settings(ROOT_URLCONF='sitemaps_tests.urls.https') | ||||
| class HTTPSSitemapTests(SitemapTestsBase): | ||||
|     protocol = 'https' | ||||
| 
 | ||||
| @@ -5,11 +5,12 @@ from django.conf.urls.i18n import i18n_patterns | ||||
| from django.contrib.sitemaps import ( | ||||
|     FlatPageSitemap, GenericSitemap, Sitemap, views, | ||||
| ) | ||||
| from django.contrib.sitemaps.tests.base import I18nTestModel, TestModel | ||||
| from django.http import HttpResponse | ||||
| from django.utils import timezone | ||||
| from django.views.decorators.cache import cache_page | ||||
| 
 | ||||
| from ..models import I18nTestModel, TestModel | ||||
| 
 | ||||
| 
 | ||||
| class SimpleSitemap(Sitemap): | ||||
|     changefreq = "never" | ||||
		Reference in New Issue
	
	Block a user