~j5-dev/+junk/cherrypy3-3.2.0rc1

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
67
68
69
70
71
72
73
74
75
76
77
from cherrypy.test import test, helper
test.prefer_parent_path()

import cherrypy

from cherrypy.lib.jsontools import json
if json is None:
    print "skipped (simplejson not found) "
else:
    def setup_server():
        class Root(object):
            def plain(self):
                return 'hello'
            plain.exposed = True

            def json_string(self):
                return 'hello'
            json_string.exposed = True
            json_string._cp_config = {'tools.json_out.on': True}

            def json_list(self):
                return ['a', 'b', 42]
            json_list.exposed = True
            json_list._cp_config = {'tools.json_out.on': True}

            def json_dict(self):
                return {'answer': 42}
            json_dict.exposed = True
            json_dict._cp_config = {'tools.json_out.on': True}

            def json_post(self):
                if cherrypy.request.json == [13, 'c']:
                    return 'ok'
                else:
                    return 'nok'
            json_post.exposed = True
            json_post._cp_config = {'tools.json_in.on': True}

        root = Root()
        cherrypy.tree.mount(root)

    class JsonTest(helper.CPWebCase):
        def test_json_output(self):
            self.getPage("/plain")
            self.assertBody("hello")

            self.getPage("/json_string")
            self.assertBody('"hello"')

            self.getPage("/json_list")
            self.assertBody('["a", "b", 42]')

            self.getPage("/json_dict")
            self.assertBody('{"answer": 42}')

        def test_json_input(self):
            body = '[13, "c"]'
            headers = [('Content-Type', 'application/json'),
                       ('Content-Length', str(len(body)))]
            self.getPage("/json_post", method="POST", headers=headers, body=body)
            self.assertBody('ok')
            
            body = '[13, "c"]'
            headers = [('Content-Type', 'text/plain'),
                       ('Content-Length', str(len(body)))]
            self.getPage("/json_post", method="POST", headers=headers, body=body)
            self.assertStatus(415, 'Expected an application/json content type')
            
            body = '[13, -]'
            headers = [('Content-Type', 'application/json'),
                       ('Content-Length', str(len(body)))]
            self.getPage("/json_post", method="POST", headers=headers, body=body)
            self.assertStatus(400, 'Invalid JSON document')

if __name__ == '__main__':
    helper.testmain()