From 4b5b0b6edf809dbca0069f00c4cdbd04f532c772 Mon Sep 17 00:00:00 2001 From: Brian Waldon Date: Wed, 10 Aug 2011 13:46:34 -0400 Subject: [PATCH] adding unittest --- setup.cfg | 1 - tests/test_http.py | 11 +++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 13be0b4ce..f7dc87f41 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,4 @@ [nosetests] -with-coverage = true cover-package = novaclient cover-html = true cover-erase = true diff --git a/tests/test_http.py b/tests/test_http.py index 77f2de153..5c8085662 100644 --- a/tests/test_http.py +++ b/tests/test_http.py @@ -2,6 +2,7 @@ import httplib2 import mock from novaclient import client +from novaclient import exceptions from tests import utils @@ -54,3 +55,13 @@ class ClientTest(utils.TestCase): headers=headers, body='[1, 2, 3]') test_post_call() + + def test_auth_failure(self): + cl = get_client() + + # response must not have x-server-management-url header + @mock.patch.object(httplib2.Http, "request", mock_request) + def test_auth_call(): + self.assertRaises(exceptions.AuthorizationFailure, cl.authenticate) + + test_auth_call()