code
stringlengths
26
870k
docstring
stringlengths
1
65.6k
func_name
stringlengths
1
194
language
stringclasses
1 value
repo
stringlengths
8
68
path
stringlengths
5
194
url
stringlengths
46
254
license
stringclasses
4 values
def attemptRequestWithMaliciousMethod(self, method): """ Attempt a request with the provided method. @param method: see L{MethodInjectionTestsMixin} """ uri = b'http://twisted.invalid' client.getPage(uri, method=method)
Attempt a request with the provided method. @param method: see L{MethodInjectionTestsMixin}
attemptRequestWithMaliciousMethod
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: see L{URIInjectionTestsMixin} """ client.getPage(uri)
Attempt a request with the provided URI. @param uri: see L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousMethod(self, method): """ Attempt a request with the provided method. @param method: see L{MethodInjectionTestsMixin} """ uri = b'http://twisted.invalid' client.downloadPage(uri, file=io.BytesIO(), method=method)
Attempt a request with the provided method. @param method: see L{MethodInjectionTestsMixin}
attemptRequestWithMaliciousMethod
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: see L{URIInjectionTestsMixin} """ client.downloadPage(uri, file=io.BytesIO())
Attempt a request with the provided URI. @param uri: see L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def makeHTTPPageGetterFactory(protocolClass, method, host, path): """ Make a L{ClientFactory} that can be used with L{client.HTTPPageGetter} and its subclasses. @param protocolClass: The protocol class @type protocolClass: A subclass of L{client.HTTPPageGetter} @param method: the HTTP method @param host: the host @param path: The URI path @return: A L{ClientFactory}. """ factory = ClientFactory.forProtocol(protocolClass) factory.method = method factory.host = host factory.path = path factory.scheme = b"http" factory.port = 0 factory.headers = {} factory.agent = b"User/Agent" factory.cookies = {} return factory
Make a L{ClientFactory} that can be used with L{client.HTTPPageGetter} and its subclasses. @param protocolClass: The protocol class @type protocolClass: A subclass of L{client.HTTPPageGetter} @param method: the HTTP method @param host: the host @param path: The URI path @return: A L{ClientFactory}.
makeHTTPPageGetterFactory
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousMethod(self, method): """ Attempt a request with the provided method. @param method: L{MethodInjectionTestsMixin} """ transport = StringTransport() factory = makeHTTPPageGetterFactory( self.protocolClass, method=method, host=b"twisted.invalid", path=b"/", ) getter = factory.buildProtocol( address.IPv4Address("TCP", "127.0.0.1", 0), ) getter.makeConnection(transport)
Attempt a request with the provided method. @param method: L{MethodInjectionTestsMixin}
attemptRequestWithMaliciousMethod
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin} """ transport = StringTransport() # Setting the host and path to the same value is imprecise but # doesn't require parsing an invalid URI. factory = makeHTTPPageGetterFactory( self.protocolClass, method=b"GET", host=uri, path=uri, ) getter = factory.buildProtocol( address.IPv4Address("TCP", "127.0.0.1", 0), ) getter.makeConnection(transport)
Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousMethod(self, method): """ Attempt a request with the provided method. @param method: L{MethodInjectionTestsMixin} """ client.HTTPClientFactory(b"https://twisted.invalid", method)
Attempt a request with the provided method. @param method: L{MethodInjectionTestsMixin}
attemptRequestWithMaliciousMethod
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin} """ client.HTTPClientFactory(uri)
Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin} """ client.HTTPClientFactory(b"https://twisted.invalid").setURL(uri)
Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousMethod(self, method): """ Attempt a request with the provided method. @param method: L{MethodInjectionTestsMixin} """ client.HTTPDownloader( b"https://twisted.invalid", io.BytesIO(), method=method, )
Attempt a request with the provided method. @param method: L{MethodInjectionTestsMixin}
attemptRequestWithMaliciousMethod
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin} """ client.HTTPDownloader(uri, io.BytesIO())
Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def attemptRequestWithMaliciousURI(self, uri): """ Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin} """ downloader = client.HTTPDownloader( b"https://twisted.invalid", io.BytesIO(), ) downloader.setURL(uri)
Attempt a request with the provided URI. @param uri: L{URIInjectionTestsMixin}
attemptRequestWithMaliciousURI
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_webclient.py
MIT
def callInThread(self, f, *a, **kw): """ Call C{f(*a, **kw)} in this thread rather than scheduling it to be called in a thread. """ try: f(*a, **kw) except: # callInThread doesn't let exceptions propagate to the caller. # None is always returned and any exception raised gets logged # later on. self._log.failure( "Callable passed to SynchronousThreadPool.callInThread failed" )
Call C{f(*a, **kw)} in this thread rather than scheduling it to be called in a thread.
callInThread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def callFromThread(self, f, *a, **kw): """ Call C{f(*a, **kw)} in this thread which should also be the reactor thread. """ f(*a, **kw)
Call C{f(*a, **kw)} in this thread which should also be the reactor thread.
callFromThread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def setUp(self): """ Create a L{WSGIResource} with synchronous threading objects and a no-op application object. This is useful for testing certain things about the resource implementation which are unrelated to WSGI. """ self.resource = WSGIResource( SynchronousReactorThreads(), SynchronousThreadPool(), lambda environ, startResponse: None)
Create a L{WSGIResource} with synchronous threading objects and a no-op application object. This is useful for testing certain things about the resource implementation which are unrelated to WSGI.
setUp
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_interfaces(self): """ L{WSGIResource} implements L{IResource} and stops resource traversal. """ verifyObject(IResource, self.resource) self.assertTrue(self.resource.isLeaf)
L{WSGIResource} implements L{IResource} and stops resource traversal.
test_interfaces
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_unsupported(self): """ A L{WSGIResource} cannot have L{IResource} children. Its C{getChildWithDefault} and C{putChild} methods raise L{RuntimeError}. """ self.assertRaises( RuntimeError, self.resource.getChildWithDefault, b"foo", Request(DummyChannel(), False)) self.assertRaises( RuntimeError, self.resource.putChild, b"foo", Resource())
A L{WSGIResource} cannot have L{IResource} children. Its C{getChildWithDefault} and C{putChild} methods raise L{RuntimeError}.
test_unsupported
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def getClientIP(self): """ Return loopback address. @return: loopback ip address. """ return '127.0.0.1'
Return loopback address. @return: loopback ip address.
test_applicationAndRequestThrow.getClientIP
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def getHost(self): """ Return a fake Address @return: A fake address """ return IPv4Address('TCP', '127.0.0.1', 30000)
Return a fake Address @return: A fake address
test_applicationAndRequestThrow.getHost
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def application(environ, startResponse): """ An application object that throws an exception. @param environ: unused @param startResponse: unused """ raise ArbitraryError()
An application object that throws an exception. @param environ: unused @param startResponse: unused
test_applicationAndRequestThrow.application
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def callFromThread(self, f, *a, **kw): """ Raise an exception to the caller. @param f: unused @param a: unused @param kw: unused """ raise ArbitraryError()
Raise an exception to the caller. @param f: unused @param a: unused @param kw: unused
test_applicationAndRequestThrow.callFromThread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_applicationAndRequestThrow(self): """ If an exception is thrown by the application, and then in the exception handling code, verify it should be propagated to the provided L{ThreadPool}. """ logObserver = EventLoggingObserver.createWithCleanup( self, globalLogPublisher ) class ArbitraryError(Exception): """ An arbitrary error for this class """ class FinishThrowingRequest(Request): """ An L{IRequest} request whose finish method throws. """ def __init__(self, *args, **kwargs): Request.__init__(self, *args, **kwargs) self.prepath = '' self.postpath = '' self.uri = b'www.example.com/stuff' def getClientIP(self): """ Return loopback address. @return: loopback ip address. """ return '127.0.0.1' def getHost(self): """ Return a fake Address @return: A fake address """ return IPv4Address('TCP', '127.0.0.1', 30000) def application(environ, startResponse): """ An application object that throws an exception. @param environ: unused @param startResponse: unused """ raise ArbitraryError() class ThrowingReactorThreads: """ An L{IReactorThreads} implementation whose callFromThread raises an exception. """ def callFromThread(self, f, *a, **kw): """ Raise an exception to the caller. @param f: unused @param a: unused @param kw: unused """ raise ArbitraryError() self.resource = WSGIResource( ThrowingReactorThreads(), SynchronousThreadPool(), application ) self.resource.render(FinishThrowingRequest(DummyChannel(), False)) self.assertEquals(1, len(logObserver)) f = logObserver[0]["log_failure"] self.assertIsInstance(f.value, ArbitraryError) self.flushLoggedErrors(ArbitraryError)
If an exception is thrown by the application, and then in the exception handling code, verify it should be propagated to the provided L{ThreadPool}.
test_applicationAndRequestThrow
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def lowLevelRender( self, requestFactory, applicationFactory, channelFactory, method, version, resourceSegments, requestSegments, query=None, headers=[], body=None, safe=''): """ @param method: A C{str} giving the request method to use. @param version: A C{str} like C{'1.1'} giving the request version. @param resourceSegments: A C{list} of unencoded path segments which specifies the location in the resource hierarchy at which the L{WSGIResource} will be placed, eg C{['']} for I{/}, C{['foo', 'bar', '']} for I{/foo/bar/}, etc. @param requestSegments: A C{list} of unencoded path segments giving the request URI. @param query: A C{list} of two-tuples of C{str} giving unencoded query argument keys and values. @param headers: A C{list} of two-tuples of C{str} giving request header names and corresponding values. @param safe: A C{str} giving the bytes which are to be considered I{safe} for inclusion in the request URI and not quoted. @return: A L{Deferred} which will be called back with a two-tuple of the arguments passed which would be passed to the WSGI application object for this configuration and request (ie, the environment and start_response callable). """ def _toByteString(string): # Twisted's HTTP implementation prefers byte strings. As a # convenience for tests, string arguments are encoded to an # ISO-8859-1 byte string (if not already) before being passed on. if isinstance(string, bytes): return string else: return string.encode('iso-8859-1') root = WSGIResource( self.reactor, self.threadpool, applicationFactory()) resourceSegments.reverse() for seg in resourceSegments: tmp = Resource() tmp.putChild(_toByteString(seg), root) root = tmp channel = channelFactory() channel.site = Site(root) request = requestFactory(channel, False) for k, v in headers: request.requestHeaders.addRawHeader( _toByteString(k), _toByteString(v)) request.gotLength(0) if body: request.content.write(body) request.content.seek(0) uri = '/' + '/'.join([urlquote(seg, safe) for seg in requestSegments]) if query is not None: uri += '?' + '&'.join(['='.join([urlquote(k, safe), urlquote(v, safe)]) for (k, v) in query]) request.requestReceived( _toByteString(method), _toByteString(uri), b'HTTP/' + _toByteString(version)) return request
@param method: A C{str} giving the request method to use. @param version: A C{str} like C{'1.1'} giving the request version. @param resourceSegments: A C{list} of unencoded path segments which specifies the location in the resource hierarchy at which the L{WSGIResource} will be placed, eg C{['']} for I{/}, C{['foo', 'bar', '']} for I{/foo/bar/}, etc. @param requestSegments: A C{list} of unencoded path segments giving the request URI. @param query: A C{list} of two-tuples of C{str} giving unencoded query argument keys and values. @param headers: A C{list} of two-tuples of C{str} giving request header names and corresponding values. @param safe: A C{str} giving the bytes which are to be considered I{safe} for inclusion in the request URI and not quoted. @return: A L{Deferred} which will be called back with a two-tuple of the arguments passed which would be passed to the WSGI application object for this configuration and request (ie, the environment and start_response callable).
lowLevelRender
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def prepareRequest(self, application=None): """ Prepare a L{Request} which, when a request is received, captures the C{environ} and C{start_response} callable passed to a WSGI app. @param application: An optional WSGI application callable that accepts the familiar C{environ} and C{start_response} args and returns an iterable of body content. If not supplied, C{start_response} will be called with a "200 OK" status and no headers, and no content will be yielded. @return: A two-tuple of (C{request}, C{deferred}). The former is a Twisted L{Request}. The latter is a L{Deferred} which will be called back with a two-tuple of the arguments passed to a WSGI application (i.e. the C{environ} and C{start_response} callable), or will errback with any error arising within the WSGI app. """ result = Deferred() def outerApplication(environ, startResponse): try: if application is None: startResponse('200 OK', []) content = iter(()) # No content. else: content = application(environ, startResponse) except: result.errback() startResponse('500 Error', []) return iter(()) else: result.callback((environ, startResponse)) return content resource = WSGIResource( self.reactor, self.threadpool, outerApplication) root = Resource() root.putChild(b"res", resource) channel = self.channelFactory() channel.site = Site(root) class CannedRequest(Request): """ Convenient L{Request} derivative which has canned values for all of C{requestReceived}'s arguments. """ def requestReceived( self, command=b"GET", path=b"/res", version=b"1.1"): return Request.requestReceived( self, command=command, path=path, version=version) request = CannedRequest(channel, queued=False) request.gotLength(0) # Initialize buffer for request body. return request, result
Prepare a L{Request} which, when a request is received, captures the C{environ} and C{start_response} callable passed to a WSGI app. @param application: An optional WSGI application callable that accepts the familiar C{environ} and C{start_response} args and returns an iterable of body content. If not supplied, C{start_response} will be called with a "200 OK" status and no headers, and no content will be yielded. @return: A two-tuple of (C{request}, C{deferred}). The former is a Twisted L{Request}. The latter is a L{Deferred} which will be called back with a two-tuple of the arguments passed to a WSGI application (i.e. the C{environ} and C{start_response} callable), or will errback with any error arising within the WSGI app.
prepareRequest
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_environIsDict(self): """ L{WSGIResource} calls the application object with an C{environ} parameter which is exactly of type C{dict}. """ d = self.render('GET', '1.1', [], ['']) def cbRendered(result): environ, startResponse = result self.assertIdentical(type(environ), dict) # Environment keys are always native strings. for name in environ: self.assertIsInstance(name, str) d.addCallback(cbRendered) return d
L{WSGIResource} calls the application object with an C{environ} parameter which is exactly of type C{dict}.
test_environIsDict
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_requestMethod(self): """ The C{'REQUEST_METHOD'} key of the C{environ} C{dict} passed to the application contains the HTTP method in the request (RFC 3875, section 4.1.12). """ get = self.render('GET', '1.1', [], ['']) get.addCallback(self.environKeyEqual('REQUEST_METHOD', 'GET')) # Also make sure a different request method shows up as a different # value in the environ dict. post = self.render('POST', '1.1', [], ['']) post.addCallback(self.environKeyEqual('REQUEST_METHOD', 'POST')) return gatherResults([get, post])
The C{'REQUEST_METHOD'} key of the C{environ} C{dict} passed to the application contains the HTTP method in the request (RFC 3875, section 4.1.12).
test_requestMethod
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_requestMethodIsNativeString(self): """ The C{'REQUEST_METHOD'} key of the C{environ} C{dict} passed to the application is always a native string. """ for method in b"GET", u"GET": request, result = self.prepareRequest() request.requestReceived(method) result.addCallback(self.environKeyEqual('REQUEST_METHOD', 'GET')) self.assertIsInstance(self.successResultOf(result), str)
The C{'REQUEST_METHOD'} key of the C{environ} C{dict} passed to the application is always a native string.
test_requestMethodIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_scriptName(self): """ The C{'SCRIPT_NAME'} key of the C{environ} C{dict} passed to the application contains the I{abs_path} (RFC 2396, section 3) to this resource (RFC 3875, section 4.1.13). """ root = self.render('GET', '1.1', [], ['']) root.addCallback(self.environKeyEqual('SCRIPT_NAME', '')) emptyChild = self.render('GET', '1.1', [''], ['']) emptyChild.addCallback(self.environKeyEqual('SCRIPT_NAME', '/')) leaf = self.render('GET', '1.1', ['foo'], ['foo']) leaf.addCallback(self.environKeyEqual('SCRIPT_NAME', '/foo')) container = self.render('GET', '1.1', ['foo', ''], ['foo', '']) container.addCallback(self.environKeyEqual('SCRIPT_NAME', '/foo/')) internal = self.render('GET', '1.1', ['foo'], ['foo', 'bar']) internal.addCallback(self.environKeyEqual('SCRIPT_NAME', '/foo')) unencoded = self.render( 'GET', '1.1', ['foo', '/', b'bar\xff'], ['foo', '/', b'bar\xff']) # The RFC says "(not URL-encoded)", even though that makes # interpretation of SCRIPT_NAME ambiguous. unencoded.addCallback( self.environKeyEqual('SCRIPT_NAME', '/foo///bar\xff')) return gatherResults([ root, emptyChild, leaf, container, internal, unencoded])
The C{'SCRIPT_NAME'} key of the C{environ} C{dict} passed to the application contains the I{abs_path} (RFC 2396, section 3) to this resource (RFC 3875, section 4.1.13).
test_scriptName
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_scriptNameIsNativeString(self): """ The C{'SCRIPT_NAME'} key of the C{environ} C{dict} passed to the application is always a native string. """ request, result = self.prepareRequest() request.requestReceived(path=b"/res") result.addCallback(self.environKeyEqual('SCRIPT_NAME', '/res')) self.assertIsInstance(self.successResultOf(result), str) if _PY3: # Native strings are rejected by Request.requestReceived() before # t.w.wsgi has any say in the matter. request, result = self.prepareRequest() self.assertRaises(TypeError, request.requestReceived, path=u"/res") else: request, result = self.prepareRequest() request.requestReceived(path=u"/res") result.addCallback(self.environKeyEqual('SCRIPT_NAME', '/res')) self.assertIsInstance(self.successResultOf(result), str)
The C{'SCRIPT_NAME'} key of the C{environ} C{dict} passed to the application is always a native string.
test_scriptNameIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_pathInfo(self): """ The C{'PATH_INFO'} key of the C{environ} C{dict} passed to the application contains the suffix of the request URI path which is not included in the value for the C{'SCRIPT_NAME'} key (RFC 3875, section 4.1.5). """ assertKeyEmpty = self.environKeyEqual('PATH_INFO', '') root = self.render('GET', '1.1', [], ['']) root.addCallback(self.environKeyEqual('PATH_INFO', '/')) emptyChild = self.render('GET', '1.1', [''], ['']) emptyChild.addCallback(assertKeyEmpty) leaf = self.render('GET', '1.1', ['foo'], ['foo']) leaf.addCallback(assertKeyEmpty) container = self.render('GET', '1.1', ['foo', ''], ['foo', '']) container.addCallback(assertKeyEmpty) internalLeaf = self.render('GET', '1.1', ['foo'], ['foo', 'bar']) internalLeaf.addCallback(self.environKeyEqual('PATH_INFO', '/bar')) internalContainer = self.render('GET', '1.1', ['foo'], ['foo', '']) internalContainer.addCallback(self.environKeyEqual('PATH_INFO', '/')) unencoded = self.render('GET', '1.1', [], ['foo', '/', b'bar\xff']) unencoded.addCallback( self.environKeyEqual('PATH_INFO', '/foo///bar\xff')) return gatherResults([ root, leaf, container, internalLeaf, internalContainer, unencoded])
The C{'PATH_INFO'} key of the C{environ} C{dict} passed to the application contains the suffix of the request URI path which is not included in the value for the C{'SCRIPT_NAME'} key (RFC 3875, section 4.1.5).
test_pathInfo
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_pathInfoIsNativeString(self): """ The C{'PATH_INFO'} key of the C{environ} C{dict} passed to the application is always a native string. """ request, result = self.prepareRequest() request.requestReceived(path=b"/res/foo/bar") result.addCallback(self.environKeyEqual('PATH_INFO', '/foo/bar')) self.assertIsInstance(self.successResultOf(result), str) if _PY3: # Native strings are rejected by Request.requestReceived() before # t.w.wsgi has any say in the matter. request, result = self.prepareRequest() self.assertRaises( TypeError, request.requestReceived, path=u"/res/foo/bar") else: request, result = self.prepareRequest() request.requestReceived(path=u"/res/foo/bar") result.addCallback(self.environKeyEqual('PATH_INFO', '/foo/bar')) self.assertIsInstance(self.successResultOf(result), str)
The C{'PATH_INFO'} key of the C{environ} C{dict} passed to the application is always a native string.
test_pathInfoIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_queryString(self): """ The C{'QUERY_STRING'} key of the C{environ} C{dict} passed to the application contains the portion of the request URI after the first I{?} (RFC 3875, section 4.1.7). """ missing = self.render('GET', '1.1', [], [''], None) missing.addCallback(self.environKeyEqual('QUERY_STRING', '')) empty = self.render('GET', '1.1', [], [''], []) empty.addCallback(self.environKeyEqual('QUERY_STRING', '')) present = self.render('GET', '1.1', [], [''], [('foo', 'bar')]) present.addCallback(self.environKeyEqual('QUERY_STRING', 'foo=bar')) unencoded = self.render('GET', '1.1', [], [''], [('/', '/')]) unencoded.addCallback(self.environKeyEqual('QUERY_STRING', '%2F=%2F')) # "?" is reserved in the <searchpart> portion of a URL. However, it # seems to be a common mistake of clients to forget to quote it. So, # make sure we handle that invalid case. doubleQuestion = self.render( 'GET', '1.1', [], [''], [('foo', '?bar')], safe='?') doubleQuestion.addCallback( self.environKeyEqual('QUERY_STRING', 'foo=?bar')) return gatherResults([ missing, empty, present, unencoded, doubleQuestion])
The C{'QUERY_STRING'} key of the C{environ} C{dict} passed to the application contains the portion of the request URI after the first I{?} (RFC 3875, section 4.1.7).
test_queryString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_queryStringIsNativeString(self): """ The C{'QUERY_STRING'} key of the C{environ} C{dict} passed to the application is always a native string. """ request, result = self.prepareRequest() request.requestReceived(path=b"/res?foo=bar") result.addCallback(self.environKeyEqual('QUERY_STRING', 'foo=bar')) self.assertIsInstance(self.successResultOf(result), str) if _PY3: # Native strings are rejected by Request.requestReceived() before # t.w.wsgi has any say in the matter. request, result = self.prepareRequest() self.assertRaises( TypeError, request.requestReceived, path=u"/res?foo=bar") else: request, result = self.prepareRequest() request.requestReceived(path=u"/res?foo=bar") result.addCallback(self.environKeyEqual('QUERY_STRING', 'foo=bar')) self.assertIsInstance(self.successResultOf(result), str)
The C{'QUERY_STRING'} key of the C{environ} C{dict} passed to the application is always a native string.
test_queryStringIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_contentType(self): """ The C{'CONTENT_TYPE'} key of the C{environ} C{dict} passed to the application contains the value of the I{Content-Type} request header (RFC 3875, section 4.1.3). """ missing = self.render('GET', '1.1', [], ['']) missing.addCallback(self.environKeyEqual('CONTENT_TYPE', '')) present = self.render( 'GET', '1.1', [], [''], None, [('content-type', 'x-foo/bar')]) present.addCallback(self.environKeyEqual('CONTENT_TYPE', 'x-foo/bar')) return gatherResults([missing, present])
The C{'CONTENT_TYPE'} key of the C{environ} C{dict} passed to the application contains the value of the I{Content-Type} request header (RFC 3875, section 4.1.3).
test_contentType
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_contentTypeIsNativeString(self): """ The C{'CONTENT_TYPE'} key of the C{environ} C{dict} passed to the application is always a native string. """ for contentType in b"x-foo/bar", u"x-foo/bar": request, result = self.prepareRequest() request.requestHeaders.addRawHeader(b"Content-Type", contentType) request.requestReceived() result.addCallback(self.environKeyEqual('CONTENT_TYPE', 'x-foo/bar')) self.assertIsInstance(self.successResultOf(result), str)
The C{'CONTENT_TYPE'} key of the C{environ} C{dict} passed to the application is always a native string.
test_contentTypeIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_contentLength(self): """ The C{'CONTENT_LENGTH'} key of the C{environ} C{dict} passed to the application contains the value of the I{Content-Length} request header (RFC 3875, section 4.1.2). """ missing = self.render('GET', '1.1', [], ['']) missing.addCallback(self.environKeyEqual('CONTENT_LENGTH', '')) present = self.render( 'GET', '1.1', [], [''], None, [('content-length', '1234')]) present.addCallback(self.environKeyEqual('CONTENT_LENGTH', '1234')) return gatherResults([missing, present])
The C{'CONTENT_LENGTH'} key of the C{environ} C{dict} passed to the application contains the value of the I{Content-Length} request header (RFC 3875, section 4.1.2).
test_contentLength
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_contentLengthIsNativeString(self): """ The C{'CONTENT_LENGTH'} key of the C{environ} C{dict} passed to the application is always a native string. """ for contentLength in b"1234", u"1234": request, result = self.prepareRequest() request.requestHeaders.addRawHeader(b"Content-Length", contentLength) request.requestReceived() result.addCallback(self.environKeyEqual('CONTENT_LENGTH', '1234')) self.assertIsInstance(self.successResultOf(result), str)
The C{'CONTENT_LENGTH'} key of the C{environ} C{dict} passed to the application is always a native string.
test_contentLengthIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_serverName(self): """ The C{'SERVER_NAME'} key of the C{environ} C{dict} passed to the application contains the best determination of the server hostname possible, using either the value of the I{Host} header in the request or the address the server is listening on if that header is not present (RFC 3875, section 4.1.14). """ missing = self.render('GET', '1.1', [], ['']) # 10.0.0.1 value comes from a bit far away - # twisted.test.test_web.DummyChannel.transport.getHost().host missing.addCallback(self.environKeyEqual('SERVER_NAME', '10.0.0.1')) present = self.render( 'GET', '1.1', [], [''], None, [('host', 'example.org')]) present.addCallback(self.environKeyEqual('SERVER_NAME', 'example.org')) return gatherResults([missing, present])
The C{'SERVER_NAME'} key of the C{environ} C{dict} passed to the application contains the best determination of the server hostname possible, using either the value of the I{Host} header in the request or the address the server is listening on if that header is not present (RFC 3875, section 4.1.14).
test_serverName
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_serverNameIsNativeString(self): """ The C{'SERVER_NAME'} key of the C{environ} C{dict} passed to the application is always a native string. """ for serverName in b"host.example.com", u"host.example.com": request, result = self.prepareRequest() # This is kind of a cheat; getRequestHostname() breaks in Python 3 # when the "Host" request header is set to a native string because # it tries to split around b":", so we patch the method. request.getRequestHostname = lambda: serverName request.requestReceived() result.addCallback(self.environKeyEqual('SERVER_NAME', 'host.example.com')) self.assertIsInstance(self.successResultOf(result), str)
The C{'SERVER_NAME'} key of the C{environ} C{dict} passed to the application is always a native string.
test_serverNameIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_serverPort(self): """ The C{'SERVER_PORT'} key of the C{environ} C{dict} passed to the application contains the port number of the server which received the request (RFC 3875, section 4.1.15). """ portNumber = 12354 def makeChannel(): channel = DummyChannel() channel.transport = DummyChannel.TCP() channel.transport.port = portNumber return channel self.channelFactory = makeChannel d = self.render('GET', '1.1', [], ['']) d.addCallback(self.environKeyEqual('SERVER_PORT', str(portNumber))) return d
The C{'SERVER_PORT'} key of the C{environ} C{dict} passed to the application contains the port number of the server which received the request (RFC 3875, section 4.1.15).
test_serverPort
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_serverPortIsNativeString(self): """ The C{'SERVER_PORT'} key of the C{environ} C{dict} passed to the application is always a native string. """ request, result = self.prepareRequest() request.requestReceived() result.addCallback(self.environKeyEqual('SERVER_PORT', '80')) self.assertIsInstance(self.successResultOf(result), str)
The C{'SERVER_PORT'} key of the C{environ} C{dict} passed to the application is always a native string.
test_serverPortIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_serverProtocol(self): """ The C{'SERVER_PROTOCOL'} key of the C{environ} C{dict} passed to the application contains the HTTP version number received in the request (RFC 3875, section 4.1.16). """ old = self.render('GET', '1.0', [], ['']) old.addCallback(self.environKeyEqual('SERVER_PROTOCOL', 'HTTP/1.0')) new = self.render('GET', '1.1', [], ['']) new.addCallback(self.environKeyEqual('SERVER_PROTOCOL', 'HTTP/1.1')) return gatherResults([old, new])
The C{'SERVER_PROTOCOL'} key of the C{environ} C{dict} passed to the application contains the HTTP version number received in the request (RFC 3875, section 4.1.16).
test_serverProtocol
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_serverProtocolIsNativeString(self): """ The C{'SERVER_PROTOCOL'} key of the C{environ} C{dict} passed to the application is always a native string. """ for serverProtocol in b"1.1", u"1.1": request, result = self.prepareRequest() # In Python 3, native strings can be rejected by Request.write() # which will cause a crash after the bit we're trying to test, so # we patch write() out here to do nothing. request.write = lambda data: None request.requestReceived(version=b"1.1") result.addCallback(self.environKeyEqual('SERVER_PROTOCOL', '1.1')) self.assertIsInstance(self.successResultOf(result), str)
The C{'SERVER_PROTOCOL'} key of the C{environ} C{dict} passed to the application is always a native string.
test_serverProtocolIsNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_remoteAddr(self): """ The C{'REMOTE_ADDR'} key of the C{environ} C{dict} passed to the application contains the address of the client making the request. """ d = self.render('GET', '1.1', [], ['']) d.addCallback(self.environKeyEqual('REMOTE_ADDR', '192.168.1.1')) return d
The C{'REMOTE_ADDR'} key of the C{environ} C{dict} passed to the application contains the address of the client making the request.
test_remoteAddr
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_remoteAddrIPv6(self): """ The C{'REMOTE_ADDR'} key of the C{environ} C{dict} passed to the application contains the address of the client making the request when connecting over IPv6. """ def channelFactory(): return DummyChannel(peer=IPv6Address('TCP', '::1', 1234)) d = self.render('GET', '1.1', [], [''], channelFactory=channelFactory) d.addCallback(self.environKeyEqual('REMOTE_ADDR', '::1')) return d
The C{'REMOTE_ADDR'} key of the C{environ} C{dict} passed to the application contains the address of the client making the request when connecting over IPv6.
test_remoteAddrIPv6
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headers(self): """ HTTP request headers are copied into the C{environ} C{dict} passed to the application with a C{HTTP_} prefix added to their names. """ singleValue = self.render( 'GET', '1.1', [], [''], None, [('foo', 'bar'), ('baz', 'quux')]) def cbRendered(result): environ, startResponse = result self.assertEqual(environ['HTTP_FOO'], 'bar') self.assertEqual(environ['HTTP_BAZ'], 'quux') singleValue.addCallback(cbRendered) multiValue = self.render( 'GET', '1.1', [], [''], None, [('foo', 'bar'), ('foo', 'baz')]) multiValue.addCallback(self.environKeyEqual('HTTP_FOO', 'bar,baz')) withHyphen = self.render( 'GET', '1.1', [], [''], None, [('foo-bar', 'baz')]) withHyphen.addCallback(self.environKeyEqual('HTTP_FOO_BAR', 'baz')) multiLine = self.render( 'GET', '1.1', [], [''], None, [('foo', 'bar\n\tbaz')]) multiLine.addCallback(self.environKeyEqual('HTTP_FOO', 'bar \tbaz')) return gatherResults([singleValue, multiValue, withHyphen, multiLine])
HTTP request headers are copied into the C{environ} C{dict} passed to the application with a C{HTTP_} prefix added to their names.
test_headers
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiVersion(self): """ The C{'wsgi.version'} key of the C{environ} C{dict} passed to the application has the value C{(1, 0)} indicating that this is a WSGI 1.0 container. """ versionDeferred = self.render('GET', '1.1', [], ['']) versionDeferred.addCallback(self.environKeyEqual('wsgi.version', (1, 0))) return versionDeferred
The C{'wsgi.version'} key of the C{environ} C{dict} passed to the application has the value C{(1, 0)} indicating that this is a WSGI 1.0 container.
test_wsgiVersion
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiRunOnce(self): """ The C{'wsgi.run_once'} key of the C{environ} C{dict} passed to the application is set to C{False}. """ once = self.render('GET', '1.1', [], ['']) once.addCallback(self.environKeyEqual('wsgi.run_once', False)) return once
The C{'wsgi.run_once'} key of the C{environ} C{dict} passed to the application is set to C{False}.
test_wsgiRunOnce
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiMultithread(self): """ The C{'wsgi.multithread'} key of the C{environ} C{dict} passed to the application is set to C{True}. """ thread = self.render('GET', '1.1', [], ['']) thread.addCallback(self.environKeyEqual('wsgi.multithread', True)) return thread
The C{'wsgi.multithread'} key of the C{environ} C{dict} passed to the application is set to C{True}.
test_wsgiMultithread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiMultiprocess(self): """ The C{'wsgi.multiprocess'} key of the C{environ} C{dict} passed to the application is set to C{False}. """ process = self.render('GET', '1.1', [], ['']) process.addCallback(self.environKeyEqual('wsgi.multiprocess', False)) return process
The C{'wsgi.multiprocess'} key of the C{environ} C{dict} passed to the application is set to C{False}.
test_wsgiMultiprocess
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiURLScheme(self): """ The C{'wsgi.url_scheme'} key of the C{environ} C{dict} passed to the application has the request URL scheme. """ # XXX Does this need to be different if the request is for an absolute # URL? def channelFactory(): channel = DummyChannel() channel.transport = DummyChannel.SSL() return channel self.channelFactory = DummyChannel httpDeferred = self.render('GET', '1.1', [], ['']) httpDeferred.addCallback(self.environKeyEqual('wsgi.url_scheme', 'http')) self.channelFactory = channelFactory httpsDeferred = self.render('GET', '1.1', [], ['']) httpsDeferred.addCallback(self.environKeyEqual('wsgi.url_scheme', 'https')) return gatherResults([httpDeferred, httpsDeferred])
The C{'wsgi.url_scheme'} key of the C{environ} C{dict} passed to the application has the request URL scheme.
test_wsgiURLScheme
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiErrors(self): """ The C{'wsgi.errors'} key of the C{environ} C{dict} passed to the application is a file-like object (as defined in the U{Input and Errors Streams<http://www.python.org/dev/peps/pep-0333/#input-and-error-streams>} section of PEP 333) which converts bytes written to it into events for the logging system. """ events = EventLoggingObserver.createWithCleanup( self, globalLogPublisher ) errors = self.render('GET', '1.1', [], ['']) def cbErrors(result): environ, startApplication = result errors = environ['wsgi.errors'] errors.write('some message\n') errors.writelines(['another\nmessage\n']) errors.flush() self.assertEqual(events[0]['message'], ('some message\n',)) self.assertEqual(events[0]['system'], 'wsgi') self.assertTrue(events[0]['isError']) self.assertEqual(events[1]['message'], ('another\nmessage\n',)) self.assertEqual(events[1]['system'], 'wsgi') self.assertTrue(events[1]['isError']) self.assertEqual(len(events), 2) errors.addCallback(cbErrors) return errors
The C{'wsgi.errors'} key of the C{environ} C{dict} passed to the application is a file-like object (as defined in the U{Input and Errors Streams<http://www.python.org/dev/peps/pep-0333/#input-and-error-streams>} section of PEP 333) which converts bytes written to it into events for the logging system.
test_wsgiErrors
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiErrorsExpectsOnlyNativeStringsInPython2(self): """ The C{'wsgi.errors'} file-like object from the C{environ} C{dict} expects writes of only native strings in Python 2. Some existing WSGI applications may write non-native (i.e. C{unicode}) strings so, for compatibility, these elicit only a warning in Python 2. """ if _PY3: raise SkipTest("Not relevant in Python 3") request, result = self.prepareRequest() request.requestReceived() environ, _ = self.successResultOf(result) errors = environ["wsgi.errors"] with warnings.catch_warnings(record=True) as caught: errors.write(u"fred") self.assertEqual(1, len(caught)) self.assertEqual(UnicodeWarning, caught[0].category) self.assertEqual( "write() argument should be str, not u'fred' (unicode)", str(caught[0].message))
The C{'wsgi.errors'} file-like object from the C{environ} C{dict} expects writes of only native strings in Python 2. Some existing WSGI applications may write non-native (i.e. C{unicode}) strings so, for compatibility, these elicit only a warning in Python 2.
test_wsgiErrorsExpectsOnlyNativeStringsInPython2
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_wsgiErrorsAcceptsOnlyNativeStringsInPython3(self): """ The C{'wsgi.errors'} file-like object from the C{environ} C{dict} permits writes of only native strings in Python 3, and raises C{TypeError} for writes of non-native strings. """ if not _PY3: raise SkipTest("Relevant only in Python 3") request, result = self.prepareRequest() request.requestReceived() environ, _ = self.successResultOf(result) errors = environ["wsgi.errors"] error = self.assertRaises(TypeError, errors.write, b"fred") self.assertEqual( "write() argument must be str, not b'fred' (bytes)", str(error))
The C{'wsgi.errors'} file-like object from the C{environ} C{dict} permits writes of only native strings in Python 3, and raises C{TypeError} for writes of non-native strings.
test_wsgiErrorsAcceptsOnlyNativeStringsInPython3
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readAll(self): """ Calling L{_InputStream.read} with no arguments returns the entire input stream. """ bytes = b"some bytes are here" d = self._renderAndReturnReaderResult(lambda input: input.read(), bytes) d.addCallback(self.assertEqual, bytes) return d
Calling L{_InputStream.read} with no arguments returns the entire input stream.
test_readAll
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readSome(self): """ Calling L{_InputStream.read} with an integer returns that many bytes from the input stream, as long as it is less than or equal to the total number of bytes available. """ bytes = b"hello, world." d = self._renderAndReturnReaderResult(lambda input: input.read(3), bytes) d.addCallback(self.assertEqual, b"hel") return d
Calling L{_InputStream.read} with an integer returns that many bytes from the input stream, as long as it is less than or equal to the total number of bytes available.
test_readSome
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readMoreThan(self): """ Calling L{_InputStream.read} with an integer that is greater than the total number of bytes in the input stream returns all bytes in the input stream. """ bytes = b"some bytes are here" d = self._renderAndReturnReaderResult( lambda input: input.read(len(bytes) + 3), bytes) d.addCallback(self.assertEqual, bytes) return d
Calling L{_InputStream.read} with an integer that is greater than the total number of bytes in the input stream returns all bytes in the input stream.
test_readMoreThan
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readTwice(self): """ Calling L{_InputStream.read} a second time returns bytes starting from the position after the last byte returned by the previous read. """ bytes = b"some bytes, hello" def read(input): input.read(3) return input.read() d = self._renderAndReturnReaderResult(read, bytes) d.addCallback(self.assertEqual, bytes[3:]) return d
Calling L{_InputStream.read} a second time returns bytes starting from the position after the last byte returned by the previous read.
test_readTwice
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readNone(self): """ Calling L{_InputStream.read} with L{None} as an argument returns all bytes in the input stream. """ bytes = b"the entire stream" d = self._renderAndReturnReaderResult( lambda input: input.read(None), bytes) d.addCallback(self.assertEqual, bytes) return d
Calling L{_InputStream.read} with L{None} as an argument returns all bytes in the input stream.
test_readNone
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readNegative(self): """ Calling L{_InputStream.read} with a negative integer as an argument returns all bytes in the input stream. """ bytes = b"all of the input" d = self._renderAndReturnReaderResult( lambda input: input.read(-1), bytes) d.addCallback(self.assertEqual, bytes) return d
Calling L{_InputStream.read} with a negative integer as an argument returns all bytes in the input stream.
test_readNegative
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readline(self): """ Calling L{_InputStream.readline} with no argument returns one line from the input stream. """ bytes = b"hello\nworld" d = self._renderAndReturnReaderResult( lambda input: input.readline(), bytes) d.addCallback(self.assertEqual, b"hello\n") return d
Calling L{_InputStream.readline} with no argument returns one line from the input stream.
test_readline
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlineSome(self): """ Calling L{_InputStream.readline} with an integer returns at most that many bytes, even if it is not enough to make up a complete line. COMPATIBILITY NOTE: the size argument is excluded from the WSGI specification, but is provided here anyhow, because useful libraries such as python stdlib's cgi.py assume their input file-like-object supports readline with a size argument. If you use it, be aware your application may not be portable to other conformant WSGI servers. """ bytes = b"goodbye\nworld" d = self._renderAndReturnReaderResult( lambda input: input.readline(3), bytes) d.addCallback(self.assertEqual, b"goo") return d
Calling L{_InputStream.readline} with an integer returns at most that many bytes, even if it is not enough to make up a complete line. COMPATIBILITY NOTE: the size argument is excluded from the WSGI specification, but is provided here anyhow, because useful libraries such as python stdlib's cgi.py assume their input file-like-object supports readline with a size argument. If you use it, be aware your application may not be portable to other conformant WSGI servers.
test_readlineSome
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlineMoreThan(self): """ Calling L{_InputStream.readline} with an integer which is greater than the number of bytes in the next line returns only the next line. """ bytes = b"some lines\nof text" d = self._renderAndReturnReaderResult( lambda input: input.readline(20), bytes) d.addCallback(self.assertEqual, b"some lines\n") return d
Calling L{_InputStream.readline} with an integer which is greater than the number of bytes in the next line returns only the next line.
test_readlineMoreThan
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlineTwice(self): """ Calling L{_InputStream.readline} a second time returns the line following the line returned by the first call. """ bytes = b"first line\nsecond line\nlast line" def readline(input): input.readline() return input.readline() d = self._renderAndReturnReaderResult(readline, bytes) d.addCallback(self.assertEqual, b"second line\n") return d
Calling L{_InputStream.readline} a second time returns the line following the line returned by the first call.
test_readlineTwice
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlineNone(self): """ Calling L{_InputStream.readline} with L{None} as an argument returns one line from the input stream. """ bytes = b"this is one line\nthis is another line" d = self._renderAndReturnReaderResult( lambda input: input.readline(None), bytes) d.addCallback(self.assertEqual, b"this is one line\n") return d
Calling L{_InputStream.readline} with L{None} as an argument returns one line from the input stream.
test_readlineNone
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlineNegative(self): """ Calling L{_InputStream.readline} with a negative integer as an argument returns one line from the input stream. """ bytes = b"input stream line one\nline two" d = self._renderAndReturnReaderResult( lambda input: input.readline(-1), bytes) d.addCallback(self.assertEqual, b"input stream line one\n") return d
Calling L{_InputStream.readline} with a negative integer as an argument returns one line from the input stream.
test_readlineNegative
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlines(self): """ Calling L{_InputStream.readlines} with no arguments returns a list of all lines from the input stream. """ bytes = b"alice\nbob\ncarol" d = self._renderAndReturnReaderResult( lambda input: input.readlines(), bytes) d.addCallback(self.assertEqual, [b"alice\n", b"bob\n", b"carol"]) return d
Calling L{_InputStream.readlines} with no arguments returns a list of all lines from the input stream.
test_readlines
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlinesSome(self): """ Calling L{_InputStream.readlines} with an integer as an argument returns a list of lines from the input stream with the argument serving as an approximate bound on the total number of bytes to read. """ bytes = b"123\n456\n789\n0" d = self._renderAndReturnReaderResult( lambda input: input.readlines(5), bytes) def cbLines(lines): # Make sure we got enough lines to make 5 bytes. Anything beyond # that is fine too. self.assertEqual(lines[:2], [b"123\n", b"456\n"]) d.addCallback(cbLines) return d
Calling L{_InputStream.readlines} with an integer as an argument returns a list of lines from the input stream with the argument serving as an approximate bound on the total number of bytes to read.
test_readlinesSome
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlinesMoreThan(self): """ Calling L{_InputStream.readlines} with an integer which is greater than the total number of bytes in the input stream returns a list of all lines from the input. """ bytes = b"one potato\ntwo potato\nthree potato" d = self._renderAndReturnReaderResult( lambda input: input.readlines(100), bytes) d.addCallback( self.assertEqual, [b"one potato\n", b"two potato\n", b"three potato"]) return d
Calling L{_InputStream.readlines} with an integer which is greater than the total number of bytes in the input stream returns a list of all lines from the input.
test_readlinesMoreThan
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlinesAfterRead(self): """ Calling L{_InputStream.readlines} after a call to L{_InputStream.read} returns lines starting at the byte after the last byte returned by the C{read} call. """ bytes = b"hello\nworld\nfoo" def readlines(input): input.read(7) return input.readlines() d = self._renderAndReturnReaderResult(readlines, bytes) d.addCallback(self.assertEqual, [b"orld\n", b"foo"]) return d
Calling L{_InputStream.readlines} after a call to L{_InputStream.read} returns lines starting at the byte after the last byte returned by the C{read} call.
test_readlinesAfterRead
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlinesNone(self): """ Calling L{_InputStream.readlines} with L{None} as an argument returns all lines from the input. """ bytes = b"one fish\ntwo fish\n" d = self._renderAndReturnReaderResult( lambda input: input.readlines(None), bytes) d.addCallback(self.assertEqual, [b"one fish\n", b"two fish\n"]) return d
Calling L{_InputStream.readlines} with L{None} as an argument returns all lines from the input.
test_readlinesNone
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_readlinesNegative(self): """ Calling L{_InputStream.readlines} with a negative integer as an argument returns a list of all lines from the input. """ bytes = b"red fish\nblue fish\n" d = self._renderAndReturnReaderResult( lambda input: input.readlines(-1), bytes) d.addCallback(self.assertEqual, [b"red fish\n", b"blue fish\n"]) return d
Calling L{_InputStream.readlines} with a negative integer as an argument returns a list of all lines from the input.
test_readlinesNegative
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_iterable(self): """ Iterating over L{_InputStream} produces lines from the input stream. """ bytes = b"green eggs\nand ham\n" d = self._renderAndReturnReaderResult(lambda input: list(input), bytes) d.addCallback(self.assertEqual, [b"green eggs\n", b"and ham\n"]) return d
Iterating over L{_InputStream} produces lines from the input stream.
test_iterable
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_iterableAfterRead(self): """ Iterating over L{_InputStream} after calling L{_InputStream.read} produces lines from the input stream starting from the first byte after the last byte returned by the C{read} call. """ bytes = b"green eggs\nand ham\n" def iterate(input): input.read(3) return list(input) d = self._renderAndReturnReaderResult(iterate, bytes) d.addCallback(self.assertEqual, [b"en eggs\n", b"and ham\n"]) return d
Iterating over L{_InputStream} after calling L{_InputStream.read} produces lines from the input stream starting from the first byte after the last byte returned by the C{read} call.
test_iterableAfterRead
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_status(self): """ The response status passed to the I{start_response} callable is written as the status of the response to the request. """ channel = DummyChannel() def applicationFactory(): def application(environ, startResponse): startResponse('107 Strange message', []) return iter(()) return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertTrue( channel.transport.written.getvalue().startswith( b'HTTP/1.1 107 Strange message')) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
The response status passed to the I{start_response} callable is written as the status of the response to the request.
test_status
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_statusMustBeNativeString(self): """ The response status passed to the I{start_response} callable MUST be a native string in Python 2 and Python 3. """ status = b"200 OK" if _PY3 else u"200 OK" def application(environ, startResponse): startResponse(status, []) return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): if _PY3: self.assertEqual( "status must be str, not b'200 OK' (bytes)", str(error)) else: self.assertEqual( "status must be str, not u'200 OK' (unicode)", str(error)) return self.assertFailure(result, TypeError).addCallback(checkMessage)
The response status passed to the I{start_response} callable MUST be a native string in Python 2 and Python 3.
test_statusMustBeNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def _headersTest(self, appHeaders, expectedHeaders): """ Verify that if the response headers given by C{appHeaders} are passed to the I{start_response} callable, then the response header lines given by C{expectedHeaders} plus I{Server} and I{Date} header lines are included in the response. """ # Make the Date header value deterministic self.patch(http, 'datetimeToString', lambda: 'Tuesday') channel = DummyChannel() def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', appHeaders) return iter(()) return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): response = channel.transport.written.getvalue() headers, rest = response.split(b'\r\n\r\n', 1) headerLines = headers.split(b'\r\n')[1:] headerLines.sort() allExpectedHeaders = expectedHeaders + [ b'Date: Tuesday', b'Server: ' + version, b'Transfer-Encoding: chunked'] allExpectedHeaders.sort() self.assertEqual(headerLines, allExpectedHeaders) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
Verify that if the response headers given by C{appHeaders} are passed to the I{start_response} callable, then the response header lines given by C{expectedHeaders} plus I{Server} and I{Date} header lines are included in the response.
_headersTest
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headers(self): """ The headers passed to the I{start_response} callable are included in the response as are the required I{Date} and I{Server} headers and the necessary connection (hop to hop) header I{Transfer-Encoding}. """ return self._headersTest( [('foo', 'bar'), ('baz', 'quux')], [b'Baz: quux', b'Foo: bar'])
The headers passed to the I{start_response} callable are included in the response as are the required I{Date} and I{Server} headers and the necessary connection (hop to hop) header I{Transfer-Encoding}.
test_headers
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headersMustBeSequence(self): """ The headers passed to the I{start_response} callable MUST be a sequence. """ headers = [("key", "value")] def application(environ, startResponse): startResponse("200 OK", iter(headers)) return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): self.assertRegex( str(error), "headers must be a list, not " r"<(list_?|sequence)iterator .+> [(]\1iterator[)]") return self.assertFailure(result, TypeError).addCallback(checkMessage)
The headers passed to the I{start_response} callable MUST be a sequence.
test_headersMustBeSequence
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headersShouldBePlainList(self): """ According to PEP-3333, the headers passed to the I{start_response} callable MUST be a plain list: The response_headers argument ... must be a Python list; i.e. type(response_headers) is ListType However, for bug-compatibility, any sequence is accepted. In both Python 2 and Python 3, only a warning is issued when a sequence other than a list is encountered. """ def application(environ, startResponse): startResponse("200 OK", (("not", "list"),)) return iter(()) request, result = self.prepareRequest(application) with warnings.catch_warnings(record=True) as caught: request.requestReceived() result = self.successResultOf(result) self.assertEqual(1, len(caught)) self.assertEqual(RuntimeWarning, caught[0].category) self.assertEqual( "headers should be a list, not (('not', 'list'),) (tuple)", str(caught[0].message))
According to PEP-3333, the headers passed to the I{start_response} callable MUST be a plain list: The response_headers argument ... must be a Python list; i.e. type(response_headers) is ListType However, for bug-compatibility, any sequence is accepted. In both Python 2 and Python 3, only a warning is issued when a sequence other than a list is encountered.
test_headersShouldBePlainList
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headersMustEachBeSequence(self): """ Each header passed to the I{start_response} callable MUST be a sequence. """ header = ("key", "value") def application(environ, startResponse): startResponse("200 OK", [iter(header)]) return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): self.assertRegex( str(error), "header must be a [(]str, str[)] tuple, not " r"<(tuple_?|sequence)iterator .+> [(]\1iterator[)]") return self.assertFailure(result, TypeError).addCallback(checkMessage)
Each header passed to the I{start_response} callable MUST be a sequence.
test_headersMustEachBeSequence
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headersShouldEachBeTuple(self): """ According to PEP-3333, each header passed to the I{start_response} callable should be a tuple: The response_headers argument is a list of (header_name, header_value) tuples However, for bug-compatibility, any 2 element sequence is also accepted. In both Python 2 and Python 3, only a warning is issued when a sequence other than a tuple is encountered. """ def application(environ, startResponse): startResponse("200 OK", [["not", "tuple"]]) return iter(()) request, result = self.prepareRequest(application) with warnings.catch_warnings(record=True) as caught: request.requestReceived() result = self.successResultOf(result) self.assertEqual(1, len(caught)) self.assertEqual(RuntimeWarning, caught[0].category) self.assertEqual( "header should be a (str, str) tuple, not ['not', 'tuple'] (list)", str(caught[0].message))
According to PEP-3333, each header passed to the I{start_response} callable should be a tuple: The response_headers argument is a list of (header_name, header_value) tuples However, for bug-compatibility, any 2 element sequence is also accepted. In both Python 2 and Python 3, only a warning is issued when a sequence other than a tuple is encountered.
test_headersShouldEachBeTuple
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headersShouldEachHaveKeyAndValue(self): """ Each header passed to the I{start_response} callable MUST hold a key and a value, and ONLY a key and a value. """ def application(environ, startResponse): startResponse("200 OK", [("too", "many", "cooks")]) return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): self.assertEqual( "header must be a (str, str) tuple, not " "('too', 'many', 'cooks')", str(error)) return self.assertFailure(result, TypeError).addCallback(checkMessage)
Each header passed to the I{start_response} callable MUST hold a key and a value, and ONLY a key and a value.
test_headersShouldEachHaveKeyAndValue
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headerKeyMustBeNativeString(self): """ Each header key passed to the I{start_response} callable MUST be at native string in Python 2 and Python 3. """ key = b"key" if _PY3 else u"key" def application(environ, startResponse): startResponse("200 OK", [(key, "value")]) return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): self.assertEqual( "header must be (str, str) tuple, not (%r, 'value')" % (key,), str(error)) return self.assertFailure(result, TypeError).addCallback(checkMessage)
Each header key passed to the I{start_response} callable MUST be at native string in Python 2 and Python 3.
test_headerKeyMustBeNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_headerValueMustBeNativeString(self): """ Each header value passed to the I{start_response} callable MUST be at native string in Python 2 and Python 3. """ value = b"value" if _PY3 else u"value" def application(environ, startResponse): startResponse("200 OK", [("key", value)]) return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): self.assertEqual( "header must be (str, str) tuple, not ('key', %r)" % (value,), str(error)) return self.assertFailure(result, TypeError).addCallback(checkMessage)
Each header value passed to the I{start_response} callable MUST be at native string in Python 2 and Python 3.
test_headerValueMustBeNativeString
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_applicationProvidedContentType(self): """ If I{Content-Type} is included in the headers passed to the I{start_response} callable, one I{Content-Type} header is included in the response. """ return self._headersTest( [('content-type', 'monkeys are great')], [b'Content-Type: monkeys are great'])
If I{Content-Type} is included in the headers passed to the I{start_response} callable, one I{Content-Type} header is included in the response.
test_applicationProvidedContentType
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_applicationProvidedServerAndDate(self): """ If either I{Server} or I{Date} is included in the headers passed to the I{start_response} callable, they are disregarded. """ return self._headersTest( [('server', 'foo'), ('Server', 'foo'), ('date', 'bar'), ('dATE', 'bar')], [])
If either I{Server} or I{Date} is included in the headers passed to the I{start_response} callable, they are disregarded.
test_applicationProvidedServerAndDate
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_delayedUntilReturn(self): """ Nothing is written in response to a request when the I{start_response} callable is invoked. If the iterator returned by the application object produces only empty strings, the response is written after the last element is produced. """ channel = DummyChannel() intermediateValues = [] def record(): intermediateValues.append(channel.transport.written.getvalue()) def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', [('foo', 'bar'), ('baz', 'quux')]) yield b'' record() return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertEqual(intermediateValues, [b'']) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
Nothing is written in response to a request when the I{start_response} callable is invoked. If the iterator returned by the application object produces only empty strings, the response is written after the last element is produced.
test_delayedUntilReturn
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_delayedUntilContent(self): """ Nothing is written in response to a request when the I{start_response} callable is invoked. Once a non-empty string has been produced by the iterator returned by the application object, the response status and headers are written. """ channel = DummyChannel() intermediateValues = [] def record(): intermediateValues.append(channel.transport.written.getvalue()) def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', [('foo', 'bar')]) yield b'' record() yield b'foo' record() return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertFalse(intermediateValues[0]) self.assertTrue(intermediateValues[1]) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
Nothing is written in response to a request when the I{start_response} callable is invoked. Once a non-empty string has been produced by the iterator returned by the application object, the response status and headers are written.
test_delayedUntilContent
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_content(self): """ Content produced by the iterator returned by the application object is written to the request as it is produced. """ channel = DummyChannel() intermediateValues = [] def record(): intermediateValues.append(channel.transport.written.getvalue()) def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', [('content-length', '6')]) yield b'foo' record() yield b'bar' record() return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertEqual( self.getContentFromResponse(intermediateValues[0]), b'foo') self.assertEqual( self.getContentFromResponse(intermediateValues[1]), b'foobar') d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
Content produced by the iterator returned by the application object is written to the request as it is produced.
test_content
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_multipleStartResponse(self): """ If the I{start_response} callable is invoked multiple times before a data for the response body is produced, the values from the last call are used. """ channel = DummyChannel() def applicationFactory(): def application(environ, startResponse): startResponse('100 Foo', []) startResponse('200 Bar', []) return iter(()) return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertTrue( channel.transport.written.getvalue().startswith( b'HTTP/1.1 200 Bar\r\n')) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
If the I{start_response} callable is invoked multiple times before a data for the response body is produced, the values from the last call are used.
test_multipleStartResponse
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_startResponseWithException(self): """ If the I{start_response} callable is invoked with a third positional argument before the status and headers have been written to the response, the status and headers become the newly supplied values. """ channel = DummyChannel() def applicationFactory(): def application(environ, startResponse): startResponse('100 Foo', [], (Exception, Exception("foo"), None)) return iter(()) return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertTrue( channel.transport.written.getvalue().startswith( b'HTTP/1.1 100 Foo\r\n')) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
If the I{start_response} callable is invoked with a third positional argument before the status and headers have been written to the response, the status and headers become the newly supplied values.
test_startResponseWithException
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_startResponseWithExceptionTooLate(self): """ If the I{start_response} callable is invoked with a third positional argument after the status and headers have been written to the response, the supplied I{exc_info} values are re-raised to the application. """ channel = DummyChannel() class SomeException(Exception): pass try: raise SomeException() except: excInfo = exc_info() reraised = [] def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', []) yield b'foo' try: startResponse('500 ERR', [], excInfo) except: reraised.append(exc_info()) return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertTrue( channel.transport.written.getvalue().startswith( b'HTTP/1.1 200 OK\r\n')) self.assertEqual(reraised[0][0], excInfo[0]) self.assertEqual(reraised[0][1], excInfo[1]) # Show that the tracebacks end with the same stack frames. tb1 = reraised[0][2].tb_next tb2 = excInfo[2] self.assertEqual( # On Python 2 (str is bytes) we need to move back only one # stack frame to skip. On Python 3 we need to move two frames. traceback.extract_tb(tb1)[1 if str is bytes else 2], traceback.extract_tb(tb2)[0] ) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
If the I{start_response} callable is invoked with a third positional argument after the status and headers have been written to the response, the supplied I{exc_info} values are re-raised to the application.
test_startResponseWithExceptionTooLate
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_write(self): """ I{start_response} returns the I{write} callable which can be used to write bytes to the response body without buffering. """ channel = DummyChannel() intermediateValues = [] def record(): intermediateValues.append(channel.transport.written.getvalue()) def applicationFactory(): def application(environ, startResponse): write = startResponse('100 Foo', [('content-length', '6')]) write(b'foo') record() write(b'bar') record() return iter(()) return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertEqual( self.getContentFromResponse(intermediateValues[0]), b'foo') self.assertEqual( self.getContentFromResponse(intermediateValues[1]), b'foobar') d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], [''], None, []) return d
I{start_response} returns the I{write} callable which can be used to write bytes to the response body without buffering.
test_write
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_writeAcceptsOnlyByteStrings(self): """ The C{write} callable returned from C{start_response} only accepts byte strings. """ def application(environ, startResponse): write = startResponse("200 OK", []) write(u"bogus") return iter(()) request, result = self.prepareRequest(application) request.requestReceived() def checkMessage(error): if _PY3: self.assertEqual( "Can only write bytes to a transport, not 'bogus'", str(error)) else: self.assertEqual( "Can only write bytes to a transport, not u'bogus'", str(error)) return self.assertFailure(result, TypeError).addCallback(checkMessage)
The C{write} callable returned from C{start_response} only accepts byte strings.
test_writeAcceptsOnlyByteStrings
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_close(self): """ If the application object returns an iterator which also has a I{close} method, that method is called after iteration is complete. """ channel = DummyChannel() class Result: def __init__(self): self.open = True def __iter__(self): for i in range(3): if self.open: yield intToBytes(i) def close(self): self.open = False result = Result() def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', [('content-length', '3')]) return result return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertEqual( self.getContentFromResponse( channel.transport.written.getvalue()), b'012') self.assertFalse(result.open) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, lambda: channel, 'GET', '1.1', [], ['']) return d
If the application object returns an iterator which also has a I{close} method, that method is called after iteration is complete.
test_close
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_applicationCalledInThread(self): """ The application object is invoked and iterated in a thread which is not the reactor thread. """ self.enableThreads() invoked = [] def applicationFactory(): def application(environ, startResponse): def result(): for i in range(3): invoked.append(getThreadID()) yield intToBytes(i) invoked.append(getThreadID()) startResponse('200 OK', [('content-length', '3')]) return result() return application d, requestFactory = self.requestFactoryFactory() def cbRendered(ignored): self.assertNotIn(getThreadID(), invoked) self.assertEqual(len(set(invoked)), 1) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, DummyChannel, 'GET', '1.1', [], ['']) return d
The application object is invoked and iterated in a thread which is not the reactor thread.
test_applicationCalledInThread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_writeCalledFromThread(self): """ The I{write} callable returned by I{start_response} calls the request's C{write} method in the reactor thread. """ self.enableThreads() invoked = [] class ThreadVerifier(Request): def write(self, bytes): invoked.append(getThreadID()) return Request.write(self, bytes) def applicationFactory(): def application(environ, startResponse): write = startResponse('200 OK', []) write(b'foo') return iter(()) return application d, requestFactory = self.requestFactoryFactory(ThreadVerifier) def cbRendered(ignored): self.assertEqual(set(invoked), set([getThreadID()])) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, DummyChannel, 'GET', '1.1', [], ['']) return d
The I{write} callable returned by I{start_response} calls the request's C{write} method in the reactor thread.
test_writeCalledFromThread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT
def test_iteratedValuesWrittenFromThread(self): """ Strings produced by the iterator returned by the application object are written to the request in the reactor thread. """ self.enableThreads() invoked = [] class ThreadVerifier(Request): def write(self, bytes): invoked.append(getThreadID()) return Request.write(self, bytes) def applicationFactory(): def application(environ, startResponse): startResponse('200 OK', []) yield b'foo' return application d, requestFactory = self.requestFactoryFactory(ThreadVerifier) def cbRendered(ignored): self.assertEqual(set(invoked), set([getThreadID()])) d.addCallback(cbRendered) self.lowLevelRender( requestFactory, applicationFactory, DummyChannel, 'GET', '1.1', [], ['']) return d
Strings produced by the iterator returned by the application object are written to the request in the reactor thread.
test_iteratedValuesWrittenFromThread
python
wistbean/learn_python3_spider
stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
https://github.com/wistbean/learn_python3_spider/blob/master/stackoverflow/venv/lib/python3.6/site-packages/twisted/web/test/test_wsgi.py
MIT