Source code for tests.libs.unittest.subprocess.callit.stderr.050_EXITNOK.CallCase
"""example_E
Case for a testee with failure, exit 1: EXITNOK
EXIT:
1
STDOUT:
arbitrary output
arbitrary signalling OK string
arbitrary output
STDERR:
-
"""
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
import os
from filesysobjects.FileSysObjects import setUpperTreeSearchPath,findRelPathInSearchPath
import epyunit.SystemCalls
from testdata import epyu,call_scripy
#
#######################
#
[docs]class CallUnits(unittest.TestCase):
[docs] def testCase000(self):
slst = []
setUpperTreeSearchPath(os.path.abspath(os.path.dirname(__file__)),'epyunit',slst)
myscript = call_scripy
sx = epyunit.SystemCalls.SystemCalls()
# _env = os.environ.copy()
# _env['PATH'] = os.pathsep.join(sys.path)
ret = sx.callit(myscript+" EXITNOK")
assert ret[0] == 1
assert ret[1] == ["fromE", 'arbitrary output', 'arbitrary signalling OK string', 'arbitrary output']
assert ret[2] == []
pass
#
#######################
#
if __name__ == '__main__':
unittest.main()