X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osmclient%2Fsol005%2Fwim.py;h=f9d2431198e9fc569e2b091585f230a492e7f457;hb=09bb6134d43ca1449fbc2ccf7430de0da4f1e109;hp=b5a03b856b556326166f3c4fa3692da5a89b6b50;hpb=70d6f1843686f323ced68a253127fedde86a1c25;p=osm%2Fosmclient.git diff --git a/osmclient/sol005/wim.py b/osmclient/sol005/wim.py index b5a03b8..f9d2431 100644 --- a/osmclient/sol005/wim.py +++ b/osmclient/sol005/wim.py @@ -21,7 +21,6 @@ OSM wim API handling from osmclient.common import utils from osmclient.common import wait as WaitForStatus from osmclient.common.exceptions import ClientException -from osmclient.common.exceptions import OsmHttpException from osmclient.common.exceptions import NotFound import yaml import json @@ -93,7 +92,7 @@ class Wim(object): if resp: resp = json.loads(resp) if not resp or 'id' not in resp: - raise OsmHttpException('unexpected response from server - {}'.format( + raise ClientException('unexpected response from server - {}'.format( resp)) if wait: # Wait for status for WIM instance creation @@ -137,8 +136,8 @@ class Wim(object): wait_id = wim_id_for_wait # Wait for status for WIM instance update self._wait(wait_id) - else: - pass + # else: + # pass #else: # msg = "" # if resp: @@ -197,13 +196,13 @@ class Wim(object): elif http_code == 204: print('Deleted') else: - msg = "" - if resp: - try: - msg = json.loads(resp) - except ValueError: - msg = resp - raise OsmHttpException("failed to delete wim {} - {}".format(wim_name, msg)) + msg = resp or "" + # if resp: + # try: + # msg = json.loads(resp) + # except ValueError: + # msg = resp + raise ClientException("failed to delete wim {} - {}".format(wim_name, msg)) def list(self, filter=None): """Returns a list of VIM accounts @@ -230,12 +229,13 @@ class Wim(object): wim_id = name if not utils.validate_uuid4(name): wim_id = self.get_id(name) - _, resp = self._http.get2_cmd('{}/{}'.format(self._apiBase,wim_id)) -# if not resp or '_id' not in resp: -# raise ClientException('failed to get wim info: '.format( -# resp)) -# else: - if resp: - return json.loads(resp) - raise NotFound("wim {} not found".format(name)) + try: + _, resp = self._http.get2_cmd('{}/{}'.format(self._apiBase,wim_id)) + if resp: + resp = json.loads(resp) + if not resp or '_id' not in resp: + raise ClientException('failed to get wim info: '.format(resp)) + return resp + except NotFound: + raise NotFound("wim '{}' not found".format(name))