Hi, If you want to add functionalities to test client, you may need to modify (or subclass, if posible ) the client code (django.test.client.Client).
I used to add ability to set, get "HTTP_HOST" environment, For example, > self.client.http_host = "google.com" So, when my I run unit test, my code still work. For your situation, you propbably add 'REMOTE_ADDR' in request environment, def request(self, **request): """ The master request method. Composes the environment dictionary and passes to the handler, returning the result of the handler. Assumes defaults for the query environment, which can be overridden using the arguments to the request. """ environ = { 'HTTP_COOKIE': self.cookies, 'PATH_INFO': '/', 'QUERY_STRING': '', 'REQUEST_METHOD': 'GET', 'SCRIPT_NAME': None, 'SERVER_NAME': 'testserver', 'SERVER_PORT': 80, 'SERVER_PROTOCOL': 'HTTP/1.1', 'REMOTE_ADDR':'127.0.0.1', } For the session, I guess you may need to do the same thing. Hope this help. Chatchai 2008/6/13 shabda <[EMAIL PROTECTED]>: > > I have some code like this, > > c = Client() > client.get('/myurl/') > > where '//myurl' calls view function, > > def foo(request): > ip_addrs = request.META['REMOTE_ADDR'] > > This view function works when I use a browser, as > request.META['REMOTE_ADDR'] is populated. But when I use test Client, > I get a keyerror, as resquests generated by Clinet() do not have > request.META['REMOTE_ADDR'] populated. > > Related question, how do I set a value on requests.sessions before > making a call to Client().get() > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---