소스 검색

Moved contrib.sitemaps tests out of contrib.

Tim Graham 10 년 전
부모
커밋
fbc467c26b

+ 0 - 1
MANIFEST.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]

+ 0 - 42
django/contrib/sitemaps/tests/base.py

@@ -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')

+ 0 - 0
django/contrib/sitemaps/tests/__init__.py → tests/sitemaps_tests/__init__.py


+ 20 - 0
tests/sitemaps_tests/base.py

@@ -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 - 0
tests/sitemaps_tests/models.py

@@ -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])

+ 0 - 0
django/contrib/sitemaps/tests/templates/custom_sitemap.xml → tests/sitemaps_tests/templates/custom_sitemap.xml


+ 0 - 0
django/contrib/sitemaps/tests/templates/custom_sitemap_index.xml → tests/sitemaps_tests/templates/custom_sitemap_index.xml


+ 2 - 1
django/contrib/sitemaps/tests/test_generic.py → tests/sitemaps_tests/test_generic.py

@@ -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={})

+ 2 - 1
django/contrib/sitemaps/tests/test_http.py → tests/sitemaps_tests/test_http.py

@@ -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):

+ 1 - 1
django/contrib/sitemaps/tests/test_https.py → tests/sitemaps_tests/test_https.py

@@ -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'
 

+ 0 - 0
django/contrib/sitemaps/tests/urls/__init__.py → tests/sitemaps_tests/urls/__init__.py


+ 2 - 1
django/contrib/sitemaps/tests/urls/http.py → tests/sitemaps_tests/urls/http.py

@@ -3,11 +3,12 @@ from datetime import date, datetime
 from django.conf.urls import url
 from django.conf.urls.i18n import i18n_patterns
 from django.contrib.sitemaps import 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"

+ 0 - 0
django/contrib/sitemaps/tests/urls/https.py → tests/sitemaps_tests/urls/https.py