Skip to content

Commit

Permalink
Improve SSH multi line splitter parser
Browse files Browse the repository at this point in the history
This patch improves the SSH multi line splitter parser to take into
account some cases that were not covered as well as fix some of the tests.

Code fixes:

- On slow SSH connections we may not get the initial dump of stdin in
  the response, so looking for the "exit" command we sent will never
  find it and the parsing will fail.  We now look for the prompt and
  ignore whether we have the stdin data or not, since it's not really
  relevant.

- Sometimes we get empty prompts in the SSH response, which either break
  the current parsing or makes us return bad data.  We now remove all
  empty prompts.

Code improvements:

- We were always removing the last 2 lines from the response without
  actually checking if these 2 lines are the exit command and an empty
  line.  Now we search for the final exit command that we execute to
  determine the end of the valid output data.

- If the output data has any "\r" at the end of a line the parser
  returns them, which we shouldn't. They should be removed just like we
  remove the "\r\n" when splitting the lines.

Test fixes in HPE3ParClientMockSSHTestCase::test_strip_input_from_output:

- In a couple of places tests are passing [cmd, X, Y] to the parser
  expecting a failure, which we get, and we think everything is working
  as expected, but the failure is not for the reasons we want, so we are
  not testing anything.  By passing that data we are effectively passing
  [['foo', '-v'], X, Y] which will break the parser because that's
  "garbage".

- The data passed and expected in the success case can be misleading, as
  it doesn't include the exit prompt and doesn't expect the footer to be
  returned, but the footer should be returned and parsing a command that
  doesn't have the last exit command is not valid.

Closes hpe-storage#78
  • Loading branch information
Akrog committed May 29, 2020
1 parent f6b942b commit efd383c
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 69 deletions.
50 changes: 26 additions & 24 deletions hpe3parclient/ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,52 +208,54 @@ def strip_input_from_output(cmd, output):
in the output so that it knows what it is stripping (or else it
raises an exception).
"""

# Keep output lines after the 'exit'.
# 'exit' is the last of the stdin.
# Search for the prompt. It may or may not be the first line, because
# on fast connections we get a "dump" of stdin with all the commands
# we've sent, but we don't on slow connections.
for i, line in enumerate(output):
if line == 'exit':
prompt_pct = line.find('% setclienv csvtable 1')
if prompt_pct >= 0:
prompt = line[:prompt_pct + 1] + ' '
output = output[i + 1:]
break
else:
reason = "Did not find 'exit' in output."
HPE3PARSSHClient.raise_stripper_error(reason, output)

if not output:
reason = "Did not find any output after 'exit'."
HPE3PARSSHClient.raise_stripper_error(reason, output)

# The next line is prompt plus setclienv command.
# Use this to get the prompt string.
prompt_pct = output[0].find('% setclienv csvtable 1')
if prompt_pct < 0:
reason = "Did not find '% setclienv csvtable 1' in output."
HPE3PARSSHClient.raise_stripper_error(reason, output)
prompt = output[0][0:prompt_pct + 1]
del output[0]

# Next find the prompt plus the command.
# Some systems return additional empty prompts, others return an
# extra \r after commands. In both cases this prevents us from finding
# the output delimiters, and makes us return useless data to caller, so
# fix them.
output = [line.rstrip('\r\n') for line in output if line != prompt]

# Output starts right after the command we sent.
# It might be broken into multiple lines, so loop and
# append until we find the whole prompt plus command.
command_string = ' '.join(cmd)
if re.match('|'.join(tpd_commands), command_string):
escp_command_string = command_string.replace('"', '\\"')
command_string = "Tpd::rtpd " + '"' + escp_command_string + '"'
seek = ' '.join((prompt, command_string))
seek = prompt + command_string
found = ''
for i, line in enumerate(output):
found = ''.join((found, line.rstrip('\r\n')))
found = found + line
if found == seek:
# Found the whole thing. Use the rest as output now.
output = output[i + 1:]
# Output is right after this line, drop everything before it
del output[:i + 1]
break
else:
HPE3PARSSHClient._logger.debug("Command: %s" % command_string)
reason = "Did not find match for command in output"
HPE3PARSSHClient.raise_stripper_error(reason, output)

# Always strip the last 2
return output[:len(output) - 2]
# Output stops right before exit command is executed
try:
exit_index = output.index(prompt + 'exit')
del output[exit_index:]
except ValueError:
reason = "Did not find 'exit' in output."
HPE3PARSSHClient.raise_stripper_error(reason, output)

return output

def run(self, cmd, multi_line_stripper=False):
"""Runs a CLI command over SSH, without doing any result parsing."""
Expand Down
44 changes: 22 additions & 22 deletions test/test_HPE3ParClient_FilePersona.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ def validate_vfs(self, fpgname=None, vfsname=None, no_vfsname=None,
# Validate contents
if fpgname is not None:
success_message = None
not_found_message = 'Invalid VFS %s\r' % vfsname
not_found_message = 'Invalid VFS %s' % vfsname
self.assertIn(message, (success_message, not_found_message))
elif total == 0:
self.assertEqual('', message)
Expand Down Expand Up @@ -456,7 +456,7 @@ def test_getfpg_empty(self):
@print_header_and_footer
def test_getfpg_bogus(self):
result = self.cl.getfpg('bogus1', 'bogus2', 'bogus3')
expected_message = 'File Provisioning Group: bogus1 not found\r'
expected_message = 'File Provisioning Group: bogus1 not found'
self.assertEqual(expected_message, result['message'])
self.assertEqual(0, result['total'])
self.assertEqual([], result['members'])
Expand All @@ -474,7 +474,7 @@ def test_createfpg_bogus_cpg(self):
bogus_cpgname = 'thiscpgdoesnotexist'
result = self.cl.createfpg(bogus_cpgname, fpgname, '1X')
self.assertEqual(
'Error: Invalid CPG name: %s\r' % bogus_cpgname,
'Error: Invalid CPG name: %s' % bogus_cpgname,
result[0])

self.validate_fpg(expected_count=fpg_count)
Expand All @@ -498,7 +498,7 @@ def test_createfpg_bad_size(self):

result = self.cl.createfpg(cpgname, fpgname, '1X')
self.assertEqual(
'The suffix, X, for size is invalid.\r', result[0])
'The suffix, X, for size is invalid.', result[0])

self.validate_fpg(expected_count=fpg_count)

Expand Down Expand Up @@ -552,7 +552,7 @@ def test_createfpg_twice_and_remove(self):

# Create same FPG again to test createfpg already exists error
result = self.cl.createfpg(cpgname, fpgname, '1T', wait=True)
expected = ('Error: FPG %s already exists\r' %
expected = ('Error: FPG %s already exists' %
fpgname)
self.assertEqual(expected, result[0])
self.validate_fpg(fpgname=fpgname, expected_count=fpg_count + 1)
Expand Down Expand Up @@ -614,7 +614,7 @@ def test_createvfs_bogus_bgrace(self):
fpg=fpgname,
bgrace='bogus', igrace='60',
wait=True)
self.assertEqual('bgrace value should be between 1 and 2147483647\r',
self.assertEqual('bgrace value should be between 1 and 2147483647',
result[0])

@unittest.skipIf(is_live_test() and skip_file_persona(), SKIP_MSG)
Expand All @@ -627,7 +627,7 @@ def test_createvfs_bogus_igrace(self):
fpg=fpgname,
bgrace='60', igrace='bogus',
wait=True)
self.assertEqual('igrace value should be between 1 and 2147483647\r',
self.assertEqual('igrace value should be between 1 and 2147483647',
result[0])

def get_fsips(self, fpgname, vfsname):
Expand All @@ -654,15 +654,15 @@ def get_fsips(self, fpgname, vfsname):
result = self.cl.getfsip(vfsname, fpg='bogus')
self.debug_print(result)
expected = {
'message': 'File Provisioning Group: bogus not found\r',
'message': 'File Provisioning Group: bogus not found',
'total': 0,
'members': []
}
self.assertEqual(expected, result)
result = self.cl.getfsip('bogus', fpg=fpgname)
self.debug_print(result)
expected = {
'message': 'Invalid VFS bogus\r',
'message': 'Invalid VFS bogus',
'total': 0,
'members': []
}
Expand Down Expand Up @@ -736,13 +736,13 @@ def create_fsnap(self, fpgname, vfsname, fstore, tag):

# Test error messages with bogus names
result = self.cl.createfsnap('bogus', fstore, tag, fpg=fpgname)
self.assertEqual(['Virtual Server bogus does not exist on FPG %s\r' %
self.assertEqual(['Virtual Server bogus does not exist on FPG %s' %
fpgname], result)
result = self.cl.createfsnap(vfsname, 'bogus', tag, fpg=fpgname)
self.assertEqual(['File Store bogus does not exist on FPG %s\r' %
self.assertEqual(['File Store bogus does not exist on FPG %s' %
fpgname], result)
result = self.cl.createfsnap(vfsname, fstore, tag, fpg='bogus')
self.assertEqual(['FPG bogus not found\r'], result)
self.assertEqual(['FPG bogus not found'], result)

result = self.cl.getfsnap('bogus',
fpg=fpgname, vfs=vfsname, fstore=fstore,
Expand All @@ -754,7 +754,7 @@ def create_fsnap(self, fpgname, vfsname, fstore, tag):
expected = {
'members': [],
'message': 'SnapShot bogus does not exist on FPG %s path '
'%s/%s\r' % (fpgname, vfsname, fstore),
'%s/%s' % (fpgname, vfsname, fstore),
'total': 0}
self.assertEqual(expected, result)

Expand Down Expand Up @@ -797,7 +797,7 @@ def create_fsnap(self, fpgname, vfsname, fstore, tag):
self.assertEqual([], result)

success = []
running = ['Reclamation already running on %s\r' % fpgname]
running = ['Reclamation already running on %s' % fpgname]
expected_in = (success, running)
# After first one expect 'running', but to avoid timing issues in
# the test results accept either success or running.
Expand Down Expand Up @@ -833,14 +833,14 @@ def create_fsnap(self, fpgname, vfsname, fstore, tag):
self.assertEqual([], result)

result = self.cl.startfsnapclean(fpgname, resume=True)
self.assertEqual(['No reclamation task running on FPG %s\r' % fpgname],
self.assertEqual(['No reclamation task running on FPG %s' % fpgname],
result)

def remove_fstore(self, fpgname, vfsname, fstore):
self.cl.removefsnap(vfsname, fstore, fpg=fpgname)
result = self.cl.startfsnapclean(fpgname, reclaimStrategy='maxspeed')
success = []
running = ['Reclamation already running on %s\r' % fpgname]
running = ['Reclamation already running on %s' % fpgname]
expected_in = (success, running)
self.assertIn(result, expected_in)

Expand All @@ -855,7 +855,7 @@ def remove_share(self, protocol, fpgname, vfsname, share_name):
fpg=fpgname, fstore=share_name)
if protocol == 'nfs':
expected = ['%s Delete Export failed with error: '
'share %s does not exist\r' %
'share %s does not exist' %
(protocol.upper(), share_name)]
self.assertEqual(expected, result)
else:
Expand All @@ -869,9 +869,9 @@ def remove_share(self, protocol, fpgname, vfsname, share_name):
if protocol == 'nfs':
expected = [
'%s Delete Export failed with error: '
'File Store bogus was not found\r' % protocol.upper()]
'File Store bogus was not found' % protocol.upper()]
else:
expected = ['Could not find Store=bogus\r']
expected = ['Could not find Store=bogus']
self.assertEqual(expected, result)

@unittest.skipIf(skip_file_persona(), SKIP_MSG)
Expand All @@ -890,7 +890,7 @@ def test_create_and_remove_shares(self):
result = self.cl.createvfs('127.0.0.2', '255.255.255.0', vfsname,
fpg=fpgname,
wait=True)
expected = ('VFS "%s" already exists within FPG %s\r' %
expected = ('VFS "%s" already exists within FPG %s' %
(vfsname, fpgname))
self.assertEqual(expected, result[0])
self.validate_vfs(vfsname=vfsname, fpgname=fpgname,
Expand Down Expand Up @@ -985,12 +985,12 @@ def test_removevfs_bogus(self):
self.assertRaises(AttributeError, self.cl.removevfs, None)
result = self.cl.removevfs('bogus')
vfs_not_found = ('Virtual file server bogus was not found in any '
'existing file provisioning group.\r')
'existing file provisioning group.')
self.assertEqual(vfs_not_found, result[0])
self.assertRaises(AttributeError, self.cl.removevfs, None, fpg='bogus')

result = self.cl.removevfs('bogus', fpg='bogus')
fpg_not_found = 'File Provisioning Group: bogus not found\r'
fpg_not_found = 'File Provisioning Group: bogus not found'
self.assertEqual(fpg_not_found, result[0])

# testing
Expand Down
18 changes: 8 additions & 10 deletions test/test_HPE3ParClient_FilePersona_Mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,17 +258,17 @@ def test_strip_input_from_output(self):
'CSIM-EOS08_1611165 cli% createvfs -fpg marktestfpg -wait '
'127.0.0.2 255.255.255.\r',
'0 UT5_VFS_150651\r',
'VFS UT5_VFS_150651 already exists within FPG marktestfpg\r',
'VFS UT5_VFS_150651 already exists within FPG marktestfpg',
'CSIM-EOS08_1611165 cli% exit\r',
''
]
expected = [
'VFS UT5_VFS_150651 already exists within FPG marktestfpg\r']
'VFS UT5_VFS_150651 already exists within FPG marktestfpg']

actual = ssh.HPE3PARSSHClient.strip_input_from_output(cmd, out)
self.assertEqual(expected, actual)

def test_strip_input_from_output_no_exit(self):
def test_strip_input_from_output_no_stdin(self):
cmd = [
'createvfs',
'-fpg',
Expand All @@ -279,10 +279,6 @@ def test_strip_input_from_output_no_exit(self):
'UT5_VFS_150651'
]
out = [
'setclienv csvtable 1',
'createvfs -fpg marktestfpg -wait 127.0.0.2 255.255.255.0 '
'UT5_VFS_150651',
'XXXt', # Don't match
'CSIM-EOS08_1611165 cli% setclienv csvtable 1\r',
'CSIM-EOS08_1611165 cli% createvfs -fpg marktestfpg -wait '
'127.0.0.2 255.255.255.\r',
Expand All @@ -291,9 +287,11 @@ def test_strip_input_from_output_no_exit(self):
'CSIM-EOS08_1611165 cli% exit\r',
''
]
self.assertRaises(exceptions.SSHException,
ssh.HPE3PARSSHClient.strip_input_from_output,
cmd, out)
expected = [
'VFS UT5_VFS_150651 already exists within FPG marktestfpg']

actual = ssh.HPE3PARSSHClient.strip_input_from_output(cmd, out)
self.assertEqual(expected, actual)

def test_strip_input_from_output_no_setclienv(self):
cmd = [
Expand Down
Loading

0 comments on commit efd383c

Please sign in to comment.