Cover index_prefix_domain_map and index_suffix in index migrations (#868) (#869)

* Cover index_prefix_domain_map and index_suffix in index migrations (#868)

The startup Elasticsearch/OpenSearch index migrations built their target
index names from the [elasticsearch]/[opensearch] index_prefix and
index_suffix options alone, while the save path also honors
general.index_prefix_domain_map. A multi-tenant deployment therefore ran
the backfill guard `count` against dmarc_aggregate*/smtp_tls*, patterns
matching none of its real <tenant>_dmarc_aggregate-* indexes. The query
passes allow_no_indices=True, so a zero-match wildcard returns count 0 --
indistinguishable from "already backfilled" -- and the backfill was
skipped silently, with no log line at any level.

Resolve migration index names through a new _migration_index_names()
helper that widens both configurable axes: one name per tenant prefix in
the map plus the unprefixed name (unmapped domains are still saved
unprefixed), and, when an index_suffix is set, the unsuffixed name
alongside the suffixed one so history predating the suffix is covered. A
configured index_prefix still wins outright and suppresses the map
fan-out, matching save-time precedence. The key normalization is now
shared with get_index_prefix() via _normalize_index_prefix(), so the
names parsedmarc migrates cannot drift from the ones it writes. The
resolved lists are logged at DEBUG, and the SIGHUP reload path passes the
freshly parsed map, so a newly onboarded tenant is covered without a
restart.

Also repair the legacy published_policy.fo migration, which has been
unable to complete since mapping types were removed in Elasticsearch 7
(and never existed in OpenSearch): it read the field mapping in the
type-keyed response shape, so the check always fell through, and its
put_mapping() call passed a doc_type argument neither current client
accepts. It now reads either response shape, uses each client's current
signature, and takes its index names in a separate legacy_fo_indexes
argument -- exact names, since 5.0.0 introduced date-suffixed index names
in the same release that fixed the fo declaration, but prefixed and
suffixed where configured, since both options date back to 4.1.0. Tenant
prefixes are excluded: index_prefix_domain_map arrived in 8.19.0, and
this migration renames the index it rebuilds. The Elasticsearch copy,
removed as unreachable during the #806 client migration, is restored now
that the cause is understood.

Finally, reject an index_prefix_domain_map YAML file that is not a
mapping of string tenant names to lists of domains, instead of raising
mid-save on a non-string key or silently matching the wrong domains on a
scalar value -- `in` on a str is a substring test, so "example.co"
matches "example.com"
(https://docs.python.org/3/reference/expressions.html#membership-test-operations).

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* Fix OpenSearch capitalization and spacing in the usage docs

Copilot review of #869: the `index_prefix_domain_map` option line spelled
"OpenSearch" as "Opensearch" and had a doubled space before the type. Both
predate this branch but sit inside a hunk it rewrites. Also wrapped the line
to match the continuation-indent style of every other option in the list, and
corrected the same misspelling in the multi-tenant section a few lines above
the paragraph this branch added.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* Require index_prefix_domain_map domain lists to hold strings

Copilot review of #869: the shape check verified that each value was a
list but not what the list contained, so `tenant_a: [42]` passed and then
never compared equal to any domain the save path looks up -- the same
silent-misbehavior class the check exists to reject, and a contradiction
of the "any other shape is rejected at startup" claim in the docs.

Check the list's items too, and reword the error message, comment,
CHANGELOG and docs to state the rule the check now enforces: a mapping of
tenant names to lists of domain names, all strings.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

* Make the legacy fo migration retry-safe, and nest its mapping body

Copilot review of #869, verified against live Elasticsearch 8.19 and
OpenSearch 3 containers rather than mocks.

Retry safety (a real defect): an attempt interrupted between creating the
-v2 index and deleting the original left debris that made create() fail
with "resource already exists" on every later startup, inside the same try
that swallows the error -- so the index was never migrated and the debris
document survived. Reproduced on a live cluster. Discard a leftover target
first; that is safe precisely because reaching this point means the
original still holds the data, since it is deleted only once the reindex
has succeeded.

Mapping body: the reviewer's concern that a dotted key under `properties`
risks a runtime failure does not hold -- both clusters accept it and
produce a byte-identical mapping, with the dot expanded into
published_policy -> properties -> fo. Switch to the nested object form
anyway, since dot expansion is conditional on the object's `subobjects`
setting and this shape never is, and derive the object/leaf names from the
dotted constant so the write cannot drift from the field the read looks up.

Both fo-migration suites now build per-name Index mocks. A single shared
mock cannot express "the original exists but its migration target does
not", which is the ordinary case and the one the retry fix turns on; the
happy path now also asserts the target index is never deleted.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Sean Whalen
2026-07-27 20:48:00 -04:00
committed by GitHub
co-authored by Claude Opus 5
parent 7500d48c9e
commit b304cf8639
10 changed files with 1438 additions and 137 deletions
+572 -2
View File
@@ -3368,6 +3368,83 @@ watch = true
# Old clients should NOT have been closed (reload failed before swap)
initial_clients["s3_client"].close.assert_not_called()
@unittest.skipUnless(
hasattr(signal, "SIGHUP"),
"SIGHUP not available on this platform",
)
@patch("parsedmarc.cli._init_output_clients")
@patch("parsedmarc.cli._parse_config")
@patch("parsedmarc.cli._load_config")
@patch("parsedmarc.cli.get_dmarc_reports_from_mailbox")
@patch("parsedmarc.cli.watch_inbox")
@patch("parsedmarc.cli.IMAPConnection")
def testReloadPassesFreshDomainMapToOutputClients(
self,
mock_imap,
mock_watch,
mock_get_reports,
mock_load_config,
mock_parse_config,
mock_init_clients,
):
"""The index migrations resolve their target index names from
index_prefix_domain_map, so a reload has to hand the *reloaded* map
to _init_output_clients() -- otherwise a tenant onboarded into the
map is not covered until the process restarts (issue #868)."""
import signal as signal_module
mock_imap.return_value = object()
mock_get_reports.return_value = {
"aggregate_reports": [],
"failure_reports": [],
"smtp_tls_reports": [],
}
mock_load_config.return_value = ConfigParser()
first_map = {"tenant_a": ["example.com"]}
second_map = {"tenant_a": ["example.com"], "tenant_b": ["example.net"]}
maps = [first_map, second_map]
def parse_side_effect(config, opts):
opts.imap_host = "imap.example.com"
opts.imap_user = "user"
opts.imap_password = "pass"
opts.mailbox_watch = True
return maps.pop(0) if maps else second_map
mock_parse_config.side_effect = parse_side_effect
mock_init_clients.return_value = {}
watch_calls = [0]
def watch_side_effect(*args, **kwargs):
watch_calls[0] += 1
if watch_calls[0] == 1:
os.kill(os.getpid(), signal_module.SIGHUP)
return
raise FileExistsError("stop-watch-loop")
mock_watch.side_effect = watch_side_effect
with tempfile.NamedTemporaryFile("w", suffix=".ini", delete=False) as cfg:
cfg.write(self._BASE_CONFIG)
cfg_path = cfg.name
self.addCleanup(lambda: os.path.exists(cfg_path) and os.remove(cfg_path))
with patch.object(sys, "argv", ["parsedmarc", "-c", cfg_path]):
with self.assertRaises(SystemExit):
parsedmarc.cli._main()
self.assertEqual(mock_init_clients.call_count, 2)
self.assertIs(
mock_init_clients.call_args_list[0].kwargs["index_prefix_domain_map"],
first_map,
)
self.assertIs(
mock_init_clients.call_args_list[1].kwargs["index_prefix_domain_map"],
second_map,
)
@unittest.skipUnless(
hasattr(signal, "SIGHUP"),
"SIGHUP not available on this platform",
@@ -3412,7 +3489,7 @@ watch = true
new_client = MagicMock()
init_call = [0]
def init_side_effect(opts):
def init_side_effect(opts, index_prefix_domain_map=None):
init_call[0] += 1
if init_call[0] == 1:
return {"kafka_client": old_client}
@@ -3509,7 +3586,7 @@ watch = true
# Capture opts used on each _init_output_clients call
init_opts_captures = []
def init_side_effect(opts):
def init_side_effect(opts, index_prefix_domain_map=None):
from argparse import Namespace as NS
init_opts_captures.append(NS(**vars(opts)))
@@ -4187,6 +4264,427 @@ to = admin@example.com
self.assertEqual(report_ids, {"allowed-1", "mixed-case-1"})
class TestNormalizeIndexPrefix(unittest.TestCase):
"""_normalize_index_prefix() is the single definition of how an
index_prefix_domain_map key becomes an index name prefix. The save path
and the migration path both call it, so these assertions pin the exact
strings both sides must agree on."""
def test_lowercases_and_strips(self):
self.assertEqual(parsedmarc.cli._normalize_index_prefix(" Acme "), "acme_")
def test_replaces_spaces_and_hyphens(self):
self.assertEqual(
parsedmarc.cli._normalize_index_prefix("Acme Corp-2"), "acme_corp_2_"
)
def test_strips_surrounding_underscores(self):
self.assertEqual(parsedmarc.cli._normalize_index_prefix("_tenant_"), "tenant_")
def test_key_that_normalizes_to_nothing_yields_a_bare_underscore(self):
"""Documents rather than special-cases the degenerate result: the
save path writes such a report's documents to `_dmarc_aggregate-*`,
so the migration path has to target the same name."""
self.assertEqual(parsedmarc.cli._normalize_index_prefix("_"), "_")
self.assertEqual(parsedmarc.cli._normalize_index_prefix(" "), "_")
class TestMigrationIndexNames(unittest.TestCase):
"""_migration_index_names() resolves every index name an index
migration should target, widening both configurable axes (issue #868).
Each case asserts the whole list, in order, so it observes the names
that must be absent as well as the ones that must be present."""
def test_nothing_configured_is_unchanged(self):
self.assertEqual(
parsedmarc.cli._migration_index_names("dmarc_aggregate", None, None, None),
["dmarc_aggregate"],
)
self.assertEqual(
parsedmarc.cli._migration_index_names("dmarc_aggregate", None, None, {}),
["dmarc_aggregate"],
)
def test_suffix_also_targets_the_unsuffixed_name(self):
"""`dmarc_aggregate_prod*` matches none of the operator's own
pre-suffix `dmarc_aggregate-*` indexes, so both are targeted."""
self.assertEqual(
parsedmarc.cli._migration_index_names(
"dmarc_aggregate", "prod", None, None
),
["dmarc_aggregate_prod", "dmarc_aggregate"],
)
def test_empty_suffix_adds_no_duplicate(self):
self.assertEqual(
parsedmarc.cli._migration_index_names("dmarc_aggregate", "", None, None),
["dmarc_aggregate"],
)
def test_domain_map_fans_out_after_the_unprefixed_name(self):
self.assertEqual(
parsedmarc.cli._migration_index_names(
"dmarc_aggregate",
None,
None,
{"Acme Corp": ["acme.example"], "widgets-inc": ["widgets.example"]},
),
[
"dmarc_aggregate",
"acme_corp_dmarc_aggregate",
"widgets_inc_dmarc_aggregate",
],
)
def test_keys_that_normalize_identically_are_deduplicated(self):
self.assertEqual(
parsedmarc.cli._migration_index_names(
"dmarc_aggregate",
None,
None,
{"acme corp": ["a.example"], "Acme-Corp": ["b.example"]},
),
["dmarc_aggregate", "acme_corp_dmarc_aggregate"],
)
def test_configured_prefix_suppresses_the_domain_map_fan_out(self):
"""A deployment with its own index_prefix writes only under that
prefix; submitting an _update_by_query against map-derived patterns
would touch another deployment's data on a shared cluster. The
suffix axis still applies."""
self.assertEqual(
parsedmarc.cli._migration_index_names(
"dmarc_aggregate", "prod", "corp_", {"acme": ["acme.example"]}
),
["corp_dmarc_aggregate_prod", "corp_dmarc_aggregate"],
)
def test_configured_prefix_is_used_verbatim(self):
"""The save path passes index_prefix through untouched, so the
migration path must not normalize it either."""
self.assertEqual(
parsedmarc.cli._migration_index_names(
"dmarc_aggregate", None, "My-Prefix ", None
),
["My-Prefix dmarc_aggregate"],
)
def test_both_axes_compose_in_save_time_order(self):
"""Save time builds `{prefix}{base}_{suffix}-{date}`: the prefix
precedes the base name and the suffix follows it."""
self.assertEqual(
parsedmarc.cli._migration_index_names(
"smtp_tls", "prod", None, {"acme": ["acme.example"]}
),
["smtp_tls_prod", "smtp_tls", "acme_smtp_tls_prod", "acme_smtp_tls"],
)
def test_key_normalizing_to_an_underscore_is_targeted(self):
self.assertEqual(
parsedmarc.cli._migration_index_names(
"dmarc_aggregate", None, None, {"_": ["acme.example"]}
),
["dmarc_aggregate", "_dmarc_aggregate"],
)
class TestMigrateIndexesDomainMapWiring(unittest.TestCase):
"""Issue #868: the startup index migrations built their index names
from index_prefix/index_suffix alone, so a multi-tenant deployment
whose prefixes come from index_prefix_domain_map had its backfill
guard run against `dmarc_aggregate*`, which matches none of its real
`<tenant>_dmarc_aggregate-*` indexes -- a silent no-op. These tests
assert the index names actually handed to migrate_indexes()."""
def _write_config(self, config, domain_map=None):
paths = {}
if domain_map is not None:
import yaml
with NamedTemporaryFile("w", suffix=".yaml", delete=False) as map_file:
yaml.dump(domain_map, map_file)
paths["map"] = map_file.name
self.addCleanup(
lambda: os.path.exists(paths["map"]) and os.remove(paths["map"])
)
config = config.format(map_path=paths["map"])
with NamedTemporaryFile("w", suffix=".ini", delete=False) as config_file:
config_file.write(config)
paths["config"] = config_file.name
self.addCleanup(
lambda: os.path.exists(paths["config"]) and os.remove(paths["config"])
)
return paths["config"]
_IMAP = """
[imap]
host = imap.example.com
user = test-user
password = test-password
"""
@patch("parsedmarc.cli.elastic.migrate_indexes")
@patch("parsedmarc.cli.elastic.set_hosts")
@patch("parsedmarc.cli.get_dmarc_reports_from_mailbox")
@patch("parsedmarc.cli.IMAPConnection")
def testElasticsearchMigrationFansOutOverDomainMap(
self,
mock_imap_connection,
mock_get_reports,
_mock_set_hosts,
mock_migrate,
):
mock_imap_connection.return_value = object()
mock_get_reports.return_value = {
"aggregate_reports": [],
"failure_reports": [],
"smtp_tls_reports": [],
}
config_path = self._write_config(
"""[general]
save_aggregate = true
save_smtp_tls = true
silent = true
index_prefix_domain_map = {map_path}
"""
+ self._IMAP
+ """
[elasticsearch]
hosts = localhost
""",
domain_map={"Tenant-A": ["example.com"], "tenant_b": ["example.net"]},
)
with patch.object(sys, "argv", ["parsedmarc", "-c", config_path]):
parsedmarc.cli._main()
kwargs = mock_migrate.call_args.kwargs
self.assertEqual(
kwargs["aggregate_indexes"],
[
"dmarc_aggregate",
"tenant_a_dmarc_aggregate",
"tenant_b_dmarc_aggregate",
],
)
self.assertEqual(
kwargs["failure_indexes"],
["dmarc_failure", "tenant_a_dmarc_failure", "tenant_b_dmarc_failure"],
)
self.assertEqual(
kwargs["smtp_tls_indexes"],
["smtp_tls", "tenant_a_smtp_tls", "tenant_b_smtp_tls"],
)
# The legacy fo migration does not fan out over the map: it
# deletes the index it reindexes, and no index it could apply to
# can carry a tenant prefix.
self.assertEqual(kwargs["legacy_fo_indexes"], ["dmarc_aggregate"])
@patch("parsedmarc.cli.opensearch.migrate_indexes")
@patch("parsedmarc.cli.opensearch.set_hosts")
@patch("parsedmarc.cli.get_dmarc_reports_from_mailbox")
@patch("parsedmarc.cli.IMAPConnection")
def testOpenSearchMigrationFansOutWithSuffix(
self,
mock_imap_connection,
mock_get_reports,
_mock_set_hosts,
mock_migrate,
):
"""The OpenSearch block carries its own copy of the fan-out, so it
is asserted separately. With an index_suffix set, the unsuffixed
name is targeted too, for documents indexed before the suffix was
configured."""
mock_imap_connection.return_value = object()
mock_get_reports.return_value = {
"aggregate_reports": [],
"failure_reports": [],
"smtp_tls_reports": [],
}
config_path = self._write_config(
"""[general]
save_aggregate = true
silent = true
index_prefix_domain_map = {map_path}
"""
+ self._IMAP
+ """
[opensearch]
hosts = localhost
index_suffix = prod
""",
domain_map={"Tenant-A": ["example.com"]},
)
with patch.object(sys, "argv", ["parsedmarc", "-c", config_path]):
parsedmarc.cli._main()
kwargs = mock_migrate.call_args.kwargs
self.assertEqual(
kwargs["aggregate_indexes"],
[
"dmarc_aggregate_prod",
"dmarc_aggregate",
"tenant_a_dmarc_aggregate_prod",
"tenant_a_dmarc_aggregate",
],
)
self.assertEqual(
kwargs["smtp_tls_indexes"],
[
"smtp_tls_prod",
"smtp_tls",
"tenant_a_smtp_tls_prod",
"tenant_a_smtp_tls",
],
)
@patch("parsedmarc.cli.elastic.migrate_indexes")
@patch("parsedmarc.cli.elastic.set_hosts")
@patch("parsedmarc.cli.get_dmarc_reports_from_mailbox")
@patch("parsedmarc.cli.IMAPConnection")
def testConfiguredPrefixSuppressesDomainMapFanout(
self,
mock_imap_connection,
mock_get_reports,
_mock_set_hosts,
mock_migrate,
):
"""The negative half of the fan-out contract, and the one case here
that also passed before #868 was fixed: a deployment that sets its
own index_prefix must never submit an _update_by_query against a
map-derived index pattern it does not write to."""
mock_imap_connection.return_value = object()
mock_get_reports.return_value = {
"aggregate_reports": [],
"failure_reports": [],
"smtp_tls_reports": [],
}
config_path = self._write_config(
"""[general]
save_aggregate = true
silent = true
index_prefix_domain_map = {map_path}
"""
+ self._IMAP
+ """
[elasticsearch]
hosts = localhost
index_prefix = corp_
""",
domain_map={"Tenant-A": ["example.com"]},
)
with patch.object(sys, "argv", ["parsedmarc", "-c", config_path]):
parsedmarc.cli._main()
kwargs = mock_migrate.call_args.kwargs
self.assertEqual(kwargs["aggregate_indexes"], ["corp_dmarc_aggregate"])
self.assertEqual(kwargs["failure_indexes"], ["corp_dmarc_failure"])
self.assertEqual(kwargs["smtp_tls_indexes"], ["corp_smtp_tls"])
@patch("parsedmarc.cli.elastic.migrate_indexes")
@patch("parsedmarc.cli.elastic.set_hosts")
@patch("parsedmarc.cli.get_dmarc_reports_from_mailbox")
@patch("parsedmarc.cli.IMAPConnection")
def testLegacyFoMigrationHonorsPrefixAndSuffixButNotTheDomainMap(
self,
mock_imap_connection,
mock_get_reports,
_mock_set_hosts,
mock_migrate,
):
"""The published_policy.fo migration takes exact index names, and
index_prefix/index_suffix both date back to 4.1.0, so an affected
index may carry either. It cannot carry a tenant prefix, though:
index_prefix_domain_map arrived in 8.19.0, long after 5.0.0 fixed
the mapping. Asserting the full list covers both halves -- the
configured prefix and suffix are applied, and no map-derived name
is, which matters because this migration deletes the index it
reindexes."""
mock_imap_connection.return_value = object()
mock_get_reports.return_value = {
"aggregate_reports": [],
"failure_reports": [],
"smtp_tls_reports": [],
}
config_path = self._write_config(
"""[general]
save_aggregate = true
silent = true
index_prefix_domain_map = {map_path}
"""
+ self._IMAP
+ """
[elasticsearch]
hosts = localhost
index_prefix = corp_
index_suffix = prod
""",
domain_map={"Tenant-A": ["example.com"]},
)
with patch.object(sys, "argv", ["parsedmarc", "-c", config_path]):
parsedmarc.cli._main()
self.assertEqual(
mock_migrate.call_args.kwargs["legacy_fo_indexes"],
["corp_dmarc_aggregate_prod", "corp_dmarc_aggregate"],
)
@patch("parsedmarc.cli.elastic.save_aggregate_report_to_elasticsearch")
@patch("parsedmarc.cli.elastic.migrate_indexes")
@patch("parsedmarc.cli.elastic.set_hosts")
@patch("parsedmarc.cli.get_dmarc_reports_from_mailbox")
@patch("parsedmarc.cli.IMAPConnection")
def testMigrationTargetsMatchSaveTimePrefix(
self,
mock_imap_connection,
mock_get_reports,
_mock_set_hosts,
mock_migrate,
mock_save_aggregate,
):
"""Both ends of the shared-normalization contract in one test: the
prefix a report is *saved* under has to appear among the index
names the migration targets, or the backfill misses that tenant's
data."""
mock_imap_connection.return_value = object()
report = _sample_aggregate_reports()[0]
report["policy_published"]["domain"] = "example.com"
mock_get_reports.side_effect = _fetch_invoking_save_callback(
{
"aggregate_reports": [report],
"failure_reports": [],
"smtp_tls_reports": [],
}
)
config_path = self._write_config(
"""[general]
save_aggregate = true
silent = true
index_prefix_domain_map = {map_path}
"""
+ self._IMAP
+ """
[elasticsearch]
hosts = localhost
""",
domain_map={"Tenant-A": ["example.com"]},
)
with patch.object(sys, "argv", ["parsedmarc", "-c", config_path]):
parsedmarc.cli._main()
self.assertEqual(
mock_save_aggregate.call_args.kwargs["index_prefix"], "tenant_a_"
)
self.assertIn(
"tenant_a_dmarc_aggregate",
mock_migrate.call_args.kwargs["aggregate_indexes"],
)
class TestMailboxSaveCallbackWiring(unittest.TestCase):
"""The CLI's end of the #242 contract: the callback it hands to
get_dmarc_reports_from_mailbox() (and to watch_inbox()) reports whether
@@ -5157,6 +5655,78 @@ class TestParseConfigGeneral(unittest.TestCase):
self.assertEqual(opts.failure_json_filename, "fa.json")
self.assertEqual(opts.failure_csv_filename, "fa.csv")
def _index_prefix_domain_map_config(self, yaml_text):
with NamedTemporaryFile("w", suffix=".yaml", delete=False) as map_file:
map_file.write(yaml_text)
map_path = map_file.name
self.addCleanup(lambda: os.path.exists(map_path) and os.remove(map_path))
return _config_with("general", {"index_prefix_domain_map": map_path})
def test_index_prefix_domain_map_accepts_a_mapping_of_lists(self):
from parsedmarc.cli import _parse_config
cp = self._index_prefix_domain_map_config(
"tenant_a:\n - example.com\n - example.net\n"
)
self.assertEqual(
_parse_config(cp, _opts()),
{"tenant_a": ["example.com", "example.net"]},
)
def test_index_prefix_domain_map_empty_file_is_unset(self):
"""An empty file loads as None, which keeps multi-tenant prefixing
switched off rather than tripping the shape check."""
from parsedmarc.cli import _parse_config
cp = self._index_prefix_domain_map_config("")
self.assertIsNone(_parse_config(cp, _opts()))
def test_index_prefix_domain_map_rejects_a_non_mapping(self):
"""A list-shaped file has no tenant names, so the save path cannot
derive index prefixes from it and the migration path would resolve
garbage index names from its items."""
from parsedmarc.cli import ConfigurationError, _parse_config
cp = self._index_prefix_domain_map_config("- example.com\n- example.net\n")
with self.assertRaises(ConfigurationError) as ctx:
_parse_config(cp, _opts())
self.assertIn("index_prefix_domain_map", str(ctx.exception))
def test_index_prefix_domain_map_rejects_a_scalar_domain_value(self):
"""The save path tests `domain in <value>`, and `in` on a str is a
substring test, not equality
(https://docs.python.org/3/reference/expressions.html
#membership-test-operations) -- so a scalar value silently claims
every domain that contains it, e.g. "example.co" matching
"example.com"."""
from parsedmarc.cli import ConfigurationError, _parse_config
cp = self._index_prefix_domain_map_config("tenant_a: example.co\n")
with self.assertRaises(ConfigurationError) as ctx:
_parse_config(cp, _opts())
self.assertIn("list of domain names", str(ctx.exception))
def test_index_prefix_domain_map_rejects_a_non_string_domain(self):
"""A non-string list item never compares equal to the base domain
the save path looks up, so `tenant_a: [42]` would match nothing at
all -- the same silent-misbehavior class as a scalar value, and the
reason the check covers the list's items and not just its type."""
from parsedmarc.cli import ConfigurationError, _parse_config
cp = self._index_prefix_domain_map_config("tenant_a:\n - 42\n")
with self.assertRaises(ConfigurationError) as ctx:
_parse_config(cp, _opts())
self.assertIn("all strings", str(ctx.exception))
def test_index_prefix_domain_map_rejects_a_non_string_key(self):
"""A non-string tenant name cannot be normalized into an index
prefix; it used to raise AttributeError mid-save instead."""
from parsedmarc.cli import ConfigurationError, _parse_config
cp = self._index_prefix_domain_map_config("42:\n - example.com\n")
with self.assertRaises(ConfigurationError):
_parse_config(cp, _opts())
def test_general_dns_settings_with_defaults(self):
from parsedmarc.cli import _parse_config