1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
import os, lfc, sys, commands
from testClass import _test, _ntest
global testHome
class test_new_ok(_test):
def info(self):
return "lfc_creatg OK "
def clean(self):
lfc.lfc_unlink(self.name)
def test(self):
self.guid = commands.getoutput('uuidgen').split('/n')[0]
self.name = "/grid/dteam/python_filecreatg_test"
ret = lfc.lfc_creatg(self.name,self.guid,0664)
statg=lfc.lfc_filestatg()
ret=lfc.lfc_statg("",self.guid, statg)
return (statg,ret)
def ret(self):
retval=lfc.lfc_filestatg()
retval.nlink=1
retval.filesize=0L
retval.atime=1184059742
retval.mtime=1171381061
retval.ctime=1171381061
retval.fileclass=0
retval.status='-'
retval.guid=self.guid
return retval
def compare(self, testVal, retVal):
(ret, retRetVal) = retVal
(test, testRetVal) = testVal
retval = True
if (retRetVal == testRetVal):
retval = retval & ( test.nlink == ret.nlink )
retval = retval & ( test.filesize == ret.filesize )
retval = retval & ( test.fileclass == ret.fileclass )
retval = retval & ( test.status == ret.status )
retval = retval & ( test.guid == ret.guid )
else:
retval = False
return retval
class test_existing_ok(_test):
def info(self):
return "lfc_creatg on existing file"
def clean(self):
lfc.lfc_unlink(self.name)
def prepare(self):
self.guid = commands.getoutput('uuidgen').split('/n')[0]
self.name = "/grid/dteam/python_filecreatg_test"
ret = lfc.lfc_creatg(self.name,self.guid,0664)
lfc.lfc_setfsize(self.name,None,12345L)
def test(self):
ret = lfc.lfc_creatg(self.name,self.guid,0664)
statg=lfc.lfc_filestatg()
ret=lfc.lfc_statg("",self.guid, statg)
return (statg,ret)
def ret(self):
retval=lfc.lfc_filestatg()
retval.nlink=1
retval.filesize=0L
retval.atime=1184059742
retval.mtime=1171381061
retval.ctime=1171381061
retval.fileclass=0
retval.status='-'
retval.guid=self.guid
return retval
def compare(self, testVal, retVal):
(ret, retRetVal) = retVal
(test, testRetVal) = testVal
retval = True
if (retRetVal == testRetVal):
retval = retval & ( test.nlink == ret.nlink )
retval = retval & ( test.filesize == ret.filesize )
retval = retval & ( test.fileclass == ret.fileclass )
retval = retval & ( test.status == ret.status )
retval = retval & ( test.guid == ret.guid )
else:
retval = False
return retval
class test_pd(_ntest):
def info(self):
return "lfc_creatg in permission denied"
def test(self):
self.guid = commands.getoutput('uuidgen').split('/n')[0]
self.name = "/python_filecreatg_test_pd"
ret = lfc.lfc_creatg(self.name,self.guid,0664)
statg=lfc.lfc_filestatg()
ret=lfc.lfc_statg("",self.guid, statg)
return (statg,ret)
def ret(self):
retval=lfc.lfc_filestatg()
retval.nlink=0
retval.filesize=0L
retval.atime=1184059742
retval.mtime=1171381061
retval.ctime=1171381061
retval.fileclass=0
retval.status=' '
return retval
def compare(self, testVal, retVal):
(ret, retRetVal) = retVal
(test, testRetVal) = testVal
retval = True
if (retRetVal == testRetVal):
retval = retval & ( test.nlink == ret.nlink )
retval = retval & ( test.filesize == ret.filesize )
retval = retval & ( test.fileclass == ret.fileclass )
#retval = retval & ( test.status == ret.status )
else:
retval = False
return retval
class lfc_statg_test:
def __init__(self):
self.name = "lfc_creatg_test"
self.tests=[test_new_ok,test_existing_ok,test_pd]
def run(self):
retVal = True
for testclass in self.tests:
testInstance = testclass()
testInstance.prepare()
ret1 = testInstance.compare(testInstance.test(), (testInstance.ret(), testInstance.getRetVal()))
testInstance.clean()
retVal = retVal & ret1
if ret1:
print "%-60s[OK]" % testInstance.info()
else:
print "%-60s[FAILED]" % testInstance.info()
return retVal
os.environ['LFC_HOME'] = 'lxb1941.cern.ch:/grid/dteam'
os.environ['LFC_HOST'] = 'lxb1941.cern.ch'
testHome = "python_lfc_test"
lfc_statg_test().run()
|