Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know this is more of a learning thing than a problem in programming but still I need to ask it.Please don't down vote it,I wouldn't have asked it here if I knew any other appropriate place.I have a view as follows:

def takedown(request,aid):
    approveobj = get_object_or_404(approve,pk=aid)

    # fetching mapping
    map = mapping.objects.get(appval=approveobj)

    try:
        # deleting option from main database
        map.optval.delete()

        # changing the status of the appval
        map.appval.status = 'Pending'
        map.appval.save()

        # finally deleting the map
        map.delete()

    except:
        print("Error in taking down the entry")

    redirect_url = "/wars/configure/"+str(map.appval.warval.id)+"/"
    return HttpResponseRedirect(redirect_url)

I want to design some tests for the above view.At present I'm checking whether it redirects to appropriate url or not.What else I can test?I need to test it thoroughly.

share|improve this question

1 Answer

up vote 1 down vote accepted

Looking at your view, I can see three other possible tests:

  • Test that the view returns status code 404 for an aid that does not exist
  • Check that the map object exists in the database. Fetch the view in your test, then check that the map object has been deleted as you expected.
  • Test that your view works as expected when there is an exception in the try except block. It's not clear what you're expecting to go wrong here. Note that because you only print the error, nothing will be displayed to the user so it's tricky to test this.
share|improve this answer
Thanks you very much.I should start writing some tests now:) – Rajat Saxena Jul 27 '12 at 9:35
One more thing.How can I load the view in my test? – Rajat Saxena Jul 27 '12 at 9:36
Use self.client.get (or self.client.POST if you're posting data to the url). There are examples in the docs. – Alasdair Jul 27 '12 at 9:39
Okay,I though by 'load' you meant something other than 'post' or 'get'.:) – Rajat Saxena Jul 27 '12 at 9:41
I wrote this test,but It is useless as it's not throwing assertion error because '2000' doesn't exist.On the real web browser my view is wroking flawlessly.What can be the problem? def test_takedown(self): # checking the view res = self.c.get('/approval/approve/2000') self.assertEqual(res.status_code,301) map = mapping.objects.all() print(len(map)) res = self.c.get('/approval/takedown/2') self.assertEqual(res.status_code,301) – Rajat Saxena Jul 27 '12 at 9:46
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.