Michael Merickel
2018-10-06 07b00370dba98fe9177fe9056f48a03646d45277
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import unittest
 
from pyramid import testing
 
 
class TutorialViewTests(unittest.TestCase):
    def setUp(self):
        self.config = testing.setUp()
 
    def tearDown(self):
        testing.tearDown()
 
    def test_home(self):
        from .views import WikiViews
 
        request = testing.DummyRequest()
        inst = WikiViews(request)
        response = inst.wiki_view()
        self.assertEqual(len(response['pages']), 3)
 
 
class TutorialFunctionalTests(unittest.TestCase):
    def setUp(self):
        from tutorial import main
 
        app = main({})
        from webtest import TestApp
 
        self.testapp = TestApp(app)
 
    def tearDown(self):
        testing.tearDown()
 
    def test_home(self):
        res = self.testapp.get('/', status=200)
        self.assertIn(b'<title>Wiki: View</title>', res.body)
 
    def test_add_page(self):
        res = self.testapp.get('/add', status=200)
        self.assertIn(b'<h1>Wiki</h1>', res.body)
 
    def test_edit_page(self):
        res = self.testapp.get('/101/edit', status=200)
        self.assertIn(b'<h1>Wiki</h1>', res.body)
 
    def test_post_wiki(self):
        self.testapp.post('/add', {
            "title": "New Title",
            "body": "<p>New Body</p>",
            "submit": "submit"
        }, status=302)
 
        res = self.testapp.get('/103', status=200)
        self.assertIn(b'<h1>New Title</h1>', res.body)
        self.assertIn(b'<p>New Body</p>', res.body)
 
    def test_edit_wiki(self):
        self.testapp.post('/102/edit', {
            "title": "New Title",
            "body": "<p>New Body</p>",
            "submit": "submit"
        }, status=302)
 
        res = self.testapp.get('/102', status=200)
        self.assertIn(b'<h1>New Title</h1>', res.body)
        self.assertIn(b'<p>New Body</p>', res.body)