Source code for UseCases.PySourceInfo.getCallerSysPathPackageName.CallCase
from __future__ import absolute_import
import unittest
import os
import pysourceinfo.PySourceInfo
#
#######################
#
[docs]class CallUnits(unittest.TestCase):
[docs] def testCase001(self):
import sys
_s=sys.path[:]
#Clear from misguided previous tests
i=len(_s)-1
for ix in reversed(_s):
if ix.find('UseCases') != -1:
sys.path.pop(i)
i-=1
sys.path.insert(0,os.path.abspath(os.path.dirname(__file__)+os.sep+'..'))
import PySourceInfo_check #@UnresolvedImport
fx0 = "PySourceInfo_check"
fx1 = "UseCases"
fx = PySourceInfo_check.check_callback(pysourceinfo.PySourceInfo.getCallerSysPathPackageName,1)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
assert fx == fx1 or fx == fx0
pass
[docs] def testCase002(self):
import sys
_s=sys.path[:]
#Clear from misguided previous tests
i=len(_s)-1
for ix in reversed(_s):
if ix.find('UseCases') != -1:
sys.path.pop(i)
i-=1
sys.path.insert(0,os.path.abspath(os.path.dirname(__file__)+os.sep+'..'))
import PySourceInfo_check #@UnresolvedImport
fx0 = 'getCallerSysPathPackageName'
fx1 = 'PySourceInfo'
fx2 = 'UseCases'
fx = PySourceInfo_check.check_callback(pysourceinfo.PySourceInfo.getCallerSysPathPackageName,2)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
assert fx == fx0 or fx == fx1 or fx == fx2
[docs] def testCase003(self):
import sys
_s=sys.path[:]
#Clear from misguided previous tests
i=len(_s)-1
for ix in reversed(_s):
if ix.find('UseCases') != -1:
sys.path.pop(i)
i-=1
sys.path.insert(0,os.path.abspath(os.path.dirname(__file__)+os.sep+'..'))
import PySourceInfo_check #@UnresolvedImport
fx0 = 'unittest'
fx = PySourceInfo_check.check_callback(pysourceinfo.PySourceInfo.getCallerSysPathPackageName,3)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
assert fx == fx0
if __name__ == '__main__':
unittest.main()