|
|
@ -56,9 +56,9 @@ class Scenario1(Scenario):
|
|
|
|
# Phase 3: Run ffx
|
|
|
|
# Phase 3: Run ffx
|
|
|
|
commandSequence = [sys.executable,
|
|
|
|
commandSequence = [sys.executable,
|
|
|
|
self._ffxExecutablePath,
|
|
|
|
self._ffxExecutablePath,
|
|
|
|
'--no-prompt',
|
|
|
|
|
|
|
|
'convert',
|
|
|
|
'convert',
|
|
|
|
mediaFilePath]
|
|
|
|
mediaFilePath,
|
|
|
|
|
|
|
|
'--no-prompt']
|
|
|
|
|
|
|
|
|
|
|
|
self._logger.debug(f"Scenario1.run(): sub={trackCombination.getIdentifier()} test sequence: {commandSequence}")
|
|
|
|
self._logger.debug(f"Scenario1.run(): sub={trackCombination.getIdentifier()} test sequence: {commandSequence}")
|
|
|
|
|
|
|
|
|
|
|
@ -101,11 +101,11 @@ class Scenario1(Scenario):
|
|
|
|
# assert dispositions
|
|
|
|
# assert dispositions
|
|
|
|
evaluateFunc(resultMediaTracks)
|
|
|
|
evaluateFunc(resultMediaTracks)
|
|
|
|
|
|
|
|
|
|
|
|
self._reportLogger.info('Scenario 1 test passed')
|
|
|
|
self._reportLogger.info(f"Scenario 1 sub={trackCombination.getIdentifier()} test passed")
|
|
|
|
|
|
|
|
|
|
|
|
except AssertionError as ae:
|
|
|
|
except AssertionError as ae:
|
|
|
|
|
|
|
|
|
|
|
|
self._reportLogger.error(f"Scenario 1 test failed ({ae})")
|
|
|
|
self._reportLogger.error(f"Scenario 1 sub={trackCombination.getIdentifier()} test failed ({ae})")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|