summaryrefslogtreecommitdiff
path: root/public/tests.py
blob: e8d403a508de01dcc37b5d47836bc4e31d8fc32e (plain)
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 django.test import TestCase


class PublicTest(TestCase):

    def test_index(self):
        response = self.client.get('/')
        self.assertEqual(response.status_code, 200)

    def test_about(self):
        response = self.client.get('/about/')
        self.assertEqual(response.status_code, 200)

    def test_art(self):
        response = self.client.get('/art/')
        self.assertEqual(response.status_code, 301)
        self.assertTrue(response['Location'].startswith(
                         'https://projects.parabola.nu/artwork.git/'))

    def test_svn(self):
        response = self.client.get('/svn/')
        # Parabola has no SVN.
        self.assertEqual(response.status_code, 404)

    def test_developers_old(self):
        response = self.client.get('/developers/')
        self.assertEqual(response.status_code, 301)
        self.assertTrue(response['Location'].endswith('/hackers/'))

    def test_hackers(self):
        response = self.client.get('/hackers/')
        self.assertEqual(response.status_code, 301)

    def test_fellows_old(self):
        response = self.client.get('/fellows/')
        self.assertEqual(response.status_code, 301)

    def test_donate(self):
        response = self.client.get('/donate/')
        self.assertEqual(response.status_code, 301)
        self.assertEqual(response['Location'],
                         'https://wiki.parabola.nu/Donations')

    def test_download(self):
        response = self.client.get('/download/')
        self.assertEqual(response.status_code, 301)
        self.assertEqual(response['Location'],
                         'https://wiki.parabola.nu/Get_Parabola')