summaryrefslogtreecommitdiff
path: root/functional/common/test.py
diff options
context:
space:
mode:
authorKyrylo Romanenko <kromanenko@mirantis.com>2016-04-18 20:07:26 +0300
committerSteve Martinelli <stevemar@ca.ibm.com>2016-04-19 05:20:23 +0000
commitc95d68eaea8dfc36cf7ea656522fcca7ae58b1c8 (patch)
tree503624276fef8144b9d7edc4c165e25c588ce1a6 /functional/common/test.py
parent89445855acffc5ae4cf87dc501c09f3434d08bad (diff)
downloadpython-openstackclient-c95d68eaea8dfc36cf7ea656522fcca7ae58b1c8.tar.gz
Deduplicate CLI output parser code in test.py
Use methods from tempest-lib.cli.output_parser. Change-Id: I0655141a0ef967675e41b1da49cf999da3382018
Diffstat (limited to 'functional/common/test.py')
-rw-r--r--functional/common/test.py63
1 files changed, 4 insertions, 59 deletions
diff --git a/functional/common/test.py b/functional/common/test.py
index c1bf3f36..9887c765 100644
--- a/functional/common/test.py
+++ b/functional/common/test.py
@@ -17,9 +17,10 @@ import subprocess
import testtools
import six
-
+from tempest_lib.cli import output_parser
from tempest_lib import exceptions
+
COMMON_DIR = os.path.dirname(os.path.abspath(__file__))
FUNCTIONAL_DIR = os.path.normpath(os.path.join(COMMON_DIR, '..'))
ROOT_DIR = os.path.normpath(os.path.join(FUNCTIONAL_DIR, '..'))
@@ -112,7 +113,7 @@ class TestCase(testtools.TestCase):
"""Return list of dicts with item values parsed from cli output."""
items = []
- table_ = self.table(raw_output)
+ table_ = output_parser.table(raw_output)
for row in table_['values']:
item = {}
item[row[0]] = row[1]
@@ -121,60 +122,4 @@ class TestCase(testtools.TestCase):
def parse_listing(self, raw_output):
"""Return list of dicts with basic item parsed from cli output."""
-
- items = []
- table_ = self.table(raw_output)
- for row in table_['values']:
- item = {}
- for col_idx, col_key in enumerate(table_['headers']):
- item[col_key] = row[col_idx]
- items.append(item)
- return items
-
- def table(self, output_lines):
- """Parse single table from cli output.
-
- Return dict with list of column names in 'headers' key and
- rows in 'values' key.
- """
- table_ = {'headers': [], 'values': []}
- columns = None
-
- if not isinstance(output_lines, list):
- output_lines = output_lines.split('\n')
-
- if not output_lines[-1]:
- # skip last line if empty (just newline at the end)
- output_lines = output_lines[:-1]
-
- for line in output_lines:
- if self.delimiter_line.match(line):
- columns = self._table_columns(line)
- continue
- if '|' not in line:
- continue
- row = []
- for col in columns:
- row.append(line[col[0]:col[1]].strip())
- if table_['headers']:
- table_['values'].append(row)
- else:
- table_['headers'] = row
-
- return table_
-
- def _table_columns(self, first_table_row):
- """Find column ranges in output line.
-
- Return list of tuples (start,end) for each column
- detected by plus (+) characters in delimiter line.
- """
- positions = []
- start = 1 # there is '+' at 0
- while start < len(first_table_row):
- end = first_table_row.find('+', start)
- if end == -1:
- break
- positions.append((start, end))
- start = end + 1
- return positions
+ return output_parser.listing(raw_output)