Source code for tests.30_libs.040_FileSysObjects.070_setUpperTreeSearchPath.110_uri.Case020.CallCase
"""Check IEEE1003.1-Chap. 4.2.
"""
from __future__ import absolute_import
import unittest
import os,sys
from pysourceinfo.PySourceInfo import getPythonPathRel
from filesysobjects.FileSysObjects import setUpperTreeSearchPath
import filesysobjects
#
#######################
#
[docs]class CallUnits(unittest.TestCase):
[docs] def testCase000(self):
_s = sys.path[:]
#FIXME: Check and fix start = 'file://'+os.path.abspath(os.path.dirname(__file__))
start = 'file://'+os.path.abspath(os.path.dirname(__file__))
top = 'tests'
_res = []
ret = setUpperTreeSearchPath(start,top,_res) #@UnusedVariable
forDebugOnly = sys.path #@UnusedVariable
mypos = os.path.abspath(os.path.normpath(os.path.dirname(__file__)+"/../../"))
res = []
for i in range(len(_res)):
pr = getPythonPathRel(_res[i],[mypos])
if pr:
res.append(pr)
resx = [
'110_uri/Case020',
'110_uri',
'.'
]
# resx = map(os.path.normpath,resx)
resx = map(filesysobjects.FileSysObjects.normpathX,resx)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
self.assertEqual(resx ,res)
pass
[docs] def testCase001(self):
_s = sys.path[:]
start = 'file://'+os.path.abspath(os.path.dirname(__file__))
top = 'tests'
_res = []
ret = setUpperTreeSearchPath(start,top,_res,**{'reverse':True}) #@UnusedVariable
mypos = os.path.abspath(os.path.normpath(os.path.dirname(__file__)+"/../../"))
res = []
for i in range(len(_res)):
pr = getPythonPathRel(_res[i],[mypos])
if pr:
res.append(pr)
resx = ['.', '110_uri', '110_uri\\Case020']
resx = map(filesysobjects.FileSysObjects.normpathX,resx)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
assert resx == res
pass
[docs] def testCase010(self):
_s = sys.path[:]
start = 'file://'+os.path.abspath(os.path.dirname(__file__))
top = 'file://tests'
_res = []
ret = setUpperTreeSearchPath(start,top,_res) #@UnusedVariable
mypos = os.path.abspath(os.path.normpath(os.path.dirname(__file__)+"/../../"))
res = []
for i in range(len(_res)):
pr = getPythonPathRel(_res[i],[mypos])
if pr:
res.append(pr)
resx = ['110_uri\\Case020', '110_uri', '.']
# resx = map(os.path.normpath,resx)
resx = map(filesysobjects.FileSysObjects.normpathX,resx)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
assert resx == res
pass
[docs] def testCase011(self):
_s = sys.path[:]
start = 'file://'+os.path.abspath(os.path.dirname(__file__))
top = 'file://tests'
_res = []
ret = setUpperTreeSearchPath(start,top,_res,**{'reverse':True}) #@UnusedVariable
mypos = os.path.abspath(os.path.normpath(os.path.dirname(__file__)+"/../../"))
res = []
for i in range(len(_res)):
pr = getPythonPathRel(_res[i],[mypos])
if pr:
res.append(pr)
resx = ['.', '110_uri', '110_uri\\Case020']
# resx = map(os.path.normpath,resx)
resx = map(filesysobjects.FileSysObjects.normpathX,resx)
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(_s)
assert resx == res
pass
if __name__ == '__main__':
unittest.main()