class documentation

class TestAuthHeader(Test): (source)

View In Hierarchy

This is used to get the header info so that we can test authentication.

Method __init__ Initialize.
Method render Render a given resource. See IResource's render method.
Method xmlrpc_authinfo Undocumented
Instance Variable request Undocumented

Inherited from Test:

Method lookupProcedure Given a string naming a procedure, return a callable object for that procedure or raise NoSuchFunction.
Method xmlrpc_add This function add two numbers.
Method xmlrpc_complex Undocumented
Method xmlrpc_defer Help for defer.
Method xmlrpc_deferFail Undocumented
Method xmlrpc_deferFault Undocumented
Method xmlrpc_dict Undocumented
Method xmlrpc_echo Undocumented
Method xmlrpc_fail Undocumented
Method xmlrpc_fault Undocumented
Method xmlrpc_pair This function puts the two arguments in an array.
Method xmlrpc_snowman Used to test that we can pass Unicode.
Method xmlrpc_withRequest A method decorated with withRequest which can be called by a test to verify that the request object really is passed as an argument.
Constant FAILURE Undocumented
Constant NOT_FOUND Undocumented
Constant SESSION_EXPIRED Undocumented

Inherited from XMLRPC (via Test):

Method __setattr__ Undocumented
Method getSubHandler Undocumented
Method getSubHandlerPrefixes Undocumented
Method listProcedures Return a list of the names of all xmlrpc procedures.
Method putSubHandler Undocumented
Method render_POST Undocumented
Class Variable allowedMethods Undocumented
Class Variable isLeaf Signal if this IResource implementor is a "leaf node" or not. If True, getChildWithDefault will not be called on this Resource.
Class Variable separator Undocumented
Instance Variable allowNone Permit XML translating of Python constant None.
Instance Variable subHandlers Undocumented
Instance Variable useDateTime Present datetime values as datetime.datetime objects?
Method _cbRender Undocumented
Method _ebRender Undocumented
Class Variable _log Undocumented

Inherited from Resource (via Test, XMLRPC):

Method delEntity Undocumented
Method getChild Retrieve a 'child' resource from me.
Method getChildForRequest Deprecated in favor of getChildForRequest.
Method getChildWithDefault Retrieve a static or dynamically generated child resource from me.
Method getDynamicEntity Undocumented
Method getStaticEntity Undocumented
Method listDynamicEntities Undocumented
Method listDynamicNames Undocumented
Method listEntities Undocumented
Method listNames Undocumented
Method listStaticEntities Undocumented
Method listStaticNames Undocumented
Method putChild Register a static child.
Method reallyPutEntity Undocumented
Method render_HEAD Default handling of HEAD method.
Class Variable server Undocumented
Instance Variable children Undocumented
def __init__(self): (source)

Initialize.

def render(self, request): (source)

Render a given resource. See IResource's render method.

I delegate to methods of self with the form 'render_METHOD' where METHOD is the HTTP that was used to make the request. Examples: render_GET, render_HEAD, render_POST, and so on. Generally you should implement those methods instead of overriding this one.

render_METHOD methods are expected to return a byte string which will be the rendered page, unless the return value is server.NOT_DONE_YET, in which case it is this class's responsibility to write the results using request.write(data) and then call request.finish().

Old code that overrides render() directly is likewise expected to return a byte string or NOT_DONE_YET.

See Also
IResource.render
def xmlrpc_authinfo(self): (source)

Undocumented

Undocumented