Spaces:
Running
Running
File size: 14,074 Bytes
3bb804c |
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 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 |
"""Testing functions."""
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.
import inspect
import os
import sys
import tempfile
import traceback
from functools import wraps
from shutil import rmtree
from unittest import SkipTest
import numpy as np
from numpy.testing import assert_allclose, assert_array_equal
from scipy import linalg
from ._logging import ClosingStringIO, warn
from .check import check_version
from .misc import run_subprocess
from .numerics import object_diff
def _explain_exception(start=-1, stop=None, prefix="> "):
"""Explain an exception."""
# start=-1 means "only the most recent caller"
etype, value, tb = sys.exc_info()
string = traceback.format_list(traceback.extract_tb(tb)[start:stop])
string = "".join(string).split("\n") + traceback.format_exception_only(etype, value)
string = ":\n" + prefix + ("\n" + prefix).join(string)
return string
class _TempDir(str):
"""Create and auto-destroy temp dir.
This is designed to be used with testing modules. Instances should be
defined inside test functions. Instances defined at module level can not
guarantee proper destruction of the temporary directory.
When used at module level, the current use of the __del__() method for
cleanup can fail because the rmtree function may be cleaned up before this
object (an alternative could be using the atexit module instead).
"""
def __new__(self): # noqa: D105
new = str.__new__(self, tempfile.mkdtemp(prefix="tmp_mne_tempdir_"))
return new
def __init__(self):
self._path = self.__str__()
def __del__(self): # noqa: D105
rmtree(self._path, ignore_errors=True)
def requires_mne(func):
"""Decorate a function as requiring MNE."""
return requires_mne_mark()(func)
def requires_mne_mark():
"""Mark pytest tests that require MNE-C."""
import pytest
return pytest.mark.skipif(not has_mne_c(), reason="Requires MNE-C")
def requires_openmeeg_mark():
"""Mark pytest tests that require OpenMEEG."""
import pytest
return pytest.mark.skipif(
not check_version("openmeeg", "2.5.6"), reason="Requires OpenMEEG >= 2.5.6"
)
def requires_freesurfer(arg):
"""Require Freesurfer."""
import pytest
reason = "Requires Freesurfer"
if isinstance(arg, str):
# Calling as @requires_freesurfer('progname'): return decorator
# after checking for progname existence
reason += f" command: {arg}"
try:
run_subprocess([arg, "--version"])
except Exception:
skip = True
else:
skip = False
return pytest.mark.skipif(skip, reason=reason)
else:
# Calling directly as @requires_freesurfer: return decorated function
# and just check env var existence
return pytest.mark.skipif(not has_freesurfer(), reason="Requires Freesurfer")(
arg
)
def requires_good_network(func):
import pytest
return pytest.mark.skipif(
int(os.environ.get("MNE_SKIP_NETWORK_TESTS", 0)),
reason="MNE_SKIP_NETWORK_TESTS is set",
)(func)
def run_command_if_main():
"""Run a given command if it's __main__."""
local_vars = inspect.currentframe().f_back.f_locals
if local_vars.get("__name__", "") == "__main__":
local_vars["run"]()
class ArgvSetter:
"""Temporarily set sys.argv."""
def __init__(self, args=(), disable_stdout=True, disable_stderr=True):
self.argv = list(("python",) + args)
self.stdout = ClosingStringIO() if disable_stdout else sys.stdout
self.stderr = ClosingStringIO() if disable_stderr else sys.stderr
def __enter__(self): # noqa: D105
self.orig_argv = sys.argv
sys.argv = self.argv
self.orig_stdout = sys.stdout
sys.stdout = self.stdout
self.orig_stderr = sys.stderr
sys.stderr = self.stderr
return self
def __exit__(self, *args): # noqa: D105
sys.argv = self.orig_argv
sys.stdout = self.orig_stdout
sys.stderr = self.orig_stderr
def has_mne_c():
"""Check for MNE-C."""
return "MNE_ROOT" in os.environ
def has_freesurfer():
"""Check for Freesurfer."""
return "FREESURFER_HOME" in os.environ
def buggy_mkl_svd(function):
"""Decorate tests that make calls to SVD and intermittently fail."""
@wraps(function)
def dec(*args, **kwargs):
try:
return function(*args, **kwargs)
except np.linalg.LinAlgError as exp:
if "SVD did not converge" in str(exp):
msg = "Intel MKL SVD convergence error detected, skipping test"
warn(msg)
raise SkipTest(msg)
raise
return dec
def assert_and_remove_boundary_annot(annotations, n=1):
"""Assert that there are boundary annotations and remove them."""
__tracebackhide__ = True
from ..io import BaseRaw
if isinstance(annotations, BaseRaw): # allow either input
annotations = annotations.annotations
for key in ("EDGE", "BAD"):
idx = np.where(annotations.description == f"{key} boundary")[0]
assert len(idx) == n, (
f"Got {len(idx)} '{key} boundary' annotations, expected {n}"
)
annotations.delete(idx)
def assert_object_equal(a, b, *, err_msg="Object mismatch", allclose=False):
"""Assert two objects are equal."""
__tracebackhide__ = True
d = object_diff(a, b, allclose=allclose)
assert d == "", f"{err_msg}\n{d}"
def _raw_annot(meas_date, orig_time):
from .._fiff.meas_info import create_info
from ..annotations import Annotations, _handle_meas_date
from ..io import RawArray
info = create_info(ch_names=10, sfreq=10.0)
raw = RawArray(data=np.empty((10, 10)), info=info, first_samp=10)
if meas_date is not None:
meas_date = _handle_meas_date(meas_date)
with raw.info._unlock(check_after=True):
raw.info["meas_date"] = meas_date
annot = Annotations([0.5], [0.2], ["dummy"], orig_time)
raw.set_annotations(annotations=annot)
return raw
def _get_data(x, ch_idx):
"""Get the (n_ch, n_times) data array."""
from ..evoked import Evoked
from ..io import BaseRaw
if isinstance(x, BaseRaw):
return x[ch_idx][0]
elif isinstance(x, Evoked):
return x.data[ch_idx]
def _check_snr(actual, desired, picks, min_tol, med_tol, msg, kind="MEG"):
"""Check the SNR of a set of channels."""
__tracebackhide__ = True
actual_data = _get_data(actual, picks)
desired_data = _get_data(desired, picks)
bench_rms = np.sqrt(np.mean(desired_data * desired_data, axis=1))
error = actual_data - desired_data
error_rms = np.sqrt(np.mean(error * error, axis=1))
np.clip(error_rms, 1e-60, np.inf, out=error_rms) # avoid division by zero
snrs = bench_rms / error_rms
# min tol
snr = snrs.min()
bad_count = (snrs < min_tol).sum()
msg = f" ({msg})" if msg != "" else msg
assert bad_count == 0, (
f"SNR (worst {snr:0.2f}) < {min_tol:0.2f} "
f"for {bad_count}/{len(picks)} channels{msg}"
)
# median tol
snr = np.median(snrs)
assert snr >= med_tol, f"{kind} SNR median {snr:0.2f} < {med_tol:0.2f}{msg}"
def assert_meg_snr(
actual, desired, min_tol, med_tol=500.0, chpi_med_tol=500.0, msg=None
):
"""Assert channel SNR of a certain level.
Mostly useful for operations like Maxwell filtering that modify
MEG channels while leaving EEG and others intact.
"""
__tracebackhide__ = True
from .._fiff.pick import pick_types
picks = pick_types(desired.info, meg=True, exclude=[])
picks_desired = pick_types(desired.info, meg=True, exclude=[])
assert_array_equal(picks, picks_desired, err_msg="MEG pick mismatch")
chpis = pick_types(actual.info, meg=False, chpi=True, exclude=[])
chpis_desired = pick_types(desired.info, meg=False, chpi=True, exclude=[])
if chpi_med_tol is not None:
assert_array_equal(chpis, chpis_desired, err_msg="cHPI pick mismatch")
others = np.setdiff1d(
np.arange(len(actual.ch_names)), np.concatenate([picks, chpis])
)
others_desired = np.setdiff1d(
np.arange(len(desired.ch_names)), np.concatenate([picks_desired, chpis_desired])
)
assert_array_equal(others, others_desired, err_msg="Other pick mismatch")
if len(others) > 0: # if non-MEG channels present
assert_allclose(
_get_data(actual, others),
_get_data(desired, others),
atol=1e-11,
rtol=1e-5,
err_msg="non-MEG channel mismatch",
)
_check_snr(actual, desired, picks, min_tol, med_tol, msg, kind="MEG")
if chpi_med_tol is not None and len(chpis) > 0:
_check_snr(actual, desired, chpis, 0.0, chpi_med_tol, msg, kind="cHPI")
def assert_snr(actual, desired, tol):
"""Assert actual and desired arrays are within some SNR tolerance."""
__tracebackhide__ = True
with np.errstate(divide="ignore"): # allow infinite
snr = linalg.norm(desired, ord="fro") / linalg.norm(desired - actual, ord="fro")
assert snr >= tol, f"{snr=} < {tol=}"
def assert_stcs_equal(stc1, stc2):
"""Check that two STC are equal."""
__tracebackhide__ = True
assert_allclose(stc1.times, stc2.times, err_msg="Times mismatch")
assert_allclose(stc1.data, stc2.data, err_msg="Data mismatch")
assert_array_equal(
stc1.vertices[0],
stc2.vertices[0],
err_msg="Left vertices mismatch",
)
assert_array_equal(
stc1.vertices[1],
stc2.vertices[1],
err_msg="Right vertices mismatch",
)
assert_allclose(stc1.tmin, stc2.tmin, err_msg="tmin mismatch")
assert_allclose(stc1.tstep, stc2.tstep, err_msg="tstep mismatch")
def _dig_sort_key(dig):
"""Sort dig keys."""
return (dig["kind"], dig["ident"])
def assert_dig_allclose(info_py, info_bin, limit=None):
"""Assert dig allclose."""
__tracebackhide__ = True
from .._fiff.constants import FIFF
from .._fiff.meas_info import Info
from ..bem import fit_sphere_to_headshape
from ..channels.montage import DigMontage
# test dig positions
dig_py, dig_bin = info_py, info_bin
if isinstance(dig_py, Info):
assert isinstance(dig_bin, Info), "Both must be Info or DigMontage"
dig_py, dig_bin = dig_py["dig"], dig_bin["dig"]
else:
assert isinstance(dig_bin, DigMontage), "Both must be Info or DigMontage"
assert isinstance(dig_py, DigMontage), "Both must be Info or DigMontage"
dig_py, dig_bin = dig_py.dig, dig_bin.dig
info_py = info_bin = None
assert isinstance(dig_py, list), "dig_py must be a list"
assert isinstance(dig_bin, list), "dig_bin must be a list"
dig_py = sorted(dig_py, key=_dig_sort_key)
dig_bin = sorted(dig_bin, key=_dig_sort_key)
assert len(dig_py) == len(dig_bin), "Different number of dig points"
for ii, (d_py, d_bin) in enumerate(zip(dig_py[:limit], dig_bin[:limit])):
for key in ("ident", "kind", "coord_frame"):
assert d_py[key] == d_bin[key], f"{key=} mismatch on point {ii}"
assert_allclose(
d_py["r"],
d_bin["r"],
rtol=1e-5,
atol=1e-5,
err_msg=f"Failure on {ii}:\n{d_py['r']}\n{d_bin['r']}",
)
if any(d["kind"] == FIFF.FIFFV_POINT_EXTRA for d in dig_py) and info_py is not None:
r_bin, o_head_bin, o_dev_bin = fit_sphere_to_headshape(
info_bin, units="m", verbose="error"
)
r_py, o_head_py, o_dev_py = fit_sphere_to_headshape(
info_py, units="m", verbose="error"
)
assert_allclose(r_py, r_bin, atol=1e-6, err_msg="Sphere radius mismatch")
assert_allclose(
o_dev_py,
o_dev_bin,
rtol=1e-5,
atol=1e-6,
err_msg="Sphere device origin mismatch",
)
assert_allclose(
o_head_py,
o_head_bin,
rtol=1e-5,
atol=1e-6,
err_msg="Sphere origin mismatch",
)
def _click_ch_name(fig, ch_index=0, button=1):
"""Click on a channel name in a raw/epochs/ICA browse-style plot."""
from ..viz.utils import _fake_click
fig.canvas.draw()
text = fig.mne.ax_main.get_yticklabels()[ch_index]
bbox = text.get_window_extent()
x = bbox.intervalx.mean()
y = bbox.intervaly.mean()
_fake_click(fig, fig.mne.ax_main, (x, y), xform="pix", button=button)
def _get_suptitle(fig):
"""Get fig suptitle (shim for matplotlib < 3.8.0)."""
# TODO: obsolete when minimum MPL version is 3.8
if check_version("matplotlib", "3.8"):
return fig.get_suptitle()
else:
# unreliable hack; should work in most tests as we rarely use `sup_{x,y}label`
return fig.texts[0].get_text()
def assert_trans_allclose(actual, desired, dist_tol=0.0, angle_tol=0.0):
__tracebackhide__ = True
from ..transforms import Transform, angle_distance_between_rigid
if isinstance(actual, Transform):
assert isinstance(desired, Transform), "Both must be Transform or ndarray"
assert actual["from"] == desired["from"], "'from' frame mismatch"
assert actual["to"] == desired["to"], "'to' frame mismatch"
actual = actual["trans"]
desired = desired["trans"]
assert isinstance(actual, np.ndarray), "actual should be ndarray"
assert isinstance(desired, np.ndarray), "desired should be ndarray"
assert actual.shape == (4, 4), "actual.shape should be (4, 4)"
assert desired.shape == (4, 4), "desired.shape should be (4, 4)"
angle, dist = angle_distance_between_rigid(
actual, desired, angle_units="deg", distance_units="m"
)
assert dist <= dist_tol, (
f"{1000 * dist:0.3f} > {1000 * dist_tol:0.3f} mm translation"
)
assert angle <= angle_tol, f"{angle:0.3f} > {angle_tol:0.3f}° rotation"
|