File: test_utils.py

package info (click to toggle)
python-django 3%3A3.2.19-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 56,696 kB
  • sloc: python: 264,418; javascript: 18,362; xml: 193; makefile: 178; sh: 43
file content (48 lines) | stat: -rw-r--r-- 2,035 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from unittest import mock
from urllib.parse import urlencode

from django.contrib.sitemaps import (
    SitemapNotFound, _get_sitemap_full_url, ping_google,
)
from django.core.exceptions import ImproperlyConfigured
from django.test import modify_settings, override_settings

from .base import SitemapTestsBase


class PingGoogleTests(SitemapTestsBase):

    @mock.patch('django.contrib.sitemaps.urlopen')
    def test_something(self, urlopen):
        ping_google()
        params = urlencode({'sitemap': 'https://example.com/sitemap-without-entries/sitemap.xml'})
        full_url = 'https://www.google.com/webmasters/tools/ping?%s' % params
        urlopen.assert_called_with(full_url)

    def test_get_sitemap_full_url_global(self):
        self.assertEqual(_get_sitemap_full_url(None), 'https://example.com/sitemap-without-entries/sitemap.xml')

    @override_settings(ROOT_URLCONF='sitemaps_tests.urls.index_only')
    def test_get_sitemap_full_url_index(self):
        self.assertEqual(_get_sitemap_full_url(None), 'https://example.com/simple/index.xml')

    @override_settings(ROOT_URLCONF='sitemaps_tests.urls.empty')
    def test_get_sitemap_full_url_not_detected(self):
        msg = "You didn't provide a sitemap_url, and the sitemap URL couldn't be auto-detected."
        with self.assertRaisesMessage(SitemapNotFound, msg):
            _get_sitemap_full_url(None)

    def test_get_sitemap_full_url_exact_url(self):
        self.assertEqual(_get_sitemap_full_url('/foo.xml'), 'https://example.com/foo.xml')

    def test_get_sitemap_full_url_insecure(self):
        self.assertEqual(
            _get_sitemap_full_url('/foo.xml', sitemap_uses_https=False),
            'http://example.com/foo.xml'
        )

    @modify_settings(INSTALLED_APPS={'remove': 'django.contrib.sites'})
    def test_get_sitemap_full_url_no_sites(self):
        msg = "ping_google requires django.contrib.sites, which isn't installed."
        with self.assertRaisesMessage(ImproperlyConfigured, msg):
            _get_sitemap_full_url(None)