Ejemplo n.º 1
0
 def test_GET_random(self):
     r = app.request('/entry/ffff/3456', method='POST')
     r = app.request('/entry/12/qqqq', method='POST')
     r = app.request('/entry/')
     assert_equal(r.status, '200 OK')
     ok_('12 -> qqqq' in r.data or 'ffff -> 3456' in r.data)
     r = app.request('/entry')
     assert_equal(r.status, '200 OK')
     ok_('12 -> qqqq' in r.data or 'ffff -> 3456' in r.data)
Ejemplo n.º 2
0
 def test_POST_and_GET_list(self):
     r = app.request('/entry/ffff/3456', method='POST')
     r = app.request('/entry/12/qqqq', method='POST')
     r = app.request('/entry/zz/zyx', method='POST')
     r = app.request('/entry/az/zyx', method='POST')
     r = app.request('/entry/34/zyx', method='POST')
     r = app.request('/entry/AF/zyx', method='POST')
     r = app.request('/entry/zez/zyx', method='POST')
     r = app.request('/list/0')
     assert_equal(r.status, '200 OK')
     assert_equal(r.data,
                  "ffff -> 3456\n" +
                  "12 -> qqqq\n" +
                  "zz -> zyx\n" +
                  "az -> zyx")
     r = app.request('/list/1')
     assert_equal(r.status, '200 OK')
     assert_equal(r.data,
                  "34 -> zyx\n" +
                  "AF -> zyx\n" +
                  "zez -> zyx")
Ejemplo n.º 3
0
 def test_GET_notfount1(self):
     r = app.request('/entry/fffe')
     assert_equal(r.status, '404 Not Found')
Ejemplo n.º 4
0
 def test_GET_valid1(self):
     r = app.request('/entry/ffff/3456', method='POST')
     r = app.request('/entry/ffff')
     assert_equal(r.status, '200 OK')
     ok_('3456' in r.data)
Ejemplo n.º 5
0
 def test_POST_valid2(self):
     r = app.request('/entry/12/qqqq', method='POST')
     assert_equal(r.status, '200 OK')
Ejemplo n.º 6
0
 def test_POST_keyonly(self):
     r = app.request('/entry/12', method='POST')
     assert_equal(r.status, '400 BAD REQUEST')
Ejemplo n.º 7
0
 def test_POST_valid1(self):
     r = app.request('/entry/ffff/3456', method='POST')
     assert_equal(r.status, '200 OK')