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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
#!/usr/bin/env python
# coding: utf-8
#
# Project: FabIO tests class utilities
#
# Copyright (C) 2010-2016 European Synchrotron Radiation Facility
# Grenoble, France
#
# Principal authors: Jérôme KIEFFER (jerome.kieffer@esrf.fr)
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
from __future__ import print_function, division, absolute_import, with_statement
__author__ = "Jérôme Kieffer"
__contact__ = "jerome.kieffer@esrf.eu"
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
__date__ = "22/10/2018"
PACKAGE = "fabio"
DATA_KEY = "FABIO_DATA"
import os
import sys
import getpass
import threading
import logging
import bz2
from ..third_party import gzip
import json
import tempfile
try: # Python3
from urllib.request import urlopen, ProxyHandler, build_opener
except ImportError: # Python2
from urllib2 import urlopen, ProxyHandler, build_opener
logging.basicConfig(level=logging.WARNING)
logger = logging.getLogger("%s.utilstest" % PACKAGE)
TEST_HOME = os.path.dirname(os.path.abspath(__file__))
class UtilsTest(object):
"""
Static class providing useful stuff for preparing tests.
"""
options = None
timeout = 60 # timeout in seconds for downloading images
# url_base = "http://downloads.sourceforge.net/fable"
url_base = "http://www.edna-site.org/pub/fabio/testimages"
sem = threading.Semaphore()
recompiled = False
reloaded = False
name = PACKAGE
script_dir = None
try:
fabio = __import__("%s.directories" % name)
image_home = fabio.directories.testimages
except Exception as err:
logger.warning("in loading directories %s", err)
image_home = None
else:
image_home = fabio.directories.testimages
if image_home is None:
image_home = os.path.join(tempfile.gettempdir(), "%s_testimages_%s" % (name, getpass.getuser()))
if not os.path.exists(image_home):
os.makedirs(image_home)
testimages = os.path.join(image_home, "all_testimages.json")
if os.path.exists(testimages):
with open(testimages) as f:
ALL_DOWNLOADED_FILES = set(json.load(f))
else:
ALL_DOWNLOADED_FILES = set()
tempdir = tempfile.mkdtemp("_" + getpass.getuser(), name + "_")
@classmethod
def deep_reload(cls):
cls.fabio = __import__(cls.name)
return cls.fabio
@classmethod
def forceBuild(cls, remove_first=True):
"""
Force the recompilation of FabIO
Nonesense, kept for legacy reasons
"""
return
@classmethod
def timeoutDuringDownload(cls, imagename=None):
"""
Function called after a timeout in the download part ...
just raise an Exception.
"""
if imagename is None:
imagename = "2252/testimages.tar.bz2 unzip it "
raise RuntimeError("Could not automatically \
download test images!\n \ If you are behind a firewall, \
please set both environment variable http_proxy and https_proxy.\
This even works under windows ! \n \
Otherwise please try to download the images manually from \n %s/%s and put it in in test/testimages." % (cls.url_base, imagename))
@classmethod
def getdir(cls, dirname):
"""Downloads the requested tarball from the server
https://www.silx.org/pub/silx/
and unzips it into the data directory
:param: relative name of the image.
:return: list of files with their full path.
"""
lodn = dirname.lower()
supported_extensions = [".tar", ".tgz", ".tbz2", ".tar.gz", ".tar.bz2", ".zip"]
for ext in supported_extensions:
if lodn.endswith(ext):
directory_name = dirname[0:-len(ext)]
break
else:
raise RuntimeError("Unsupported archive format. Only tar and zip "
"are currently supported")
if lodn.endswith(".zip"):
import zipfile
engine = zipfile.ZipFile
else:
import tarfile
engine = tarfile.TarFile.open
full_path = cls.download_file(dirname)
directory_home = os.path.join(cls.image_home, directory_name)
if not os.path.exists(directory_home):
os.mkdir(directory_home)
with engine(full_path, mode="r") as fd:
fd.extractall(directory_home)
if lodn.endswith(".zip"):
result = [os.path.join(directory_home, i) for i in fd.namelist()]
else:
result = [os.path.join(directory_home, i) for i in fd.getnames()]
return result
@classmethod
def getimage(cls, imagename):
"""
Downloads the requested image from Forge.EPN-campus.eu
:param str imagename: name of the image.
For the RedMine forge, the filename contains a directory name that
is removed
:return: full path of the locally saved file
"""
if imagename not in cls.ALL_DOWNLOADED_FILES:
cls.ALL_DOWNLOADED_FILES.add(imagename)
image_list = list(cls.ALL_DOWNLOADED_FILES)
image_list.sort()
try:
with open(cls.testimages, "w") as fp:
json.dump(image_list, fp, indent=4)
except IOError:
logger.debug("Unable to save JSON list")
baseimage = os.path.basename(imagename)
logger.info("UtilsTest.getimage('%s')" % baseimage)
if not os.path.exists(cls.image_home):
os.makedirs(cls.image_home)
fullimagename = os.path.abspath(os.path.join(cls.image_home, baseimage))
if os.path.exists(fullimagename):
return fullimagename
if baseimage.endswith(".bz2"):
bzip2name = baseimage
basename = baseimage[:-4]
gzipname = basename + ".gz"
elif baseimage.endswith(".gz"):
gzipname = baseimage
basename = baseimage[:-3]
bzip2name = basename + ".bz2"
else:
basename = baseimage
gzipname = baseimage + "gz2"
bzip2name = basename + ".bz2"
fullimagename_gz = os.path.abspath(os.path.join(cls.image_home, gzipname))
fullimagename_raw = os.path.abspath(os.path.join(cls.image_home, basename))
fullimagename_bz2 = os.path.abspath(os.path.join(cls.image_home, bzip2name))
data = None
if not os.path.isfile(fullimagename_bz2):
cls.download_file(bzip2name)
if not os.path.isfile(fullimagename_bz2):
raise RuntimeError("Could not automatically \
download test images %s!\n \ If you are behind a firewall, \
please set the environment variable http_proxy.\n \
Otherwise please try to download the images manually from \n \
%s" % (cls.url_base, imagename))
if not os.path.isfile(fullimagename_raw) or\
not os.path.isfile(fullimagename_gz):
if data is None:
with open(fullimagename_bz2, "rb") as f:
data = f.read()
decompressed = bz2.decompress(data)
if not os.path.exists(fullimagename_raw):
try:
with open(fullimagename_raw, "wb") as fullimage:
fullimage.write(decompressed)
except IOError:
raise IOError("unable to write decompressed \
data to disk at %s" % cls.image_home)
if not os.path.exists(fullimagename_gz):
try:
gzip.open(fullimagename_gz, "wb").write(decompressed)
except IOError:
raise IOError("unable to write gzipped \
data to disk at %s" % cls.image_home)
return fullimagename
@classmethod
def download_file(cls, filename):
"""Downloads the requested file from web-server available
at https://www.silx.org/pub/silx/
:param str filename: relative name of the image.
:return: full path of the locally saved file.
"""
fullpath = os.path.abspath(os.path.join(cls.image_home, filename))
if os.path.exists(fullpath):
return fullpath
logger.info("Trying to download filename %s, timeout set to %ss",
filename, cls.timeout)
dictProxies = {}
if "http_proxy" in os.environ:
dictProxies['http'] = os.environ["http_proxy"]
dictProxies['https'] = os.environ["http_proxy"]
if "https_proxy" in os.environ:
dictProxies['https'] = os.environ["https_proxy"]
if dictProxies:
proxy_handler = ProxyHandler(dictProxies)
opener = build_opener(proxy_handler).open
else:
opener = urlopen
logger.info("wget %s/%s" % (cls.url_base, filename))
data = opener("%s/%s" % (cls.url_base, filename),
data=None, timeout=cls.timeout).read()
logger.info("Filedata %s successfully downloaded." % filename)
try:
with open(fullpath, "wb") as outfile:
outfile.write(data)
except IOError:
raise IOError("Unable to write downloaded \
data to disk at %s" % cls.image_home)
return fullpath
@classmethod
def download_images(cls, imgs=None):
"""
Download all images needed for the test/benchmarks
:param imgs: list of files to download
"""
if not imgs:
imgs = cls.ALL_DOWNLOADED_FILES
for fn in imgs:
print("Downloading from internet: %s" % fn)
if fn[-4:] != ".bz2":
if fn[-3:] == ".gz":
fn = fn[:-2] + "bz2"
else:
fn = fn + ".bz2"
print(" actually " + fn)
cls.getimage(fn)
@classmethod
def script_path(cls, script):
"""
Returns the path of the executable and the associated environment
In Windows, it checks availability of script using .py .bat, and .exe
file extensions.
"""
if (sys.platform == "win32"):
available_extensions = [".py", ".bat", ".exe"]
else:
available_extensions = [""]
env = dict((str(k), str(v)) for k, v in os.environ.items())
env["PYTHONPATH"] = os.pathsep.join(sys.path)
paths = os.environ.get("PATH", "").split(os.pathsep)
if cls.script_dir is not None:
paths.insert(0, cls.script_dir)
for base in paths:
# clean up extra quotes from paths
if base.startswith('"') and base.endswith('"'):
base = base[1:-1]
for file_extension in available_extensions:
script_path = os.path.join(base, script + file_extension)
if os.path.exists(script_path):
# script found
return script_path, env
# script not found
logger.warning("Script '%s' not found in paths: %s", script, ":".join(paths))
script_path = script
return script_path, env
|