summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--setup.cfg1
-rw-r--r--tests/test_http.py11
2 files changed, 11 insertions, 1 deletions
diff --git a/setup.cfg b/setup.cfg
index 13be0b4c..f7dc87f4 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 77f2de15..5c808566 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()