website/conservancy/tests.py

64 lines
1.8 KiB
Python
Raw Permalink Normal View History

import datetime
from django.conf import settings
from django.http import Http404
2024-03-13 03:26:01 +00:00
import pytest
2024-05-10 01:39:41 +00:00
from pytest_django.asserts import assertContains
from . import views
from conservancy.fundgoal.models import FundraisingGoal
2024-03-13 03:26:01 +00:00
def create_fundraising_goal():
FundraisingGoal.objects.create(
fundraiser_code_name='cy2023-end-year-match',
fundraiser_goal_amount=0,
fundraiser_so_far_amount=0,
fundraiser_donation_count=0,
fundraiser_donation_count_disclose_threshold=0,
fundraiser_endtime=datetime.datetime(2000, 1, 1)
)
# Simple smoke tests to make sure the essential pages on the site are working.
get_200_ok_test_data = [
'/',
'/news/',
'/blog/',
'/sustainer/',
]
@pytest.mark.parametrize('url', get_200_ok_test_data)
@pytest.mark.django_db
def test_get_200_ok(url, client):
response = client.get(url)
assert response.status_code == 200
2024-03-13 03:26:01 +00:00
# Tests for the template/file content serving functionality.
2024-03-13 03:26:01 +00:00
@pytest.mark.django_db
def test_about_page_served(rf):
create_fundraising_goal()
request = rf.get('/about/')
2024-05-10 01:39:41 +00:00
response = views.content(request)
2024-03-13 03:26:01 +00:00
assertContains(response, 'Conservancy is a nonprofit organization')
def test_annual_report_file_served(rf):
2024-05-10 01:39:41 +00:00
request = rf.get('/projects/apply/ConservancyFSATemplate.pdf')
response = views.content(request)
2024-03-13 03:26:01 +00:00
assert response.headers['Content-Type'] == 'application/pdf'
def test_path_traversal_404s(rf):
2024-03-20 05:23:36 +00:00
# Will work in development only
2024-05-10 01:39:41 +00:00
assert (settings.BASE_DIR / 'content' / 'about/../../../conservancy-website.sqlite3').exists()
2024-03-20 05:23:36 +00:00
request = rf.get('/about/../../../conservancy-website.sqlite3')
2024-03-13 03:26:01 +00:00
with pytest.raises(Http404):
2024-05-10 01:39:41 +00:00
views.content(request)
2024-06-06 08:06:44 +00:00
def test_long_path_404s(rf):
request = rf.get('x' * 1000)
with pytest.raises(Http404):
views.content(request)