diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-10-16 09:22:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-16 09:22:44 +0000 |
commit | 164ef1c2bf4cc3564b0044801b349f4733f2e7cf (patch) | |
tree | 6bf5adfeda59430895c0cd489dbb98449cdcb665 /utils/test/testapi/update/templates/utils.py | |
parent | ff169618789d264e1ef28205eac362dddc33f57b (diff) | |
parent | b95e0889ca5a80dc4f697845673d5471727bfc09 (diff) |
Merge changes from topics 'testapi', 'yamllint'
* changes:
delete legacy update code
fix yamllint verify fail
Diffstat (limited to 'utils/test/testapi/update/templates/utils.py')
-rw-r--r-- | utils/test/testapi/update/templates/utils.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/utils/test/testapi/update/templates/utils.py b/utils/test/testapi/update/templates/utils.py deleted file mode 100644 index 4254fee34..000000000 --- a/utils/test/testapi/update/templates/utils.py +++ /dev/null @@ -1,48 +0,0 @@ -############################################################################## -# Copyright (c) 2016 ZTE Corporation -# feng.xiaowei@zte.com.cn -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## -import os -import urlparse -import subprocess - - -def get_abspath(path): - assert os.path.isdir(path), 'Path %s can\'t be found.' % path - return os.path.abspath(path) - - -def parse_mongodb_url(url): - url = urlparse.urlparse(url) - assert url.scheme == 'mongodb', 'URL must be a MongoDB URL' - return url - - -def url_parse(url): - url = parse_mongodb_url(url) - return url.username, url.password, url.hostname, url.port - - -def execute(cmd, args): - (username, password, hostname, port) = url_parse(args.url) - cmd.extend(['--host', '%s' % hostname, '--port', '%s' % port]) - db = args.db - if db is not None: - cmd.extend(['--db', '%s' % db]) - if username is not None: - cmd.extend(['-u', '%s' % username, '-p', '%s' % password]) - print('execute: %s' % cmd) - execute_output = subprocess.check_output(cmd) - print(execute_output) - - -def main(method, parser): - args = parser.parse_args() - try: - method(args) - except AssertionError as msg: - print(msg) |