Source code for tests.30_libs.040_FileSysObjects.010_getTopFromPathString.upcounter.Case000.CallCase

from __future__ import absolute_import
from __future__ import print_function
from linecache import getline

__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__='af90cc0c-de54-4a32-becd-06f5ce5a3a75'

__docformat__ = "restructuredtext en"

import unittest
import os,sys

import filesysobjects.FileSysObjects
import pysourceinfo.PySourceInfo

#
#######################
#


[docs]class CallUnits(unittest.TestCase): def __init__(self,*args,**kargs): """Creates search path list """ super(CallUnits,self).__init__(*args,**kargs) self._s = sys.path[:] # data import testdata self.myBase = testdata.mypath+os.sep+"findnodes" # # prefix from unchanged sys.path self.mySysPathPrefixRaw = pysourceinfo.PySourceInfo.getPythonPathFromSysPath(__file__) #@UnusedVariable self.myTestPath0Rel = os.path.normpath('a/b/c/d/e/f/g/h') self.myTestPath1Rel = self.myTestPath0Rel +os.sep+ self.myTestPath0Rel self.myTestPath2Rel = self.myTestPath1Rel +os.sep+ self.myTestPath0Rel self.myTestPath0 = self.myBase+os.sep+self.myTestPath0Rel #@UnusedVariable self.myTestPath1 = self.myBase+os.sep+self.myTestPath1Rel #@UnusedVariable self.myTestPath2 = self.myBase+os.sep+self.myTestPath2Rel #@UnusedVariable
[docs] def reset_sys_path(self): [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(self._s)
[docs] def testCase000(self): pxn = self.myTestPath0 rpath = self.myTestPath1[-1:] plist = [self.myTestPath1] px = filesysobjects.FileSysObjects.getTopFromPathString( rpath, plist, **{'matchlvl':0} ) self.reset_sys_path() assert px == pxn pass
# ####################### # if __name__ == '__main__': unittest.main()