diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/.testr.conf | 3 | ||||
-rw-r--r-- | client/escalatorclient/v1/shell.py | 2 | ||||
-rw-r--r-- | client/escalatorclient/v1/versions.py | 9 | ||||
-rw-r--r-- | client/test-requirements.txt | 24 | ||||
-rw-r--r-- | client/tox.ini | 4 |
5 files changed, 34 insertions, 8 deletions
diff --git a/client/.testr.conf b/client/.testr.conf new file mode 100644 index 0000000..804da37 --- /dev/null +++ b/client/.testr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_command=${PYTHON:-python} -m unittest discover $LISTOPT +test_list_option= diff --git a/client/escalatorclient/v1/shell.py b/client/escalatorclient/v1/shell.py index f926a8a..fbc2459 100644 --- a/client/escalatorclient/v1/shell.py +++ b/client/escalatorclient/v1/shell.py @@ -149,7 +149,7 @@ def do_version_delete(dc, args): @utils.arg('--sort-dir', default='asc', choices=escalatorclient.v1.versions.SORT_DIR_VALUES, help='Sort version list in specified direction.') -def do_version_list(dc, args): +def do_cluster_version_list(dc, args): """List hosts you can access.""" filter_keys = ['name', 'type', 'status', 'version'] filter_items = [(key, getattr(args, key)) for key in filter_keys] diff --git a/client/escalatorclient/v1/versions.py b/client/escalatorclient/v1/versions.py index f54ea23..f98a3ed 100644 --- a/client/escalatorclient/v1/versions.py +++ b/client/escalatorclient/v1/versions.py @@ -22,6 +22,7 @@ import six.moves.urllib.parse as urlparse from escalatorclient.common import utils from escalatorclient.openstack.common.apiclient import base +from escalatorclient.common.http import HTTPClient CREATE_PARAMS = ('id', 'name', 'description', 'type', 'version', 'size', 'checksum', 'status', 'os_status', 'version_patch') @@ -53,8 +54,14 @@ class Version(base.Resource): class VersionManager(base.ManagerWithFind): resource_class = Version + def get_version_client(self): + endpoint = "http://127.0.0.1:19292" + client = HTTPClient(endpoint) + return client + def _list(self, url, response_key, obj_class=None, body=None): - resp, body = self.client.get(url) + version_client = self.get_version_client() + resp, body = version_client.get(url) if obj_class is None: obj_class = self.resource_class diff --git a/client/test-requirements.txt b/client/test-requirements.txt index 06cb4aa..975488b 100644 --- a/client/test-requirements.txt +++ b/client/test-requirements.txt @@ -1,13 +1,31 @@ # The order of packages is significant, because pip processes them in the order # of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. -hacking>=0.8.0,<0.9 +# process, which may cause wedges in the gate lbel>=1.3 +bandit>=0.17.3 coverage>=3.6 discover +fixtures>=0.3.14 mox3>=0.7.0 mock>=1.0 -oslosphinx>=2.2.0 # Apache-2.0 sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3 +requests>=2.2.0,!=2.4.0 testrepository>=0.0.18 +testscenarios>=0.4 # Apache-2.0/BSD testtools>=0.9.36,!=1.2.0 +psutil>=1.1.1,<2.0.0 +oslotest>=1.5.1,<1.6.0 # Apache-2.0 +# Optional packages that should be installed when testing +PyMySQL!=0.7.7,>=0.6.2 # MIT License +pysendfile==2.0.0 +qpid-python;python_version=='2.7' # Apache-2.0 + +# Documentation +oslosphinx>=2.5.0,<2.6.0 # Apache-2.0ater. + +#flake8 +pyflakes!=1.2.0,!=1.2.1,!=1.2.2,<1.4.0,>=0.8.1 +configparser +mccabe<0.6.0,>=0.5.0 +pycodestyle<2.3.0,>=2.0.0 +flake8 diff --git a/client/tox.ini b/client/tox.ini index eca4fd9..6a6ea7d 100644 --- a/client/tox.ini +++ b/client/tox.ini @@ -33,9 +33,7 @@ downloadcache = ~/cache/pip [flake8] # H233 Python 3.x incompatible use of print operator -# H302 import only modules -# H303 no wildcard import # H404 multi line docstring should start with a summary -ignore = F403,F812,H233,H302,H303,H404,F401,E731 +ignore = F403,F812,H233,H404,F401,E731 show-source = True exclude = .venv,.tox,dist,doc,*egg,build |