Source code for UseCases.FileSysObjects.functions.setUpperTreeSearchPath.CallCase

"""Check the expansion of 'sys.path' by PATH components derived from splice of upper tree.
"""
from __future__ import absolute_import

import unittest
import os,sys

from filesysobjects.FileSysObjects import setUpperTreeSearchPath


#
#######################
#
[docs]class UseCase(unittest.TestCase): # # Create by object #
[docs] def testCase000(self): _s = sys.path[:] A = os.path.normpath('a/A.txt') #@UnusedVariable B = os.path.normpath('a/b/B.txt') #@UnusedVariable C = os.path.normpath('a/b/c/C.txt') #@UnusedVariable D = os.path.normpath('a/b/c/d/D.txt') #@UnusedVariable top = os.path.normpath(os.path.abspath(os.path.dirname(__file__))) #@UnusedVariable start = top+os.sep+A res = [] ret = setUpperTreeSearchPath(start,top,res) #@UnusedVariable resx = [ os.path.normpath(os.path.dirname(top+os.sep+A)), top, ] [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert resx == res pass
[docs] def testCase001(self): _s = sys.path[:] A = os.path.normpath('a/A.txt') #@UnusedVariable B = os.path.normpath('a/b/B.txt') #@UnusedVariable C = os.path.normpath('a/b/c/C.txt') #@UnusedVariable D = os.path.normpath('a/b/c/d/D.txt') #@UnusedVariable top = os.path.normpath(os.path.abspath(os.path.dirname(__file__))) start = top+os.sep+B res = [] ret = setUpperTreeSearchPath(start,top,res) #@UnusedVariable resx = [ os.path.normpath(os.path.dirname(top+os.sep+B)), top, ] resx.insert(1,os.path.normpath(os.path.dirname(resx[0][:-1]))) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert resx == res pass
[docs] def testCase002(self): _s = sys.path[:] A = os.path.normpath('a/A.txt') #@UnusedVariable B = os.path.normpath('a/b/B.txt') #@UnusedVariable C = os.path.normpath('a/b/c/C.txt') #@UnusedVariable D = os.path.normpath('a/b/c/d/D.txt') #@UnusedVariable top = os.path.normpath(os.path.abspath(os.path.dirname(__file__))) start = top+os.sep+C res = [] ret = setUpperTreeSearchPath(start,top,res) #@UnusedVariable resx = [ os.path.normpath(os.path.dirname(top+os.sep+C)), top, ] resx.insert(1,os.path.normpath(os.path.dirname(resx[0][:-1]))) resx.insert(2,os.path.normpath(os.path.dirname(resx[1][:-1]))) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert resx == res pass
[docs] def testCase003(self): _s = sys.path[:] A = os.path.normpath('a/A.txt') #@UnusedVariable B = os.path.normpath('a/b/B.txt') #@UnusedVariable C = os.path.normpath('a/b/c/C.txt') #@UnusedVariable D = os.path.normpath('a/b/c/d/D.txt') #@UnusedVariable top = os.path.normpath(os.path.abspath(os.path.dirname(__file__))) start = top+os.sep+D res = [] ret = setUpperTreeSearchPath(start,top,res) #@UnusedVariable resx = [ os.path.normpath(os.path.dirname(top+os.sep+D)), top, ] resx.insert(1,os.path.normpath(os.path.dirname(resx[0][:-1]))) resx.insert(2,os.path.normpath(os.path.dirname(resx[1][:-1]))) resx.insert(3,os.path.normpath(os.path.dirname(resx[2][:-1]))) [ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable sys.path.extend(_s) assert resx == res pass
if __name__ == '__main__': unittest.main()