Remove ssify.
[wolnelektury.git] / src / catalogue / tests / test_visit.py
1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 #
5 from catalogue import models
6 from catalogue.test_utils import BookInfoStub, PersonStub, WLTestCase, info_args
7 from django.core.files.base import ContentFile
8
9
10 class VisitTest(WLTestCase):
11     """Simply create some objects and visit some views."""
12
13     def setUp(self):
14         WLTestCase.setUp(self)
15         author = PersonStub(("Jane",), "Doe")
16         book_info = BookInfoStub(author=author, genre="Sielanka",
17             epoch='Epoch', kind="Kind", **info_args(u"A book"))
18         self.book = models.Book.from_text_and_meta(ContentFile('''
19             <utwor>
20             <opowiadanie>
21                 <akap>
22                     <begin id="b1" />
23                     <motyw id="m1">Sielanka</motyw>
24                     Test
25                     <end id="e1" />
26                 </akap>
27             </opowiadanie>
28             </utwor>
29             '''), book_info)
30         self.collection = models.Collection.objects.create(
31             title='Biblioteczka Boya', slug='boy', book_slugs='a-book')
32
33     def test_visit_urls(self):
34         """ book description should return authors, ancestors, book """
35         url_map = {
36             200: [
37                 '',
38                 'lektury/',
39                 'lektury/boy/',
40                 'nowe/',
41                 'lektura/a-book/',
42                 'lektura/a-book.html',
43                 'lektura/a-book/motyw/sielanka/',
44                 'motyw/sielanka/',
45                 'sielanka/',
46                 'autor/jane-doe/',
47                 'daisy/',
48                 # 'autor/jane-doe/gatunek/genre/',
49                 # 'autor/jane-doe/gatunek/genre/motyw/sielanka/',
50                 ],
51             404: [
52                 'lektury/nonexistent/',  # Nonexistent Collection.
53                 'lektura/nonexistent/',  # Nonexistent Book.
54                 'lektura/nonexistent.html',  # Nonexistent Book's HTML.
55                 'lektura/nonexistent/motyw/sielanka/',  # Nonexistent Book's theme.
56                 'lektura/a-book/motyw/nonexistent/',  # Nonexistent theme in a Book.
57                 'autor/nonexistent/',  # Nonexistent author.
58                 'motyw/nonexistent/',  # Nonexistent theme.
59                 'zh.json',  # Nonexistent language.
60                 ]
61             }
62         prefix = '/katalog/'
63         for expected_status, urls in url_map.items():
64             for url in urls:
65                 status = self.client.get(prefix + url).status_code
66                 self.assertEqual(
67                     status, expected_status,
68                     "Wrong status code for '%s'. Expected %d, got %d." % (prefix + url, expected_status, status))