Expect 404 in unit tests, if we now use 404.
authorElrond <elrond+mediagoblin.org@samba-tng.org>
Thu, 1 Dec 2011 23:09:13 +0000 (00:09 +0100)
committerElrond <elrond+mediagoblin.org@samba-tng.org>
Thu, 1 Dec 2011 23:09:13 +0000 (00:09 +0100)
Our unit tests for auth were expecting a 400.
Well, now we give a 404. So expect that!

I'm not completely sure, if the 404 is the right thing
here, but that's another topic.

mediagoblin/tests/test_auth.py

index 153c6e53824e88fca163c6090349544238222b11..ee08576189de0d83ab136669021b37d5abb558a3 100644 (file)
@@ -280,16 +280,16 @@ def test_register_views(test_app):
     template.clear_test_template_context()
     response = test_app.get(
         "/auth/forgot_password/verify/?userid=%s&token=total_bs" % unicode(
-            new_user._id), status=400)
-    assert response.status == '400 Bad Request'
+            new_user._id), status=404)
+    assert_equal(response.status, '404 Not Found')
 
     ## Try using an expired token to change password, shouldn't work
     template.clear_test_template_context()
     real_token_expiration = new_user['fp_token_expire']
     new_user['fp_token_expire'] = datetime.datetime.now()
     new_user.save()
-    response = test_app.get("%s?%s" % (path, get_params), status=400)
-    assert response.status == '400 Bad Request'
+    response = test_app.get("%s?%s" % (path, get_params), status=404)
+    assert_equal(response.status, '404 Not Found')
     new_user['fp_token_expire'] = real_token_expiration
     new_user.save()