Source code for tests.30_libs.040_PySourceInfo.getCallerNamespaceGlobal.CallCase
"""Check defaults.
"""
from __future__ import absolute_import
import unittest
import os
import pysourceinfo.PySourceInfo
#
#######################
#
[docs]class CallUnits(unittest.TestCase):
[docs] def testCase000(self):
import sys
_s=sys.path[:]
_sx = repr(sys.path)
sys.path.insert(0,os.path.dirname(__file__)+os.sep+'..')
import PySourceInfo_check_tests #@UnresolvedImport
fx = PySourceInfo_check_tests.check_callback(pysourceinfo.PySourceInfo.getCallerNamespaceGlobal,0)
fx = fx['__name__']
assert fx == 'pysourceinfo.PySourceInfo'
assert _sx != repr(sys.path)
sys.path.pop(0)
assert _sx == repr(sys.path)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
[docs] def testCase001(self):
import sys
_s=sys.path[:]
_sx = repr(sys.path)
sys.path.insert(0,os.path.dirname(__file__)+os.sep+'..')
import PySourceInfo_check_tests #@UnresolvedImport
fx = PySourceInfo_check_tests.check_callback(pysourceinfo.PySourceInfo.getCallerNamespaceGlobal,1)
fx = fx['__name__']
assert fx == 'PySourceInfo_check_tests'
assert _sx != repr(sys.path)
sys.path.pop(0)
assert _sx == repr(sys.path)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
[docs] def testCase002(self):
import sys
_s=sys.path[:]
_sx = repr(sys.path)
sys.path.insert(0,os.path.dirname(__file__)+os.sep+'..')
import PySourceInfo_check_tests #@UnresolvedImport
fx0 = 'tests.30_libs.040_PySourceInfo.getCallerNamespaceGlobal.CallCase'
fx1 = '30_libs.040_PySourceInfo.getCallerNamespaceGlobal.CallCase'
fx = PySourceInfo_check_tests.check_callback(pysourceinfo.PySourceInfo.getCallerNamespaceGlobal,2)
fx = fx['__name__']
assert fx == fx0 or fx == fx1
assert _sx != repr(sys.path)
sys.path.pop(0)
assert _sx == repr(sys.path)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
[docs] def testCase003(self):
import sys
_s=sys.path[:]
_sx = repr(sys.path)
sys.path.insert(0,os.path.dirname(__file__)+os.sep+'..')
import PySourceInfo_check_tests #@UnresolvedImport
fx = PySourceInfo_check_tests.check_callback(pysourceinfo.PySourceInfo.getCallerNamespaceGlobal,3)
fx = fx['__name__']
version = '{0}.{1}'.format(*sys.version_info[:2])
if version == '2.6': # pragma: no cover
assert fx == 'unittest'
elif version == '2.7': # pragma: no cover
assert fx == 'unittest.case'
else:
assert False
assert _sx != repr(sys.path)
sys.path.pop(0)
assert _sx == repr(sys.path)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
if __name__ == '__main__':
unittest.main()