Пример #1
0
 def test_get_empty(self):
     env = {
         'QUERY_STRING': '',
         'REQUEST_METHOD': 'GET',
     }
     self.patches.patch('web.webapi.ctx.env', env)
     coor = webpy._create_coor(Context)()
     fields = coor._read_fields()
     self.assertEqual(0, len(fields))
Пример #2
0
 def test_post_empty(self):
     env = {
         'QUERY_STRING': '',
         'REQUEST_METHOD': 'POST',
         'wsgi.input': StringIO(),
     }
     self.patches.patch('web.webapi.ctx.env', env)
     coor = webpy._create_coor(Context)()
     fields = coor._read_fields()
     self.assertEqual(0, len(fields))
Пример #3
0
 def test_get_with_query_string(self):
     env = {
         'QUERY_STRING': 'a=0',
         'REQUEST_METHOD': 'GET',
     }
     self.patches.patch('web.webapi.ctx.env', env)
     coor = webpy._create_coor(Context)()
     fields = coor._read_fields()
     self.assertEqual(1, len(fields))
     self.assertEqual('0', fields['a'])
Пример #4
0
 def test_post_www_form(self):
     data = 'a=1'
     env = {
         'CONTENT_LENGTH': len(data),
         'CONTENT_TYPE': 'application/x-www-form-urlencoded',
         'QUERY_STRING': '',
         'REQUEST_METHOD': 'POST',
         'wsgi.input': StringIO(data),
     }
     self.patches.patch('web.webapi.ctx.env', env)
     coor = webpy._create_coor(Context)()
     fields = coor._read_fields()
     self.assertEqual(1, len(fields))
     self.assertEqual('1', fields['a'])
Пример #5
0
    def test_post_multipart(self):
        data = '''--------------------------19dc7a5df0647b1a
Content-Disposition: form-data; name="a"

1
--------------------------19dc7a5df0647b1a--'''
        env = {
            'CONTENT_LENGTH': len(data),
            'CONTENT_TYPE': 'multipart/form-data; boundary=------------------------19dc7a5df0647b1a',
            'QUERY_STRING': '',
            'REQUEST_METHOD': 'POST',
            'wsgi.input': StringIO(data),
        }
        self.patches.patch('web.webapi.ctx.env', env)
        coor = webpy._create_coor(Context)()
        fields = coor._read_fields()
        self.assertEqual(1, len(fields))
        self.assertEqual('1', fields['a'])