Source code for UseCases.test_simulators.myscript.perl.ok_stderr.CallCase

"""
Default case for a testee with result: succeed: OK

  EXIT:
     0
  STDOUT:
     arbitrary output
     arbitrary signalling OK string
     arbitrary output
  STDERR:
     -

"""
from __future__ import absolute_import

__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 call_scripl,epyu
import epyunit.SystemCalls

#
#######################
#
[docs]class CallUnits(unittest.TestCase):
[docs] def testCase010(self): if not call_scripl: self.skipTest("bash not available") _call = epyu _call += " --priotype=False " _call += " -- "+ call_scripl _call += " OK " syskargs = {} sx = epyunit.SystemCalls.SystemCalls(**syskargs) callkargs = {} ret = sx.callit(_call,**callkargs) retX = [0, ['fromA', 'arbitrary output', 'arbitrary signalling OK string', 'arbitrary output'],[]] self.assertEqual(ret,retX)
[docs] def testCase020(self): if not call_scripl: self.skipTest("bash not available") _call = epyu _call += " --priotype=False " _call += " -- "+ call_scripl _call += " NOK " syskargs = {} sx = epyunit.SystemCalls.SystemCalls(**syskargs) callkargs = {} ret = sx.callit(_call,**callkargs) retX = [0, ['fromB', 'arbitrary output', 'arbitrary output'],['arbitrary signalling ERROR string']] self.assertEqual(ret,retX) self.assertEqual(ret,retX)
[docs] def testCase030(self): if not call_scripl: self.skipTest("bash not available") _call = epyu _call += " --priotype=False " _call += " -- "+ call_scripl _call += " EXIT7 " syskargs = {} sx = epyunit.SystemCalls.SystemCalls(**syskargs) callkargs = {} ret = sx.callit(_call,**callkargs) retX = [1, ['fromF', 'arbitrary output', 'arbitrary signalling NOK string', 'arbitrary output'],[]] self.assertEqual(ret,retX)
# ####################### # if __name__ == '__main__': unittest.main()