2012-01-30 03:24:32 +08:00
|
|
|
from datetime import date
|
|
|
|
|
2015-08-18 01:45:07 +08:00
|
|
|
from django.test import override_settings
|
2012-01-30 03:24:32 +08:00
|
|
|
|
|
|
|
from .base import SitemapTestsBase
|
|
|
|
|
2013-11-03 04:12:09 +08:00
|
|
|
|
2015-02-10 21:11:25 +08:00
|
|
|
@override_settings(ROOT_URLCONF='sitemaps_tests.urls.https')
|
2012-01-30 03:24:32 +08:00
|
|
|
class HTTPSSitemapTests(SitemapTestsBase):
|
|
|
|
protocol = 'https'
|
|
|
|
|
|
|
|
def test_secure_sitemap_index(self):
|
|
|
|
"A secure sitemap index can be rendered"
|
2014-12-22 04:19:05 +08:00
|
|
|
response = self.client.get('/secure/index.xml')
|
2012-08-15 02:12:38 +08:00
|
|
|
expected_content = """<?xml version="1.0" encoding="UTF-8"?>
|
2012-01-30 03:24:32 +08:00
|
|
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
<sitemap><loc>%s/secure/sitemap-simple.xml</loc></sitemap>
|
|
|
|
</sitemapindex>
|
2012-08-15 02:12:38 +08:00
|
|
|
""" % self.base_url
|
2017-02-08 01:05:47 +08:00
|
|
|
self.assertXMLEqual(response.content.decode(), expected_content)
|
2012-01-30 03:24:32 +08:00
|
|
|
|
|
|
|
def test_secure_sitemap_section(self):
|
|
|
|
"A secure sitemap section can be rendered"
|
|
|
|
response = self.client.get('/secure/sitemap-simple.xml')
|
2012-08-15 02:12:38 +08:00
|
|
|
expected_content = """<?xml version="1.0" encoding="UTF-8"?>
|
2012-01-30 03:24:32 +08:00
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
<url><loc>%s/location/</loc><lastmod>%s</lastmod><changefreq>never</changefreq><priority>0.5</priority></url>
|
|
|
|
</urlset>
|
2012-08-15 02:12:38 +08:00
|
|
|
""" % (self.base_url, date.today())
|
2017-02-08 01:05:47 +08:00
|
|
|
self.assertXMLEqual(response.content.decode(), expected_content)
|
2012-01-30 03:24:32 +08:00
|
|
|
|
2012-03-30 17:08:29 +08:00
|
|
|
|
|
|
|
@override_settings(SECURE_PROXY_SSL_HEADER=False)
|
2012-01-30 03:24:32 +08:00
|
|
|
class HTTPSDetectionSitemapTests(SitemapTestsBase):
|
|
|
|
extra = {'wsgi.url_scheme': 'https'}
|
|
|
|
|
|
|
|
def test_sitemap_index_with_https_request(self):
|
|
|
|
"A sitemap index requested in HTTPS is rendered with HTTPS links"
|
2014-12-22 04:19:05 +08:00
|
|
|
response = self.client.get('/simple/index.xml', **self.extra)
|
2012-08-15 02:12:38 +08:00
|
|
|
expected_content = """<?xml version="1.0" encoding="UTF-8"?>
|
2012-01-30 03:24:32 +08:00
|
|
|
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
<sitemap><loc>%s/simple/sitemap-simple.xml</loc></sitemap>
|
|
|
|
</sitemapindex>
|
2012-08-15 02:12:38 +08:00
|
|
|
""" % self.base_url.replace('http://', 'https://')
|
2017-02-08 01:05:47 +08:00
|
|
|
self.assertXMLEqual(response.content.decode(), expected_content)
|
2012-01-30 03:24:32 +08:00
|
|
|
|
|
|
|
def test_sitemap_section_with_https_request(self):
|
|
|
|
"A sitemap section requested in HTTPS is rendered with HTTPS links"
|
|
|
|
response = self.client.get('/simple/sitemap-simple.xml', **self.extra)
|
2012-08-15 02:12:38 +08:00
|
|
|
expected_content = """<?xml version="1.0" encoding="UTF-8"?>
|
2012-01-30 03:24:32 +08:00
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
<url><loc>%s/location/</loc><lastmod>%s</lastmod><changefreq>never</changefreq><priority>0.5</priority></url>
|
|
|
|
</urlset>
|
2012-08-15 02:12:38 +08:00
|
|
|
""" % (self.base_url.replace('http://', 'https://'), date.today())
|
2017-02-08 01:05:47 +08:00
|
|
|
self.assertXMLEqual(response.content.decode(), expected_content)
|