Source code for tests.30_libs.040_PySourceInfo.getCallerModuleName.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[:] sys.path.insert(0,os.path.dirname(__file__)+os.sep+'..') import PySourceInfo_check_tests #@UnresolvedImport import inspect _is = inspect.getsourcefile(PySourceInfo_check_tests) fx = PySourceInfo_check_tests.check_callback(pysourceinfo.PySourceInfo.getCallerModuleName,0) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert fx == 'pysourceinfo.PySourceInfo'
[docs] def testCase001(self): import sys _s=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.getCallerModuleName,1) fx0 = "PySourceInfo_check_tests" fx1 = "tests.30_libs.040_PySourceInfo.PySourceInfo_check_tests" # due to PyUnit path resolution dependent on curdir [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert fx == fx0 or fx == fx1
[docs] def testCase002(self): import sys _s=sys.path[:] sys.path.insert(0,os.path.dirname(__file__)+os.sep+'..') import PySourceInfo_check_tests #@UnresolvedImport fx0 = 'tests.30_libs.040_PySourceInfo.getCallerModuleName.CallCase' fx1 = '30_libs.040_PySourceInfo.getCallerModuleName.CallCase' fx = PySourceInfo_check_tests.check_callback(pysourceinfo.PySourceInfo.getCallerModuleName,2) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert fx == fx0 or fx == fx1
[docs] def testCase003(self): import sys _s=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.getCallerModuleName,3) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) version = '{0}.{1}'.format(*sys.version_info[:2]) if version == '2.6': # pragma: no cover assert os.path.basename(fx) == 'unittest' elif version == '2.7': # pragma: no cover assert fx == 'unittest.case' else: assert False
[docs] def testCase004(self): import sys _s=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.getCallerModuleName,4) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) version = '{0}.{1}'.format(*sys.version_info[:2]) if version == '2.6': # pragma: no cover assert os.path.basename(fx) == 'unittest' elif version == '2.7': # pragma: no cover assert fx == 'unittest.case' else: assert False
if __name__ == '__main__': unittest.main()