Source code for UseCases.unittest_subprocess.binaries.noopts.EXIT8.CallCase

"""example_G
 
Case for a testee with mixed result, exit 8: EXIT8
 
   EXIT:
     8
   STDOUT:
     arbitrary output
     arbitrary signalling NOK string
     arbitrary output
   STDERR:
     arbitrary err output
     arbitrary err signalling NOK string
     arbitrary err output
 
"""
from __future__ import absolute_import
from __future__ import print_function
 
__author__ = 'Arno-Can Uestuensoez'
__license__ = "Artistic-License-2.0 + Forced-Fairplay-Constraints"
__copyright__ = "Copyright (C) 2010-2016 Arno-Can Uestuensoez @Ingenieurbuero Arno-Can Uestuensoez"
__version__ = '0.0.1'
__uuid__='9de52399-7752-4633-9fdc-66c87a9200b8'
 
__docformat__ = "restructuredtext en"
 
import unittest
from testdata import epyu,call_scripy
from epyunit.unittest.subprocess import TestExecutable
 
#
#######################
#
 
[docs]class CallUnits(TestExecutable): @classmethod
[docs] def setUpClass(cls): cls.cache = True
[docs] def setUp(self): self.call = epyu self.call += " --raw " self.call += " " + call_scripy self.call += " EXIT8 " self.retX = [8, ['fromG', 'arbitrary output', 'arbitrary signalling NOK string', 'arbitrary output'],['arbitrary err output', 'arbitrary err signalling NOK string', 'arbitrary err output']] pass
[docs] def testCase000(self): self.callSubprocess(self.call) self.assertEqual(self.retX) pass
[docs] def testCase010(self): self.assertSubprocess(self.call, self.retX) pass
[docs] def testCase011(self): self.assertSubprocess( self.call, [8, ['fromG', 'arbitrary output', 'arbitrary signalling NOK string', 'arbitrary output'],['arbitrary err output', 'arbitrary err signalling NOK string', 'arbitrary err output']] ) pass
# ####################### # if __name__ == '__main__': unittest.main()