On Dec 18, 6:16 am, sagi s <sag...@yahoo.com> wrote:
> I'd like to use the test client to verify that when there's an error
> in a form field, the input field in the
> response is populated with the original input.
>
> So I'd like to do something like:
>
> iteration = 'bad data'
> response = self.client.post('/metrics/add/', {
>                 'iteration' : iteration,
>                ... }
> ...
> self.failUnlessEqual(response.context[0]['form'].fields
> ['iteration'].value), 'bad data')
>
> Would be great to know where I can fish this from (the last line in
> the above snippet is just for illustration of how I would hope to
> access the value)
>
> Django version is 1.0, the form is a ModelForm in case it matters.
>
> Cheers

I'm not sure why you want to do this at all, or why you want to do it
in the way you describe. Django's forms framework is fully tested by
Django's own tests - your tests should concentrate on testing the code
you've actually written.

In any case, your snippet isn't verifying that the output contains the
bad value. it's verifying that the field object has the value - which
you already know, because you put it there. Again, you're testing
something that is fully covered by the built-in test framework.

If despite this you really do want to test that the output has the
value, why don't you just check the content of the response?
self.assertContains(response, ("<input id='id_iteration'
name='iteration' value='bad data'>")
or whatever the format of the output is.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
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 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to