# Copyright The IETF Trust 2007, All Rights Reserved # Portion Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). # All rights reserved. Contact: Pasi Eronen # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials provided # with the distribution. # # * Neither the name of the Nokia Corporation and/or its # subsidiary(-ies) nor the names of its contributors may be used # to endorse or promote products derived from this software # without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import os import re import sys import html5lib from datetime import datetime import urllib2 as urllib from difflib import unified_diff import django.test from django.db import connection, connections, DEFAULT_DB_ALIAS from django.test.testcases import connections_support_transactions from django.test.client import Client from django.conf import settings from django.core.management import call_command import debug # pyflakes:ignore real_database_name = settings.DATABASES["default"]["NAME"] import traceback class RealDatabaseTest: def setUpRealDatabase(self): self._original_testdb = self._getDatabaseName() newdb = real_database_name #print " Switching database from "+self._original_testdb+" to "+newdb self._setDatabaseName(newdb) def tearDownRealDatabase(self): #curdb = self._getDatabaseName() #print " Switching database from "+curdb+" to "+self._original_testdb self._setDatabaseName(self._original_testdb) def _getDatabaseName(self): return connection.settings_dict['NAME'] def _setDatabaseName(self, name): connection.close() django.conf.settings.DATABASES["default"]["NAME"] = name connection.settings_dict['NAME'] = name connection.cursor() def read_testurls(filename): tuples = [] file = open(filename) for line in file: line = line.strip() if line and not line.startswith('#'): line = line.split("#", 1)[0] urlspec = line.split() if len(urlspec) == 2: codes, testurl = urlspec goodurl = None elif len(urlspec) == 3: codes, testurl, goodurl = urlspec else: raise ValueError("Expected 'HTTP_CODE TESTURL [GOODURL]' in %s line, found '%s'." % (filename, line)) codes = dict([ (item, "") for item in codes.split(",") if not":" in item] + [ (item.split(":")[:2]) for item in codes.split(",") if ":" in item] ) tuples += [ (codes, testurl, goodurl) ] file.close() return tuples def split_url(url): if "?" in url: url, args = url.split("?", 1) args = dict([ map(urllib.unquote,arg.split("=", 1)) for arg in args.split("&") if "=" in arg ]) else: args = {} return url, args class SimpleUrlTestCase(django.test.TestCase,RealDatabaseTest): def setUp(self): self.setUpRealDatabase() self.client = Client() self.ref_prefix = os.environ.get("IETFDB_REF_PREFIX", "") if self.ref_prefix.endswith("/"): self.ref_prefix = self.ref_prefix[:-1] self.skip_heavy_tests = os.environ.get("IETFDB_SKIP_HEAVY", True) self.verbosity = os.environ.get("IETFDB_TESTURL_VERBOSITY", 1) def tearDown(self): self.tearDownRealDatabase() def doTestUrls(self, test_filename): if test_filename.endswith(".list"): filename = test_filename else: filename = os.path.dirname(os.path.abspath(test_filename))+"/testurl.list" if self.verbosity > 1: print " Reading "+filename tuples = read_testurls(filename) failures = 0 for tuple in tuples: try: self.doTestUrl(tuple) except: failures = failures + 1 self.assertEqual(failures, 0, "%d URLs failed" % failures) def saveBadResponse(self, url, response): msg = "The %s page changed\n" % url url = url.lstrip('/') path = settings.TEST_DIFF_FAILURE_DIR path = os.path.join(path, url) if not os.path.exists(os.path.dirname(path)): os.makedirs(os.path.dirname(path)) with open(path, "w") as file: file.write(response.content) msg += "The newly generated page has been saved at:\n %s" % path print msg return msg def doTestUrl(self, tuple): (codes, url, master) = tuple baseurl, args = split_url(url) failed = False #enable this to see query counts #settings.DEBUG = True msg = None try: if "heavy" in codes and self.skip_heavy_tests: if self.verbosity > 1: print " Skipping heavy test %s" % (url,) else: sys.stdout.write('-') return now = datetime.utcnow() response = self.client.get(baseurl, args) elapsed_dt = datetime.utcnow()-now elapsed = elapsed_dt.seconds + elapsed_dt.microseconds/1e6 code = str(response.status_code) queries = len(connection.queries) if self.verbosity == 1: if code in codes: sys.stdout.write(".") else: sys.stdout.write("F") failed = True elif self.verbosity > 1: if code in codes: print "OK %s %s" % (code, url) else: print "Fail %s %s" % (code, url) failed = True if queries > 0: print " (%.1f s, %d kB, %d queries)" % (elapsed, len(response.content)/1000, queries) else: print " (%.1f s, %d kB)" % (elapsed, len(response.content)/1000) if code in codes and code == "200": diff_result = self.doDiff(tuple, response) if diff_result == False: msg = self.saveBadResponse(url, response) failed = True except: failed = True msg = "Exception for URL '%s'" % url print msg traceback.print_exc() self.assertEqual(failed, False, msg) # Override this in subclasses if needed def doCanonicalize(self, url, content): return content def doDiff(self, tuple, response): (codes, url, master) = tuple if not self.ref_prefix and not master: return if "skipdiff" in codes: return if master: root_dir = os.path.dirname(os.path.dirname(os.path.abspath(sys.modules["__main__"].__file__))) master = os.path.join(root_dir, master) mfile = open(master) refhtml = mfile.read() mfile.close() else: refurl = self.ref_prefix+url print " Fetching "+refurl refhtml = None try: mfile = urllib.urlopen(refurl) refhtml = mfile.read() mfile.close() except Exception, e: print " Error retrieving %s: %s" % (refurl, e) return refhtml = self.doCanonicalize(url, refhtml) testhtml = self.doCanonicalize(url, response.content) #print "REFERENCE:\n----------------------\n"+refhtml+"\n-------------\n" #print "TEST:\n----------------------\n"+testhtml+"\n-------------\n" list0 = refhtml.split("\n") list1 = testhtml.split("\n") diff_list = list(unified_diff(list0, list1, master or refurl, url, "", "", 0, lineterm="")) if len(diff_list): if len(diff_list) > 10: print "\n Differences found. The list is too long to show in its entirety.\n Here are the first 10 lines:\n" print "\n".join(diff_list[:16]) print "..." else: print "\n Differences found:" print "\n".join(unified_diff(list0, list1, master or refurl, url, "", "", 0, lineterm="")) return False def canonicalize_feed(s): # Django 0.96 handled time zone different -- ignore it for now s = re.sub(r"(\d\d\d\d-\d\d-\d\dT)\d\d(:\d\d:\d\d)(Z|-08:00)()",r"\g<1>00\g<2>Z\g<4>", s) # Insert newline before tags to make diff easier to read s = re.sub("\n*\s*(<[a-zA-Z])", "\n\g<1>", s) return s def canonicalize_sitemap(s): s = re.sub("> <", "><", s) # Insert newline before tags to make diff easier to read s = re.sub("\n*\s*(<[a-zA-Z])", "\n\g<1>", s) return s def login_testing_unauthorized(test_case, username, url, password=None): r = test_case.client.get(url) test_case.assertTrue(r.status_code in (302, 403)) if r.status_code == 302: test_case.assertTrue("/accounts/login" in r['Location']) if not password: password = username + "+password" return test_case.client.login(username=username, password=password) class ReverseLazyTest(django.test.TestCase): def test_redirect_with_lazy_reverse(self): response = self.client.get('/ipr/update/') self.assertRedirects(response, "/ipr/", status_code=301) loaded_fixtures = [] class TestCase(django.test.TestCase): """ Does basically the same as django.test.TestCase, but if the test database has support for transactions, it loads perma_fixtures before the transaction which surrounds every test. This causes the perma_fixtures to stay in the database after the transaction which surrounds each test is rolled back, which lets us load each preload_fixture only once. However, it requires that all the perma_fixtures are consistent with each other and with all regular fixtures across all applications. You could view the perma_fixtures as on_the_fly initial_data for tests. Regular fixtures are re-loaded for each TestCase, as usual. We don't flush the database, as that triggers a re-load of initial_data. """ parser = html5lib.HTMLParser(strict=True) def _fixture_setup(self): global loaded_fixtures if not connections_support_transactions(): if hasattr(self, 'perma_fixtures'): if not hasattr(self, 'fixtures'): self.fixtures = self.perma_fixtures else: self.fixtures += self.perma_fixtures return super(TestCase, self)._fixture_setup() # If the test case has a multi_db=True flag, setup all databases. # Otherwise, just use default. if getattr(self, 'multi_db', False): databases = connections else: databases = [DEFAULT_DB_ALIAS] for db in databases: if hasattr(self, 'perma_fixtures'): fixtures = [ fixture for fixture in self.perma_fixtures if not fixture in loaded_fixtures ] if fixtures: call_command('loaddata', *fixtures, **{ 'verbosity': 0, 'commit': False, 'database': db }) loaded_fixtures += fixtures super(TestCase, self)._fixture_setup() def assertValidHTML(self, data): try: self.parser.parse(data) except Exception as e: raise self.failureException(str(e)) def assertValidHTMLResponse(self, resp): self.assertHttpOK(resp) self.assertTrue(resp['Content-Type'].startswith('text/html')) self.assertValidHTML(resp.content)