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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
from XRootD import client
from XRootD.client.utils import AsyncResponseHandler
from XRootD.client.flags import OpenFlags, QueryCode, MkDirFlags, AccessMode, \
DirListFlags, PrepareFlags
from env import *
import pytest
import sys
import os
import inspect
def test_filesystem():
c = client.FileSystem(SERVER_URL)
funcspecs = [(c.locate, ('/tmp', OpenFlags.REFRESH), True),
(c.deeplocate, ('/tmp', OpenFlags.REFRESH), True),
(c.query, (QueryCode.SPACE, '/tmp'), True),
(c.truncate, ('/tmp/spam', 1000), False),
(c.mv, ('/tmp/spam', '/tmp/ham'), False),
(c.chmod, ('/tmp/ham', AccessMode.UR | AccessMode.UW), False),
(c.rm, ('/tmp/ham',), False),
(c.mkdir, ('/tmp/somedir', MkDirFlags.MAKEPATH), False),
(c.rmdir, ('/tmp/somedir',), False),
(c.ping, (), False),
(c.stat, ('/tmp',), True),
(c.statvfs, ('/tmp',), True),
(c.protocol, (), True),
(c.dirlist, ('/tmp', DirListFlags.STAT), True),
(c.sendinfo, ('important info',), False),
(c.prepare, (['/tmp/foo'], PrepareFlags.STAGE), True),
]
for func, args, hasReturnObject in funcspecs:
sync (func, args, hasReturnObject)
# Create new temp file
f = client.File()
status, response = f.open(smallfile, OpenFlags.NEW)
for func, args, hasReturnObject in funcspecs:
run_async(func, args, hasReturnObject)
def sync(func, args, hasReturnObject):
status, response = func(*args)
print(status)
assert status.ok
if hasReturnObject:
print(response)
assert response
def run_async(func, args, hasReturnObject):
handler = AsyncResponseHandler()
status = func(callback=handler, *args)
print(status)
assert status.ok
status, response, hostlist = handler.wait()
assert status.ok
if response:
assert response
for host in hostlist:
assert host.url
print(host.url)
if hasReturnObject:
assert response
def test_copy_sync():
c = client.FileSystem(SERVER_URL)
f = client.File()
status, response = f.open(smallfile, OpenFlags.DELETE)
assert status.ok
status, response = c.copy(smallfile, '/tmp/eggs', force=True)
assert status.ok
status, response = c.copy('/tmp/nonexistent', '/tmp/eggs')
assert not status.ok
try:
os.remove('/tmp/eggs')
except OSError as __:
pass
def test_locate_sync():
c = client.FileSystem(SERVER_URL)
status, response = c.locate('/tmp', OpenFlags.REFRESH)
assert status.ok
for item in response:
assert item
def test_locate_async():
c = client.FileSystem(SERVER_URL)
handler = AsyncResponseHandler()
response = c.locate('/tmp', OpenFlags.REFRESH, callback=handler)
status, response, hostlist = handler.wait()
assert status.ok
for item in response:
assert item
def test_deeplocate_sync():
c = client.FileSystem(SERVER_URL)
status, response = c.deeplocate('/tmp', OpenFlags.REFRESH)
assert status.ok
for item in response:
assert item
def test_deeplocate_async():
c = client.FileSystem(SERVER_URL)
handler = AsyncResponseHandler()
response = c.deeplocate('/tmp', OpenFlags.REFRESH, callback=handler)
status, response, hostlist = handler.wait()
assert status.ok
for item in response:
assert item
def test_dirlist_sync():
c = client.FileSystem(SERVER_URL)
status, response = c.dirlist('/tmp', DirListFlags.STAT)
assert status.ok
for item in response:
assert item.name
print(item.statinfo)
assert item.statinfo
assert item.hostaddr
status, response = c.dirlist('invalid', DirListFlags.STAT)
assert not status.ok
def test_dirlist_async():
c = client.FileSystem(SERVER_URL)
handler = AsyncResponseHandler()
status = c.dirlist('/tmp', DirListFlags.STAT, callback=handler)
assert status.ok
status, response, hostlist = handler.wait()
assert status.ok
for h in hostlist:
print(h.url)
for item in response:
assert item.name
print(item.statinfo)
assert item.statinfo
assert item.hostaddr
assert hostlist
def test_query_sync():
c = client.FileSystem(SERVER_URL)
status, response = c.query(QueryCode.STATS, 'a')
assert status.ok
assert response
print(response)
def test_query_async():
c = client.FileSystem(SERVER_URL)
handler = AsyncResponseHandler()
status = c.query(QueryCode.STATS, 'a', callback=handler)
assert status.ok
status, response, hostlist = handler.wait()
assert status.ok
assert response
print(response)
def test_mkdir_flags():
c = client.FileSystem(SERVER_URL)
status, response = c.mkdir('/tmp/dir1/dir2', MkDirFlags.MAKEPATH)
assert status.ok
c.rm('/tmp/dir1/dir2')
c.rm('/tmp/dir1')
def test_args():
c = client.FileSystem(url=SERVER_URL)
assert c is not None
pytest.raises(TypeError, client.FileSystem, foo='root://localhost')
pytest.raises(TypeError, client.FileSystem, path='root://localhost', foo='bar')
def test_creation():
c = client.FileSystem(SERVER_URL)
assert c.url is not None
def test_deletion():
c = client.FileSystem(SERVER_URL)
del c
pytest.raises(NameError, eval, "c")
|