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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
# -*- coding: utf-8 -*-
import unittest
import sys, os.path
import bottle
import urllib2
from StringIO import StringIO
import thread
import time
from tools import ServerTestBase
from bottle import tob, touni, tonat
class TestWsgi(ServerTestBase):
''' Tests for WSGI functionality, routing and output casting (decorators) '''
def test_get(self):
""" WSGI: GET routes"""
@bottle.route('/')
def test(): return 'test'
self.assertStatus(404, '/not/found')
self.assertStatus(405, '/', post="var=value")
self.assertBody('test', '/')
def test_post(self):
""" WSGI: POST routes"""
@bottle.route('/', method='POST')
def test(): return 'test'
self.assertStatus(404, '/not/found')
self.assertStatus(405, '/')
self.assertBody('test', '/', post="var=value")
def test_headget(self):
""" WSGI: HEAD routes and GET fallback"""
@bottle.route('/get')
def test(): return 'test'
@bottle.route('/head', method='HEAD')
def test2(): return 'test'
# GET -> HEAD
self.assertStatus(405, '/head')
# HEAD -> HEAD
self.assertStatus(200, '/head', method='HEAD')
self.assertBody('', '/head', method='HEAD')
# HEAD -> GET
self.assertStatus(200, '/get', method='HEAD')
self.assertBody('', '/get', method='HEAD')
def get304(self):
""" 304 responses must not return entity headers """
bad = ('allow', 'content-encoding', 'content-language',
'content-length', 'content-md5', 'content-range',
'content-type', 'last-modified') # + c-location, expires?
for h in bad:
bottle.response.set_header(h, 'foo')
bottle.status = 304
for h, v in bottle.response.headerlist:
self.assertFalse(h.lower() in bad, "Header %s not deleted" % h)
def test_anymethod(self):
self.assertStatus(404, '/any')
@bottle.route('/any', method='ANY')
def test2(): return 'test'
self.assertStatus(200, '/any', method='HEAD')
self.assertBody('test', '/any', method='GET')
self.assertBody('test', '/any', method='POST')
self.assertBody('test', '/any', method='DELETE')
@bottle.route('/any', method='GET')
def test2(): return 'test2'
self.assertBody('test2', '/any', method='GET')
@bottle.route('/any', method='POST')
def test2(): return 'test3'
self.assertBody('test3', '/any', method='POST')
self.assertBody('test', '/any', method='DELETE')
def test_500(self):
""" WSGI: Exceptions within handler code (HTTP 500) """
@bottle.route('/')
def test(): return 1/0
self.assertStatus(500, '/')
def test_500_unicode(self):
@bottle.route('/')
def test(): raise Exception(touni('Unicode äöüß message.'))
self.assertStatus(500, '/')
def test_utf8_url(self):
""" WSGI: Exceptions within handler code (HTTP 500) """
@bottle.route('/my/:string')
def test(string): return string
self.assertBody(tob(u'urf8-öäü'), '/my/urf8-öäü')
def test_utf8_404(self):
self.assertStatus(404, '/not-found/urf8-öäü')
def test_401(self):
""" WSGI: abort(401, '') (HTTP 401) """
@bottle.route('/')
def test(): bottle.abort(401)
self.assertStatus(401,'/')
@bottle.error(401)
def err(e):
bottle.response.status = 200
return str(type(e))
self.assertStatus(200,'/')
self.assertBody("<class 'bottle.HTTPError'>",'/')
def test_303(self):
""" WSGI: redirect (HTTP 303) """
@bottle.route('/')
def test(): bottle.redirect('/yes')
@bottle.route('/one')
def test2(): bottle.redirect('/yes',305)
env = {'SERVER_PROTOCOL':'HTTP/1.1'}
self.assertStatus(303, '/', env=env)
self.assertHeader('Location', 'http://127.0.0.1/yes', '/', env=env)
env = {'SERVER_PROTOCOL':'HTTP/1.0'}
self.assertStatus(302, '/', env=env)
self.assertHeader('Location', 'http://127.0.0.1/yes', '/', env=env)
self.assertStatus(305, '/one', env=env)
self.assertHeader('Location', 'http://127.0.0.1/yes', '/one', env=env)
def test_generator_callback(self):
@bottle.route('/yield')
def test():
bottle.response.headers['Test-Header'] = 'test'
yield 'foo'
@bottle.route('/yield_nothing')
def test2():
yield
bottle.response.headers['Test-Header'] = 'test'
self.assertBody('foo', '/yield')
self.assertHeader('Test-Header', 'test', '/yield')
self.assertBody('', '/yield_nothing')
self.assertHeader('Test-Header', 'test', '/yield_nothing')
def test_cookie(self):
""" WSGI: Cookies """
@bottle.route('/cookie')
def test():
bottle.response.COOKIES['a']="a"
bottle.response.set_cookie('b', 'b')
bottle.response.set_cookie('c', 'c', path='/')
return 'hello'
try:
c = self.urlopen('/cookie')['header'].get_all('Set-Cookie', '')
except:
c = self.urlopen('/cookie')['header'].get('Set-Cookie', '').split(',')
c = [x.strip() for x in c]
self.assertTrue('a=a' in c)
self.assertTrue('b=b' in c)
self.assertTrue('c=c; Path=/' in c)
class TestRouteDecorator(ServerTestBase):
def test_decorators(self):
def foo(): return bottle.request.method
bottle.get('/')(foo)
bottle.post('/')(foo)
bottle.put('/')(foo)
bottle.delete('/')(foo)
for verb in 'GET POST PUT DELETE'.split():
self.assertBody(verb, '/', method=verb)
def test_single_path(self):
@bottle.route('/a')
def test(): return 'ok'
self.assertBody('ok', '/a')
self.assertStatus(404, '/b')
def test_path_list(self):
@bottle.route(['/a','/b'])
def test(): return 'ok'
self.assertBody('ok', '/a')
self.assertBody('ok', '/b')
self.assertStatus(404, '/c')
def test_no_path(self):
@bottle.route()
def test(x=5): return str(x)
self.assertBody('5', '/test')
self.assertBody('6', '/test/6')
def test_no_params_at_all(self):
@bottle.route
def test(x=5): return str(x)
self.assertBody('5', '/test')
self.assertBody('6', '/test/6')
def test_method(self):
@bottle.route(method='gEt')
def test(): return 'ok'
self.assertBody('ok', '/test', method='GET')
self.assertStatus(200, '/test', method='HEAD')
self.assertStatus(405, '/test', method='PUT')
def test_method_list(self):
@bottle.route(method=['GET','post'])
def test(): return 'ok'
self.assertBody('ok', '/test', method='GET')
self.assertBody('ok', '/test', method='POST')
self.assertStatus(405, '/test', method='PUT')
def test_apply(self):
def revdec(func):
def wrapper(*a, **ka):
return reversed(func(*a, **ka))
return wrapper
@bottle.route('/nodec')
@bottle.route('/dec', apply=revdec)
def test(): return '1', '2'
self.assertBody('21', '/dec')
self.assertBody('12', '/nodec')
def test_apply_list(self):
def revdec(func):
def wrapper(*a, **ka):
return reversed(func(*a, **ka))
return wrapper
def titledec(func):
def wrapper(*a, **ka):
return ''.join(func(*a, **ka)).title()
return wrapper
@bottle.route('/revtitle', apply=[revdec, titledec])
@bottle.route('/titlerev', apply=[titledec, revdec])
def test(): return 'a', 'b', 'c'
self.assertBody('cbA', '/revtitle')
self.assertBody('Cba', '/titlerev')
def test_hooks(self):
@bottle.route()
def test():
return bottle.request.environ.get('hooktest','nohooks')
@bottle.hook('before_request')
def hook():
bottle.request.environ['hooktest'] = 'before'
@bottle.hook('after_request')
def hook():
bottle.response.headers['X-Hook'] = 'after'
self.assertBody('before', '/test')
self.assertHeader('X-Hook', 'after', '/test')
def test_template(self):
@bottle.route(template='test {{a}} {{b}}')
def test(): return dict(a=5, b=6)
self.assertBody('test 5 6', '/test')
def test_template_opts(self):
@bottle.route(template='test {{a}} {{b}}', template_opts={'b': 6})
def test(): return dict(a=5)
self.assertBody('test 5 6', '/test')
def test_name(self):
@bottle.route(name='foo')
def test(x=5): return 'ok'
self.assertEquals('/test/6', bottle.url('foo', x=6))
def test_callback(self):
def test(x=5): return str(x)
rv = bottle.route(callback=test)
self.assertBody('5', '/test')
self.assertBody('6', '/test/6')
self.assertEqual(rv, test)
class TestDecorators(ServerTestBase):
''' Tests Decorators '''
def test_view(self):
""" WSGI: Test view-decorator (should override autojson) """
@bottle.route('/tpl')
@bottle.view('stpl_t2main')
def test():
return dict(content='1234')
result = '+base+\n+main+\n!1234!\n+include+\n-main-\n+include+\n-base-\n'
self.assertHeader('Content-Type', 'text/html; charset=UTF-8', '/tpl')
self.assertBody(result, '/tpl')
def test_view_error(self):
""" WSGI: Test if view-decorator reacts on non-dict return values correctly."""
@bottle.route('/tpl')
@bottle.view('stpl_t2main')
def test():
return bottle.HTTPError(401, 'The cake is a lie!')
self.assertInBody('The cake is a lie!', '/tpl')
self.assertInBody('401: Unauthorized', '/tpl')
self.assertStatus(401, '/tpl')
def test_validate(self):
""" WSGI: Test validate-decorator"""
@bottle.route('/:var')
@bottle.route('/')
@bottle.validate(var=int)
def test(var): return 'x' * var
self.assertStatus(403,'/noint')
self.assertStatus(403,'/')
self.assertStatus(200,'/5')
self.assertBody('xxx', '/3')
def test_truncate_body(self):
""" WSGI: Some HTTP status codes must not be used with a response-body """
@bottle.route('/test/:code')
def test(code):
bottle.response.status = int(code)
return 'Some body content'
self.assertBody('Some body content', '/test/200')
self.assertBody('', '/test/100')
self.assertBody('', '/test/101')
self.assertBody('', '/test/204')
self.assertBody('', '/test/304')
def test_routebuild(self):
""" WSGI: Test route builder """
def foo(): pass
bottle.route('/a/:b/c', name='named')(foo)
bottle.request.environ['SCRIPT_NAME'] = ''
self.assertEqual('/a/xxx/c', bottle.url('named', b='xxx'))
self.assertEqual('/a/xxx/c', bottle.app().get_url('named', b='xxx'))
bottle.request.environ['SCRIPT_NAME'] = '/app'
self.assertEqual('/app/a/xxx/c', bottle.url('named', b='xxx'))
bottle.request.environ['SCRIPT_NAME'] = '/app/'
self.assertEqual('/app/a/xxx/c', bottle.url('named', b='xxx'))
bottle.request.environ['SCRIPT_NAME'] = 'app/'
self.assertEqual('/app/a/xxx/c', bottle.url('named', b='xxx'))
def test_autoroute(self):
app = bottle.Bottle()
def a(): pass
def b(x): pass
def c(x, y): pass
def d(x, y=5): pass
def e(x=5, y=6): pass
self.assertEqual(['/a'],list(bottle.yieldroutes(a)))
self.assertEqual(['/b/:x'],list(bottle.yieldroutes(b)))
self.assertEqual(['/c/:x/:y'],list(bottle.yieldroutes(c)))
self.assertEqual(['/d/:x','/d/:x/:y'],list(bottle.yieldroutes(d)))
self.assertEqual(['/e','/e/:x','/e/:x/:y'],list(bottle.yieldroutes(e)))
class TestAppShortcuts(ServerTestBase):
def setUp(self):
ServerTestBase.setUp(self)
def assertWraps(self, test, other):
self.assertEqual(test.__doc__, other.__doc__)
def test_module_shortcuts(self):
for name in '''route get post put delete error mount
hook install uninstall'''.split():
short = getattr(bottle, name)
original = getattr(bottle.app(), name)
self.assertWraps(short, original)
def test_module_shortcuts_with_different_name(self):
self.assertWraps(bottle.url, bottle.app().get_url)
if __name__ == '__main__': #pragma: no cover
unittest.main()
|