File size: 5,960 Bytes
fc0f7bd | 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 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved
import re
from typing import Any, List, Optional
import pytest
from hydra._internal.config_repository import ConfigRepository
from hydra._internal.config_search_path_impl import ConfigSearchPathImpl
from hydra._internal.core_plugins.file_config_source import FileConfigSource
from hydra._internal.core_plugins.package_config_source import PackageConfigSource
from hydra._internal.core_plugins.structured_config_source import StructuredConfigSource
from hydra.core.object_type import ObjectType
from hydra.core.plugins import Plugins
from hydra.plugins.config_source import ConfigSource
from hydra.test_utils.config_source_common_tests import ConfigSourceTestSuite
from hydra.test_utils.test_utils import chdir_hydra_root
chdir_hydra_root()
@pytest.mark.parametrize(
"type_, path",
[
pytest.param(
FileConfigSource,
"file://tests/test_apps/config_source_test/dir",
id="FileConfigSource",
),
pytest.param(
PackageConfigSource,
"pkg://tests.test_apps.config_source_test.dir",
id="PackageConfigSource",
),
pytest.param(
StructuredConfigSource,
"structured://tests.test_apps.config_source_test.structured",
id="StructuredConfigSource",
),
],
)
class TestCoreConfigSources(ConfigSourceTestSuite):
pass
def create_config_search_path(path: str) -> ConfigSearchPathImpl:
csp = ConfigSearchPathImpl()
csp.append(provider="test", path=path)
return csp
@pytest.mark.parametrize(
"path",
[
"file://tests/test_apps/config_source_test/dir",
"pkg://tests.test_apps.config_source_test.dir",
],
)
class TestConfigRepository:
def test_config_repository_load(
self, hydra_restore_singletons: Any, path: str
) -> None:
Plugins.instance() # initializes
config_search_path = create_config_search_path(path)
repo = ConfigRepository(config_search_path=config_search_path)
ret = repo.load_config(
config_path="dataset/imagenet.yaml", is_primary_config=False
)
assert ret is not None
assert ret.config == {
"dataset": {"name": "imagenet", "path": "/datasets/imagenet"}
}
assert (
repo.load_config(config_path="not_found.yaml", is_primary_config=True)
is None
)
def test_config_repository_exists(
self, hydra_restore_singletons: Any, path: str
) -> None:
Plugins.instance() # initializes
config_search_path = create_config_search_path(path)
repo = ConfigRepository(config_search_path=config_search_path)
assert repo.config_exists("dataset/imagenet.yaml")
assert not repo.config_exists("not_found.yaml")
@pytest.mark.parametrize( # type: ignore
"config_path,results_filter,expected",
[
(
"",
None,
[
"config_without_group",
"dataset",
"level1",
"optimizer",
"package_test",
"primary_config",
"primary_config_with_non_global_package",
],
),
("", ObjectType.GROUP, ["dataset", "level1", "optimizer", "package_test"]),
(
"",
ObjectType.CONFIG,
[
"config_without_group",
"dataset",
"primary_config",
"primary_config_with_non_global_package",
],
),
("dataset", None, ["cifar10", "imagenet"]),
("dataset", ObjectType.GROUP, []),
("dataset", ObjectType.CONFIG, ["cifar10", "imagenet"]),
("level1", ObjectType.GROUP, ["level2"]),
("level1", ObjectType.CONFIG, []),
("level1/level2", ObjectType.CONFIG, ["nested1", "nested2"]),
],
)
def test_config_repository_list(
self,
hydra_restore_singletons: Any,
path: str,
config_path: str,
results_filter: Optional[ObjectType],
expected: List[str],
) -> None:
Plugins.instance() # initializes
config_search_path = create_config_search_path(path)
repo = ConfigRepository(config_search_path=config_search_path)
ret = repo.get_group_options(
group_name=config_path, results_filter=results_filter
)
assert ret == expected
@pytest.mark.parametrize("sep", [" "]) # type: ignore
@pytest.mark.parametrize( # type: ignore
"cfg_text, expected",
[
("# @package{sep}foo.bar", {"package": "foo.bar"}),
("# @package{sep} foo.bar", {"package": "foo.bar"}),
("# @package {sep}foo.bar", {"package": "foo.bar"}),
("#@package{sep}foo.bar", {"package": "foo.bar"}),
("#@package{sep}foo.bar ", {"package": "foo.bar"}),
(
"#@package{sep}foo.bar bah",
pytest.raises(ValueError, match=re.escape("Too many components in"),),
),
(
"#@package",
pytest.raises(
ValueError, match=re.escape("Expected header format: KEY VALUE, got"),
),
),
(
"""# @package{sep}foo.bar
foo: bar
# comment dsa
""",
{"package": "foo.bar"},
),
(
"""
# @package{sep}foo.bar
""",
{"package": "foo.bar"},
),
],
)
def test_get_config_header(cfg_text: str, expected: Any, sep: str) -> None:
cfg_text = cfg_text.format(sep=sep)
if isinstance(expected, dict):
header = ConfigSource._get_header_dict(cfg_text)
assert header == expected
else:
with expected:
ConfigSource._get_header_dict(cfg_text)
|