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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
|
from http import cookiejar as http_cookiejar
from webob import Request
from webob import Response
from webtest.compat import to_bytes
from collections import OrderedDict
from webtest.debugapp import debug_app
from webtest import http
from tests.compat import unittest
import os
from unittest import mock
import webtest
class TestApp(unittest.TestCase):
def setUp(self):
self.app = webtest.TestApp(debug_app)
def test_pytest_collection_disabled(self):
self.assertFalse(webtest.TestApp.__test__)
def test_encode_multipart_relative_to(self):
app = webtest.TestApp(debug_app,
relative_to=os.path.dirname(__file__))
data = app.encode_multipart(
[], [('file', 'html%s404.html' % os.sep)])
self.assertIn(to_bytes('404.html'), data[-1])
def test_encode_multipart(self):
data = self.app.encode_multipart(
[], [('file', 'data.txt', b'data')])
self.assertIn(to_bytes('data.txt'), data[-1])
data = self.app.encode_multipart(
[], [(b'file', b'data.txt', b'data')])
self.assertIn(to_bytes('data.txt'), data[-1])
data = self.app.encode_multipart(
[('key', 'value')], [])
self.assertIn(to_bytes('name="key"'), data[-1])
data = self.app.encode_multipart(
[(b'key', b'value')], [])
self.assertIn(to_bytes('name="key"'), data[-1])
def test_encode_multipart_content_type(self):
data = self.app.encode_multipart(
[], [('file', 'data.txt', b'data',
'text/x-custom-mime-type')])
self.assertIn(to_bytes('Content-Type: text/x-custom-mime-type'),
data[-1])
data = self.app.encode_multipart(
[('file', webtest.Upload('data.txt', b'data',
'text/x-custom-mime-type'))], [])
self.assertIn(to_bytes('Content-Type: text/x-custom-mime-type'),
data[-1])
def test_get_params(self):
resp = self.app.get('/', 'a=b')
resp.mustcontain('a=b')
resp = self.app.get('/?a=b', dict(c='d'))
resp.mustcontain('a=b', 'c=d')
resp = self.app.get('/?a=b&c=d', dict(e='f'))
resp.mustcontain('a=b', 'c=d', 'e=f')
def test_request_with_testrequest(self):
req = webtest.TestRequest.blank('/')
resp = self.app.request(req, method='POST')
resp.charset = 'ascii'
assert 'REQUEST_METHOD: POST' in resp.text
def test_patch(self):
resp = self.app.patch('/')
self.assertIn('PATCH', resp)
resp = self.app.patch('/', xhr=True)
self.assertIn('PATCH', resp)
def test_custom_headers(self):
resp = self.app.post('/', headers={'Accept': 'text/plain'})
resp.charset = 'ascii'
assert 'HTTP_ACCEPT: text/plain' in resp.text
class TestStatus(unittest.TestCase):
def setUp(self):
self.app = webtest.TestApp(debug_app)
def check_status(self, status, awaiting_status=None):
resp = Response()
resp.request = Request.blank('/')
resp.status = status
return self.app._check_status(awaiting_status, resp)
def test_check_status_asterisk(self):
self.assertEqual(self.check_status('200 Ok', '*'), None)
def test_check_status_almost_asterisk(self):
self.assertEqual(self.check_status('200 Ok', '2*'), None)
def test_check_status_tuple(self):
self.assertEqual(self.check_status('200 Ok', (200,)), None)
self.assertRaises(webtest.AppError,
self.check_status, '200 Ok', (400,))
def test_check_status_none(self):
self.assertEqual(self.check_status('200 Ok', None), None)
self.assertRaises(webtest.AppError, self.check_status, '400 Ok')
def test_check_status_with_custom_reason(self):
self.assertEqual(self.check_status('200 Ok', '200 Ok'), None)
self.assertRaises(webtest.AppError,
self.check_status, '200 Ok', '200 Good Response')
self.assertRaises(webtest.AppError,
self.check_status, '200 Ok', '400 Bad Request')
class TestParserFeature(unittest.TestCase):
def test_parser_features(self):
app = webtest.TestApp(debug_app, parser_features='custom')
self.assertEqual(app.RequestClass.ResponseClass.parser_features,
'custom')
class TestAppError(unittest.TestCase):
def test_app_error(self):
resp = Response(to_bytes('blah'))
err = webtest.AppError('message %s', resp)
self.assertEqual(err.args, ('message blah',))
def test_app_error_with_bytes_message(self):
resp = Response('\xe9'.encode('utf8'))
resp.charset = 'utf8'
err = webtest.AppError(to_bytes('message %s'), resp)
self.assertEqual(err.args, ('message \xe9',))
def test_app_error_with_unicode(self):
err = webtest.AppError('messag\xe9 %s', '\xe9')
self.assertEqual(err.args, ('messag\xe9 \xe9',))
def test_app_error_misc(self):
resp = Response('\xe9'.encode('utf8'))
resp.charset = ''
# dont check the output. just make sure it doesn't fail
webtest.AppError(to_bytes('message %s'), resp)
webtest.AppError('messag\xe9 %s', b'\xe9')
class TestPasteVariables(unittest.TestCase):
def call_FUT(self, **kwargs):
def application(environ, start_response):
resp = Response()
environ['paste.testing_variables'].update(kwargs)
return resp(environ, start_response)
return webtest.TestApp(application)
def test_paste_testing_variables_raises(self):
app = self.call_FUT(body='1')
req = Request.blank('/')
self.assertRaises(ValueError, app.do_request, req, '*', False)
def test_paste_testing_variables(self):
app = self.call_FUT(check='1')
req = Request.blank('/')
resp = app.do_request(req, '*', False)
self.assertEqual(resp.check, '1')
class TestCookies(unittest.TestCase):
def test_supports_providing_cookiejar(self):
cookiejar = http_cookiejar.CookieJar()
app = webtest.TestApp(debug_app, cookiejar=cookiejar)
self.assertIs(cookiejar, app.cookiejar)
def test_set_cookie(self):
def cookie_app(environ, start_response):
req = Request(environ)
self.assertEqual(req.cookies['foo'], 'bar')
self.assertEqual(req.cookies['fizz'], ';bar=baz')
status = to_bytes("200 OK")
body = ''
headers = [
('Content-Type', 'text/html'),
('Content-Length', str(len(body))),
]
start_response(status, headers)
return [to_bytes(body)]
app = webtest.TestApp(cookie_app)
app.set_cookie('foo', 'bar')
app.set_cookie('fizz', ';bar=baz') # Make sure we're escaping.
app.get('/')
app.reset()
app = webtest.TestApp(cookie_app,
extra_environ={'HTTP_HOST': 'testserver'})
app.set_cookie('foo', 'bar')
app.set_cookie('fizz', ';bar=baz') # Make sure we're escaping.
app.get('/')
app.reset()
def test_preserves_cookies(self):
def cookie_app(environ, start_response):
req = Request(environ)
status = "200 OK"
body = '<html><body><a href="/go/">go</a></body></html>'
headers = [
('Content-Type', 'text/html'),
('Content-Length', str(len(body))),
]
if req.path_info != '/go/':
headers.extend([
('Set-Cookie', 'spam=eggs'),
('Set-Cookie', 'foo=bar;baz'),
])
else:
self.assertEqual(dict(req.cookies),
{'spam': 'eggs', 'foo': 'bar'})
self.assertIn('foo=bar', environ['HTTP_COOKIE'])
self.assertIn('spam=eggs', environ['HTTP_COOKIE'])
start_response(status, headers)
return [to_bytes(body)]
app = webtest.TestApp(cookie_app)
self.assertTrue(not app.cookiejar,
'App should initially contain no cookies')
self.assertFalse(app.cookies)
res = app.get('/')
self.assertEqual(app.cookies['spam'], 'eggs')
self.assertEqual(app.cookies['foo'], 'bar')
res = res.click('go')
self.assertEqual(app.cookies['spam'], 'eggs')
self.assertEqual(app.cookies['foo'], 'bar')
app.reset()
self.assertFalse(bool(app.cookies))
def test_secure_cookies(self):
def cookie_app(environ, start_response):
req = Request(environ)
status = "200 OK"
body = '<html><body><a href="/go/">go</a></body></html>'
headers = [
('Content-Type', 'text/html'),
('Content-Length', str(len(body))),
]
if req.path_info != '/go/':
headers.extend([
('Set-Cookie', 'spam=eggs; secure'),
('Set-Cookie', 'foo=bar;baz; secure'),
])
else:
self.assertEqual(dict(req.cookies),
{'spam': 'eggs', 'foo': 'bar'})
self.assertIn('foo=bar', environ['HTTP_COOKIE'])
self.assertIn('spam=eggs', environ['HTTP_COOKIE'])
start_response(status, headers)
return [to_bytes(body)]
app = webtest.TestApp(cookie_app)
self.assertFalse(app.cookies)
res = app.get('https://localhost/')
self.assertEqual(app.cookies['spam'], 'eggs')
self.assertEqual(app.cookies['foo'], 'bar')
res = res.click('go')
self.assertEqual(app.cookies['spam'], 'eggs')
self.assertEqual(app.cookies['foo'], 'bar')
def test_cookies_readonly(self):
app = webtest.TestApp(debug_app)
try:
app.cookies = {}
except:
pass
else:
self.fail('testapp.cookies should be read-only')
@mock.patch('http.cookiejar.time.time')
def test_expires_cookies(self, mock_time):
def cookie_app(environ, start_response):
status = to_bytes("200 OK")
body = ''
headers = [
('Content-Type', 'text/html'),
('Content-Length', str(len(body))),
('Set-Cookie',
'spam=eggs; Expires=Tue, 21-Feb-2013 17:45:00 GMT;'),
]
start_response(status, headers)
return [to_bytes(body)]
app = webtest.TestApp(cookie_app)
self.assertTrue(not app.cookiejar,
'App should initially contain no cookies')
mock_time.return_value = 1361464946.0
app.get('/')
self.assertTrue(app.cookies, 'Response should have set cookies')
mock_time.return_value = 1461464946.0
app.get('/')
self.assertFalse(app.cookies, 'Response should have unset cookies')
def test_http_cookie(self):
def cookie_app(environ, start_response):
req = Request(environ)
status = to_bytes("200 OK")
body = 'Cookie.'
assert dict(req.cookies) == {'spam': 'eggs'}
assert environ['HTTP_COOKIE'] == 'spam=eggs'
headers = [
('Content-Type', 'text/html'),
('Content-Length', str(len(body))),
]
start_response(status, headers)
return [to_bytes(body)]
app = webtest.TestApp(cookie_app)
self.assertTrue(not app.cookies,
'App should initially contain no cookies')
res = app.get('/', headers=[('Cookie', 'spam=eggs')])
self.assertFalse(app.cookies,
'Response should not have set cookies')
self.assertEqual(res.request.environ['HTTP_COOKIE'], 'spam=eggs')
self.assertEqual(dict(res.request.cookies), {'spam': 'eggs'})
def test_http_localhost_cookie(self):
def cookie_app(environ, start_response):
status = to_bytes("200 OK")
body = 'Cookie.'
headers = [
('Content-Type', 'text/html'),
('Content-Length', str(len(body))),
('Set-Cookie',
'spam=eggs; Domain=localhost;'),
]
start_response(status, headers)
return [to_bytes(body)]
app = webtest.TestApp(cookie_app)
self.assertTrue(not app.cookies,
'App should initially contain no cookies')
res = app.get('/')
res = app.get('/')
self.assertTrue(app.cookies,
'Response should not have set cookies')
self.assertEqual(res.request.environ['HTTP_COOKIE'], 'spam=eggs')
self.assertEqual(dict(res.request.cookies), {'spam': 'eggs'})
def test_cookie_policy(self):
def cookie_app(environ, start_response):
status = to_bytes("200 OK")
body = 'Cookie.'
headers = [
('Content-Type', 'text/plain'),
('Content-Length', str(len(body))),
('Set-Cookie',
'spam=eggs; secure; Domain=.example.org;'),
]
start_response(status, headers)
return [to_bytes(body)]
policy = webtest.app.CookiePolicy()
flags = (
policy.DomainStrictNoDots |
policy.DomainRFC2965Match |
policy.DomainStrictNonDomain)
policy.strict_ns_domain |= flags
cookiejar = http_cookiejar.CookieJar(policy=policy)
app = webtest.TestApp(
cookie_app,
cookiejar=cookiejar,
extra_environ={'HTTP_HOST': 'example.org'})
res = app.get('/')
res = app.get('/')
self.assertFalse(app.cookies,
'Response should not have set cookies')
self.assertNotIn('HTTP_COOKIE', res.request.environ)
self.assertEqual(dict(res.request.cookies), {})
class TestEnviron(unittest.TestCase):
def test_get_extra_environ(self):
app = webtest.TestApp(debug_app,
extra_environ={'HTTP_ACCEPT_LANGUAGE': 'ru',
'foo': 'bar'})
res = app.get('http://localhost/')
self.assertIn('HTTP_ACCEPT_LANGUAGE: ru', res, res)
self.assertIn("foo: 'bar'", res, res)
res = app.get('http://localhost/', extra_environ={'foo': 'baz'})
self.assertIn('HTTP_ACCEPT_LANGUAGE: ru', res, res)
self.assertIn("foo: 'baz'", res, res)
def test_post_extra_environ(self):
app = webtest.TestApp(debug_app,
extra_environ={'HTTP_ACCEPT_LANGUAGE': 'ru',
'foo': 'bar'})
res = app.post('http://localhost/')
self.assertIn('HTTP_ACCEPT_LANGUAGE: ru', res, res)
self.assertIn("foo: 'bar'", res, res)
res = app.post('http://localhost/', extra_environ={'foo': 'baz'})
self.assertIn('HTTP_ACCEPT_LANGUAGE: ru', res, res)
self.assertIn("foo: 'baz'", res, res)
def test_request_extra_environ(self):
app = webtest.TestApp(debug_app,
extra_environ={'HTTP_ACCEPT_LANGUAGE': 'ru',
'foo': 'bar'})
res = app.request('http://localhost/', method='GET')
self.assertIn('HTTP_ACCEPT_LANGUAGE: ru', res, res)
self.assertIn("foo: 'bar'", res, res)
res = app.request('http://localhost/', method='GET',
environ={'foo': 'baz'})
self.assertIn('HTTP_ACCEPT_LANGUAGE: ru', res, res)
self.assertIn("foo: 'baz'", res, res)
deform_upload_fields_text = """
<input type="hidden" name="_charset_" />
<input type="hidden" name="__formid__" value="deform"/>
<input type="text" name="title" value="" id="deformField1"/>
<input type="hidden" name="__start__" value="fileupload:mapping"/>
<input type="file" name="fileupload" id="deformField2"/>
<input type="hidden" name="__end__" value="fileupload:mapping"/>
<textarea id="deformField3" name="description" rows="10" cols="60">
</textarea>
<button
id="deformSubmit"
name="Submit"
type="submit"
value="Submit">
Submit
</button>
"""
def get_submit_app(form_id, form_fields_text):
def submit_app(environ, start_response):
req = Request(environ)
status = "200 OK"
if req.method == "GET":
body = """
<html>
<head><title>form page</title></head>
<body>
<form
id="%s"
action=""
method="POST"
enctype="multipart/form-data"
accept-charset="utf-8">
%s
</form>
</body>
</html>
""" % (form_id, form_fields_text)
else:
body_head = """
<html>
<head><title>display page</title></head>
<body>
"""
body_parts = []
for (name, value) in req.POST.items():
if hasattr(value, 'filename'):
body_parts.append("%s:%s:%s\n" % (
name,
value.filename,
value.value.decode('ascii')))
else:
body_parts.append("%s:%s\n" % (
name, value))
body_foot = """ </body>
</html>
"""
body = body_head + "".join(body_parts) + body_foot
if not isinstance(body, bytes):
body = body.encode('utf8')
headers = [
('Content-Type', 'text/html; charset=utf-8'),
('Content-Length', str(len(body)))]
start_response(status, headers)
return [body]
return submit_app
class TestFieldOrder(unittest.TestCase):
def test_submit_with_file_upload(self):
uploaded_file_name = 'test.txt'
uploaded_file_contents = to_bytes('test content file upload')
deform_upload_file_app = get_submit_app('deform',
deform_upload_fields_text)
app = webtest.TestApp(deform_upload_file_app)
res = app.get('/')
self.assertEqual(res.status_int, 200)
self.assertEqual(
res.headers['content-type'], 'text/html; charset=utf-8')
self.assertEqual(res.content_type, 'text/html')
self.assertEqual(res.charset, 'utf-8')
single_form = res.forms["deform"]
single_form.set("title", "testtitle")
single_form.set("fileupload",
(uploaded_file_name, uploaded_file_contents))
single_form.set("description", "testdescription")
display = single_form.submit("Submit")
self.assertIn("""
_charset_:
__formid__:deform
title:testtitle
__start__:fileupload:mapping
fileupload:test.txt:test content file upload
__end__:fileupload:mapping
description:testdescription
Submit:Submit
""".strip(), display, display)
def test_post_with_file_upload(self):
uploaded_file_name = 'test.txt'
uploaded_file_contents = to_bytes('test content file upload')
deform_upload_file_app = get_submit_app('deform',
deform_upload_fields_text)
app = webtest.TestApp(deform_upload_file_app)
display = app.post("/", OrderedDict([
('_charset_', ''),
('__formid__', 'deform'),
('title', 'testtitle'),
('__start__', 'fileupload:mapping'),
('fileupload', webtest.Upload(uploaded_file_name,
uploaded_file_contents)),
('__end__', 'fileupload:mapping'),
('description', 'testdescription'),
('Submit', 'Submit')]))
self.assertIn("""
_charset_:
__formid__:deform
title:testtitle
__start__:fileupload:mapping
fileupload:test.txt:test content file upload
__end__:fileupload:mapping
description:testdescription
Submit:Submit""".strip(), display, display)
def test_field_order_is_across_all_fields(self):
fields = """
<input type="text" name="letter" value="a">
<input type="text" name="letter" value="b">
<input type="text" name="number" value="1">
<input type="text" name="letter" value="c">
<input type="text" name="number" value="2">
<input type="submit" name="save" value="Save 1">
<input type="text" name="letter" value="d">
<input type="submit" name="save" value="Save 2">
<input type="text" name="letter" value="e">
"""
submit_app = get_submit_app('test', fields)
app = webtest.TestApp(submit_app)
get_res = app.get("/")
# Submit the form with the second submit button.
display = get_res.forms[0].submit('save', 1)
self.assertIn("""
letter:a
letter:b
number:1
letter:c
number:2
letter:d
save:Save 2
letter:e""".strip(), display, display)
class TestFragments(unittest.TestCase):
def test_url_without_fragments(self):
app = webtest.TestApp(debug_app)
res = app.get('http://localhost/')
self.assertEqual(res.status_int, 200)
def test_url_with_fragments(self):
app = webtest.TestApp(debug_app)
res = app.get('http://localhost/#ananchor')
self.assertEqual(res.status_int, 200)
def application(environ, start_response):
req = Request(environ)
if req.path_info == '/redirect':
req.path_info = '/path'
resp = Response()
resp.status = '302 Found'
resp.location = req.path
else:
resp = Response()
resp.body = to_bytes(
'<html><body><a href="%s">link</a></body></html>' % req.path)
return resp(environ, start_response)
class TestScriptName(unittest.TestCase):
def test_script_name(self):
app = webtest.TestApp(application)
resp = app.get('/script', extra_environ={'SCRIPT_NAME': '/script'})
resp.mustcontain('href="/script"')
resp = app.get('/script/redirect',
extra_environ={'SCRIPT_NAME': '/script'})
self.assertEqual(resp.status_int, 302)
self.assertEqual(resp.location,
'http://localhost/script/path',
resp.location)
resp = resp.follow(extra_environ={'SCRIPT_NAME': '/script'})
resp.mustcontain('href="/script/path"')
resp = resp.click('link')
resp.mustcontain('href="/script/path"')
def test_app_script_name(self):
app = webtest.TestApp(application,
extra_environ={'SCRIPT_NAME': '/script'})
resp = app.get('/script/redirect')
self.assertEqual(resp.status_int, 302)
self.assertEqual(resp.location,
'http://localhost/script/path',
resp.location)
resp = resp.follow()
resp.mustcontain('href="/script/path"')
resp = resp.click('link')
resp.mustcontain('href="/script/path"')
def test_script_name_doesnt_match(self):
app = webtest.TestApp(application)
resp = app.get('/path', extra_environ={'SCRIPT_NAME': '/script'})
resp.mustcontain('href="/script/path"')
class TestWSGIProxy(unittest.TestCase):
def setUp(self):
self.s = http.StopableWSGIServer.create(debug_app)
self.s.wait()
def test_proxy_with_url(self):
app = webtest.TestApp(self.s.application_url)
resp = app.get('/')
self.assertEqual(resp.status_int, 200)
def test_proxy_with_environ(self):
def app(environ, start_response):
pass
os.environ['WEBTEST_TARGET_URL'] = self.s.application_url
app = webtest.TestApp(app)
del os.environ['WEBTEST_TARGET_URL']
resp = app.get('/')
self.assertEqual(resp.status_int, 200)
def tearDown(self):
self.s.shutdown()
class TestAppXhrParam(unittest.TestCase):
def setUp(self):
self.app = webtest.TestApp(debug_app)
def test_xhr_param_change_headers(self):
app = self.app
# FIXME: this test isn`t work for head request
# now I don't know how to test head request
functions = (app.get, app.post, app.delete,
app.put, app.options) # app.head
for func in functions:
resp = func('/', xhr=True)
resp.charset = 'ascii'
self.assertIn('HTTP_X_REQUESTED_WITH: XMLHttpRequest',
resp.text)
class TestRequest(unittest.TestCase):
def test_pytest_collection_disabled(self):
self.assertFalse(webtest.TestRequest.__test__)
|