开发者

How to simulate POST arguments in python

开发者 https://www.devze.com 2023-01-20 08:21 出处:网络
I\'m trying to simulate some data in to the datastore to emulate POSTs. What I\'m looking for is a way to post named arguments but as one argument. So I can use the same method as a normal POST woul

I'm trying to simulate some data in to the datastore to emulate POSTs.

What I'm looking for is a way to post named arguments but as one argument. So I can use the same method as a normal POST would do.

The method I want to invoke get params in two ways.

def HandlePost(params):
    params.get('name')
    params.get_all('collection')

class SavePartHandler(webapp.RequestHandler):
    def post(self):
        HandlePost(self.request)

I'm trying to find out what type the self.request are but can't find it anywhere in appengines source code.

My goal is to simulate multiple POST to fill the datastore by the methods users would.

EDIT:

Or is the anyway to change the behavior of dict so it could use the get_all method?

EDIT 2:

I'm using appengins webapp.

Out of curiosity is there a way to invoke a dummy webapp.RequestHandler and populate it with arguments? I'm browsing the source code to see how it's done and made a new instance of it but can't find how to populate it.

EDIT 3:

Updated method name so it's no开发者_如何学JAVAt confused with webapp request handlers.

Thanks to pthulin I'm almost there. Only thing left is how to simulate data that has the same key. Since using a dict will override other keys with the same name. Sometimes in HTML forms a post can contain multiple values for the same key that we get with self.request.get_all('key'). So how to create a dict (or something equal) that supports multiple key=value with same key.

..fredrik


I think what you want to do is prepare a webapp Request object and then call the post method of your handler:

from google.appengine.ext.webapp import Request
from google.appengine.ext.webapp import Response
from StringIO import StringIO
form = 'msg=hello'
handler.response = Response()
handler.request = Request({
    'REQUEST_METHOD': 'POST',
    'PATH_INFO': '/',
    'wsgi.input': StringIO(form),
    'CONTENT_LENGTH': len(form),
    'SERVER_NAME': 'hi',
    'SERVER_PORT': '80',
    'wsgi.url_scheme': 'http',
})
handler.post()

TIP: 'msg=hello' above works fine in this case, but to pass multiple POST parameters you need to create a URL encoded string:

>>> form = {
...     'first_name': 'Per',
...     'last_name': 'Thulin',
... }
>>> from urllib import urlencode
>>> urlencode(form)
'first_name=Per&last_name=Thulin'

If you want to pass in multiple POST parameters with the same name, I think you need to do a little bit of the url encoding work yourself. For example:

>>> from urllib import urlencode
>>> form_inputs = [
...     {'someparam': 'aaa'},
...     {'someparam': 'bbb'},
...     {'someparam': 'ccc'},
... ]
>>> '&'.join([urlencode(d) for d in form_inputs])
'someparam=aaa&someparam=bbb&someparam=ccc'

Then in the RequestHandler, you can extract the parameters with the Request.get_all method.

  • http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html
  • http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html#Request_get_all


For sure they are request objects that represents a http request. It should usually contain typical http request information like method , uri, message etc.

To find out what type self.request are, you could do introspection without the doc. if self.request is a instantiation of a class then you could obtain the class name through

print self.request.__class__

[Edit]:

The information is provided in the google app engine document

  • http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html


Yes, that can be done. Here's the webapp response handler. The way to do it is to use the response.argument() which returns a list of the data arguments. Then iterate and get(each one). Just for clarity, I show how to handle named arguments that are known ahead of time and also multiple arbitrary arguments as you ask:

from google.appengine.ext import webapp

class postHandler(webapp.RequestHandler):
def post(self):

    # Handle arguments one at a time
    var1 = self.request.get('var1')

    # or get them all and build a dict:
    args = self.request.arguments()
    arg_dict = {}
    for arg in args:
        arg_dict.update(arg: self.request.get(arg))

Here's some documentation: http://code.google.com/appengine/docs/python/tools/webapp/requestclass.html#Request_get_all

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号