File size: 1,687 Bytes
e8055cf | 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 | import pytest
from experiments import config
def test_spatial_code_path_has_all_dimensions():
path = config.spatial_code_path(
"scene0000_00",
"A Human Readable Hypothesis",
"metric",
"tracking",
"uniform",
64,
)
assert (
path
== config.CACHES_ROOT
/ "spatial codes"
/ "metric"
/ "tracking"
/ "uniform"
/ "A Human Readable Hypothesis"
/ "64"
/ "explicit"
/ "scene0000_00.json"
)
def test_spatial_code_path_accepts_compact_format():
path = config.spatial_code_path(
"scene0000_00",
"A Human Readable Hypothesis",
"metric",
"tracking",
"uniform",
64,
spatial_code_format="compact",
)
assert (
path
== config.CACHES_ROOT
/ "spatial codes"
/ "metric"
/ "tracking"
/ "uniform"
/ "A Human Readable Hypothesis"
/ "64"
/ "compact"
/ "scene0000_00.json"
)
def test_spatial_code_directory_rejects_unknown_format():
with pytest.raises(ValueError):
config.spatial_code_directory(
"A Hypothesis", "metric", "tracking", "uniform", 64, "bogus"
)
@pytest.mark.parametrize("name", ["../escape", "nested/name", "", ".", ".."])
def test_hypothesis_name_cannot_escape_root(name):
with pytest.raises(ValueError):
config.normalize_hypothesis(name)
def test_result_path_is_experiment_local():
path = config.result_directory(
"A Hypothesis", "symbolic", "metric", "tracking", "uniform", 64
)
assert path.is_relative_to(config.RESULTS_ROOT)
|