2020-06-03 21:57:05 +01:00
|
|
|
"""
|
2020-06-28 14:42:26 +01:00
|
|
|
We are using unittest for troggle.
|
|
|
|
|
2021-03-28 23:48:36 +01:00
|
|
|
Note that the database has not been parsed from the source files when these tests are run,
|
|
|
|
so any path that relies on data being in the database will fail.
|
2020-06-03 21:57:05 +01:00
|
|
|
|
2021-03-28 23:48:36 +01:00
|
|
|
The simple redirections to files which exist, e.g. in
|
|
|
|
/expoweb/
|
|
|
|
/expofiles/
|
|
|
|
/expofiles/documents/
|
|
|
|
etc. will test fine.
|
|
|
|
|
|
|
|
But paths like this:
|
|
|
|
/survey_scans/
|
|
|
|
which rely on database resolution will fail unless a fixture has been set up for
|
|
|
|
them.
|
2020-06-03 21:57:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
https://docs.djangoproject.com/en/3.0/topics/testing/tools/
|
|
|
|
"""
|
2020-07-19 01:23:07 +01:00
|
|
|
import unittest
|
|
|
|
import re
|
|
|
|
from django.test import TestCase, SimpleTestCase, Client
|
2020-06-03 21:57:05 +01:00
|
|
|
|
|
|
|
class SimpleTest(SimpleTestCase):
|
|
|
|
def test_basic_addition(self):
|
|
|
|
"""
|
|
|
|
Tests that 1 + 1 always equals 2.
|
|
|
|
"""
|
|
|
|
self.assertEqual(1 + 1, 2)
|
2021-03-28 23:48:36 +01:00
|
|
|
def test_test_setting(self):
|
|
|
|
from django.conf import settings
|
|
|
|
self.assertEqual(settings.EMAIL_BACKEND, 'django.core.mail.backends.locmem.EmailBackend')
|
2020-06-03 21:57:05 +01:00
|
|
|
def test_import_TroggleModel(self):
|
|
|
|
from troggle.core.models import TroggleModel
|
|
|
|
def test_import_Cave(self):
|
|
|
|
from troggle.core.models_caves import Cave
|
|
|
|
def test_import_parsers_surveys(self):
|
|
|
|
from PIL import Image
|
|
|
|
from utils import save_carefully
|
|
|
|
from functools import reduce
|
|
|
|
def test_import_parsers_survex(self):
|
|
|
|
import troggle.settings as settings
|
|
|
|
import troggle.core.models as models
|
|
|
|
import troggle.core.models_caves as models_caves
|
|
|
|
import troggle.core.models_survex as models_survex
|
|
|
|
from troggle.parsers.people import GetPersonExpeditionNameLookup
|
|
|
|
from troggle.core.views_caves import MapLocations
|
|
|
|
def test_import_parsers_QMs(self):
|
|
|
|
from troggle.core.models_caves import QM, Cave, LogbookEntry
|
|
|
|
from utils import save_carefully
|
|
|
|
def test_import_parsers_people(self):
|
|
|
|
from html.parser import HTMLParser
|
|
|
|
from unidecode import unidecode
|
|
|
|
def test_import_parsers_logbooks(self):
|
|
|
|
from django.template.defaultfilters import slugify
|
|
|
|
from django.utils.timezone import get_current_timezone, make_aware
|
|
|
|
from troggle.core.models import DataIssue, Expedition
|
2020-07-23 02:16:08 +01:00
|
|
|
from troggle.core.models_caves import Cave, LogbookEntry, PersonTrip
|
2020-06-03 21:57:05 +01:00
|
|
|
from parsers.people import GetPersonExpeditionNameLookup
|
|
|
|
def test_import_core_views_caves(self):
|
|
|
|
from django.http import HttpResponse, HttpResponseRedirect
|
|
|
|
from django.shortcuts import get_object_or_404, render
|
|
|
|
from troggle.core.models import Expedition
|
2020-07-23 01:24:06 +01:00
|
|
|
from troggle.core.models_caves import CaveSlug, Cave, CaveAndEntrance, QM, EntranceSlug, Entrance, Area, SurvexStation
|
2020-06-03 21:57:05 +01:00
|
|
|
from troggle.core.forms import CaveForm, CaveAndEntranceFormSet, VersionControlCommentForm, EntranceForm, EntranceLetterForm
|
|
|
|
from troggle.helper import login_required_if_public
|
2020-07-19 01:23:07 +01:00
|
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
from django.conf import settings
|
2020-06-06 22:51:55 +01:00
|
|
|
def test_import_parses_mix(self):
|
2020-06-28 14:42:26 +01:00
|
|
|
from troggle.parsers.logbooks import GetCaveLookup
|
2020-06-06 22:51:55 +01:00
|
|
|
import troggle.settings
|
2021-03-30 21:05:27 +01:00
|
|
|
#import troggle.expopages.models
|
2020-06-06 22:51:55 +01:00
|
|
|
import troggle.logbooksdump
|
2020-06-16 16:07:36 +01:00
|
|
|
import troggle.parsers.caves
|
2020-06-06 22:51:55 +01:00
|
|
|
import troggle.parsers.people
|
|
|
|
import troggle.parsers.surveys
|
|
|
|
import troggle.parsers.logbooks
|
|
|
|
import troggle.parsers.QMs
|
2020-06-16 16:07:36 +01:00
|
|
|
import troggle.parsers.survex
|
|
|
|
def test_import_imports(self):
|
|
|
|
from django.core import management
|
|
|
|
from django.db import connection, close_old_connections, connections
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from django.http import HttpResponse
|
2020-06-18 21:50:16 +01:00
|
|
|
from django.urls import reverse
|
2020-06-03 21:57:05 +01:00
|
|
|
|
2021-03-21 01:33:59 +00:00
|
|
|
def test_import_urls(self):
|
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls import url, include
|
|
|
|
from django.views.generic.base import RedirectView
|
|
|
|
from django.views.generic.edit import UpdateView
|
|
|
|
from django.views.generic.list import ListView
|
|
|
|
from django.contrib import admin
|
|
|
|
from django.urls import reverse, resolve
|
|
|
|
|
|
|
|
|
2020-07-19 01:23:07 +01:00
|
|
|
#class SimplePageTest(unittest.TestCase):
|
|
|
|
class PageTests(TestCase):
|
|
|
|
@classmethod
|
|
|
|
def setUpTestData(cls):
|
|
|
|
# Set up data for the whole TestCase
|
|
|
|
#cls.foo = Foo.objects.create(bar="Test")
|
|
|
|
# Some test using self.foo in tests below..
|
|
|
|
# read in some SQL ?
|
|
|
|
pass
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
# Every test needs a client.
|
|
|
|
self.client = Client()
|
|
|
|
|
2021-03-28 23:48:36 +01:00
|
|
|
|
2020-07-19 01:23:07 +01:00
|
|
|
def test_page_admin(self):
|
2021-03-28 23:48:36 +01:00
|
|
|
# see the login page
|
2020-07-19 01:23:07 +01:00
|
|
|
response = self.client.get('/admin/login/')
|
|
|
|
content = response.content.decode()
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
h1 = re.search(r'<h1 id="site-name">Troggle administration</h1>', content)
|
|
|
|
|
2020-07-29 22:54:09 +01:00
|
|
|
def test_page_admindocs(self):
|
2021-03-29 02:06:19 +01:00
|
|
|
response = self.client.get('/admin/login/models/')
|
2020-07-29 22:54:09 +01:00
|
|
|
content = response.content.decode()
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
h1 = re.search(r'<h1>Model documentation</h1>', content)
|
|
|
|
|
2021-03-28 23:48:36 +01:00
|
|
|
def test_page_admindocs_exped(self):
|
|
|
|
# Get redirected to login page
|
|
|
|
response = self.client.get('/admin/doc/models/core.expedition/')
|
|
|
|
content = response.content.decode()
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
h1 = re.search(r'<td>logbookentry_set.all</td>', content)
|
|
|
|
|
|
|
|
def test_page_expofiles_dir(self):
|
|
|
|
# Flat file tests.
|
|
|
|
response = self.client.get('/expofiles/')
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
content = response.content.decode()
|
|
|
|
for ph in [ r'a href="/expofiles/geotiffsurveys">/geotiffsurveys/',
|
|
|
|
r'<a href="/expofiles/photos">/photos/',
|
|
|
|
r'<a href="/expofiles/surveyscans">/surveyscans' ]:
|
|
|
|
phmatch = re.search(ph, content)
|
|
|
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
|
|
|
|
|
|
|
def test_page_survey_scans_dir(self):
|
|
|
|
# Flat file tests.
|
|
|
|
response = self.client.get('/expofiles/surveyscans')
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
content = response.content.decode()
|
|
|
|
for ph in [ r'<a href="/expofiles/surveyscans/2004">/2004/',
|
|
|
|
r'<a href="/expofiles/surveyscans/1989LUSS">/1989LUSS/',
|
|
|
|
r'<a href="/expofiles/surveyscans/2018">/2018' ]:
|
|
|
|
phmatch = re.search(ph, content)
|
|
|
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
2020-07-29 22:54:09 +01:00
|
|
|
|
2020-07-19 01:23:07 +01:00
|
|
|
def test_page_folk(self):
|
|
|
|
# This page is separately generated, so it has the full data content
|
|
|
|
response = self.client.get('/folk/')
|
2021-03-28 23:48:36 +01:00
|
|
|
content = response.content.decode()
|
2020-07-19 01:23:07 +01:00
|
|
|
self.assertEqual(response.status_code, 200)
|
2021-03-28 23:48:36 +01:00
|
|
|
for ph in [ r'involves some active contribution',
|
|
|
|
r'Naomi Griffiths',
|
|
|
|
r'Gail Smith',
|
|
|
|
r'Phil Wigglesworth',
|
|
|
|
r'A more obscure record of longest gap between expos has' ]:
|
|
|
|
phmatch = re.search(ph, content)
|
|
|
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
|
|
|
|
|
|
|
def test_page_expofile_document_loeffler_pdf(self):
|
2020-07-19 01:23:07 +01:00
|
|
|
# Flat file tests.
|
|
|
|
response = self.client.get('/expofiles/documents/surveying/tunnel-loefflerCP35-only.pdf')
|
2021-03-24 17:32:45 +00:00
|
|
|
if response.status_code != 200:
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
if response.status_code != 302:
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(len(response.content), 2299270) # fails, but is working manually!
|
|
|
|
|
2021-03-28 23:48:36 +01:00
|
|
|
def test_page_expofile_document_rope_pdf(self):
|
|
|
|
# Flat file tests.
|
|
|
|
response = self.client.get('/expofiles/documents/rope-age-agm-2019.pdf')
|
|
|
|
if response.status_code != 200:
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
if response.status_code != 302:
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(len(response.content), 76197) # fails, but is working manually!
|
|
|
|
|
|
|
|
def test_page_expofile_document_png(self):
|
|
|
|
# Flat file tests.
|
|
|
|
response = self.client.get('/expofiles/documents/callout-2012.png')
|
|
|
|
if response.status_code != 200:
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
if response.status_code != 302:
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(len(response.content), 69921) # fails, but is working manually!
|
|
|
|
|
2021-03-24 17:32:45 +00:00
|
|
|
def test_page_expofile_writeup(self):
|
|
|
|
# Flat file tests.
|
2020-07-19 01:23:07 +01:00
|
|
|
response = self.client.get('/expofiles/writeups/1982/logbook1982.pdf')
|
2021-03-24 17:32:45 +00:00
|
|
|
if response.status_code != 200:
|
|
|
|
self.assertEqual(response.status_code, 302)
|
|
|
|
if response.status_code != 302:
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
self.assertEqual(len(response.content), 12915413) # fails, but is working manually!
|
2020-07-19 01:23:07 +01:00
|
|
|
|
2021-03-28 23:48:36 +01:00
|
|
|
def test_page_survey_scans_empty(self):
|
2020-07-19 01:23:07 +01:00
|
|
|
# this gets an empty page as the database has not been loaded
|
|
|
|
response = self.client.get('/survey_scans/')
|
|
|
|
self.assertEqual(response.status_code, 200)
|
2021-03-28 23:48:36 +01:00
|
|
|
content = response.content.decode()
|
|
|
|
ph = r'contains the scanned original in-cave survey notes and sketches'
|
|
|
|
phmatch = re.search(ph, content)
|
|
|
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
|
|
|
|
|
|
|
def test_page_tunneldataraw_empty(self):
|
|
|
|
# this gets an empty page as the database has not been loaded
|
|
|
|
response = self.client.get('/tunneldataraw/')
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
content = response.content.decode()
|
|
|
|
ph = r'<h1>Page not found tunneldataraw/</h1>'
|
|
|
|
phmatch = re.search(ph, content)
|
|
|
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
|
|
|
|
|
|
|
def test_not_found_survexfile_cave(self):
|
|
|
|
response = self.client.get('/survexfile/not_a_real_cave_number')
|
|
|
|
self.assertEqual(response.status_code, 200)
|
|
|
|
content = response.content.decode()
|
|
|
|
ph = r'Cave not found in database'
|
|
|
|
phmatch = re.search(ph, content)
|
|
|
|
self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
|
|
|
|
|
|
|
|
|
|
|
# these need a fixture to load the datbase before they will pass
|
|
|
|
# we also need tests for invalid queries to check that error pages are right
|
|
|
|
|
|
|
|
# def test_page_survey_scans_khplan2_png(self):
|
|
|
|
# # this has an error as the database has not been loaded yet in the tests
|
|
|
|
# response = self.client.get('/survey_scans/smkhs/khplan2.png')
|
|
|
|
# if response.status_code != 200:
|
|
|
|
# self.assertEqual(response.status_code, 302)
|
|
|
|
# if response.status_code != 302:
|
|
|
|
# self.assertEqual(response.status_code, 200)
|
|
|
|
# self.assertEqual(len(response.content), 823304) # fails, but is working manually!
|
|
|
|
|
|
|
|
# def test_page_tunneldataraw_107sketch_xml(self):
|
|
|
|
# # this has an error as the database has not been loaded yet in the tests
|
|
|
|
# response = self.client.get('/tunneldataraw/107/107sketch-v2.xml')
|
|
|
|
# if response.status_code != 200:
|
|
|
|
# self.assertEqual(response.status_code, 302)
|
|
|
|
# if response.status_code != 302:
|
|
|
|
# self.assertEqual(response.status_code, 200)
|
|
|
|
# content = response.content.decode()
|
|
|
|
# for ph in [ r'tunneldate="2014-08-21 11:34:00"',
|
|
|
|
# r'<sketchsubset subname="Caves of the Loser Plateau"/>',
|
|
|
|
# r'sfsketch="ollyjen107drawings',
|
|
|
|
# r'sfsketch="surveyscans/2014/2014#01',
|
|
|
|
# r'aa-js-plan.png"' ]:
|
|
|
|
# phmatch = re.search(ph, content)
|
|
|
|
# self.assertIsNotNone(phmatch, "Failed to find expected text: '" + ph +"'")
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-07-29 22:54:09 +01:00
|
|
|
# database not loaded yet:
|
2020-07-19 01:23:07 +01:00
|
|
|
#response = self.client.get('/survey_scans/1991surveybook/page0002.png')
|
|
|
|
#response = self.client.get('/survey_scans/1991surveybook/')
|
|
|
|
#content = response.content.decode()
|
|
|
|
#print(content)
|
|
|
|
#png93 = re.search(r'/page0093.png">page0093.png</a></td>', content)
|
|
|
|
|
|
|
|
|
2020-06-03 21:57:05 +01:00
|
|
|
|