Renames: - platform/ → workspace-server/ (Go module path stays as "platform" for external dep compat — will update after plugin module republish) - workspace-template/ → workspace/ Removed (moved to separate repos or deleted): - PLAN.md — internal roadmap (move to private project board) - HANDOFF.md, AGENTS.md — one-time internal session docs - .claude/ — gitignored entirely (local agent config) - infra/cloudflare-worker/ → Molecule-AI/molecule-tenant-proxy - org-templates/molecule-dev/ → standalone template repo - .mcp-eval/ → molecule-mcp-server repo - test-results/ — ephemeral, gitignored Security scrubbing: - Cloudflare account/zone/KV IDs → placeholders - Real EC2 IPs → <EC2_IP> in all docs - CF token prefix, Neon project ID, Fly app names → redacted - Langfuse dev credentials → parameterized - Personal runner username/machine name → generic Community files: - CONTRIBUTING.md — build, test, branch conventions - CODE_OF_CONDUCT.md — Contributor Covenant 2.1 All Dockerfiles, CI workflows, docker-compose, railway.toml, render.yaml, README, CLAUDE.md updated for new directory names. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
484 lines
19 KiB
Python
484 lines
19 KiB
Python
"""Edge-case tests for :class:`AgentskillsAdaptor`.
|
||
|
||
Covers:
|
||
- Uninstall removes copied skill dirs and strips CLAUDE.md markers
|
||
- Re-install is idempotent (skill already present → skip, marker → skip)
|
||
- Plugin with only prompt fragments (no rules/, no skills/)
|
||
- Empty rules directory doesn't write an empty block
|
||
- README.md / CHANGELOG.md are skipped at the root (not treated as fragments)
|
||
- Uninstall is safe on a plugin that was never installed
|
||
- _deep_merge_hooks deduplication (issue #566)
|
||
"""
|
||
|
||
from __future__ import annotations
|
||
|
||
import logging
|
||
import sys
|
||
from pathlib import Path
|
||
|
||
import pytest
|
||
|
||
_WS_TEMPLATE = Path(__file__).resolve().parents[1]
|
||
if str(_WS_TEMPLATE) not in sys.path:
|
||
sys.path.insert(0, str(_WS_TEMPLATE))
|
||
|
||
from plugins_registry import InstallContext # noqa: E402
|
||
from plugins_registry.builtins import AgentskillsAdaptor # noqa: E402
|
||
|
||
|
||
def _make_ctx(configs_dir: Path, plugin_root: Path) -> InstallContext:
|
||
def _append(filename: str, content: str) -> None:
|
||
target = configs_dir / filename
|
||
existing = target.read_text() if target.exists() else ""
|
||
first_line = content.splitlines()[0] if content else ""
|
||
if first_line and first_line in existing:
|
||
return
|
||
with open(target, "a") as f:
|
||
if existing and not existing.endswith("\n"):
|
||
f.write("\n")
|
||
f.write(content + "\n")
|
||
|
||
return InstallContext(
|
||
configs_dir=configs_dir,
|
||
workspace_id="ws-test",
|
||
runtime="claude_code",
|
||
plugin_root=plugin_root,
|
||
append_to_memory=_append,
|
||
logger=logging.getLogger("test"),
|
||
)
|
||
|
||
|
||
@pytest.fixture
|
||
def full_plugin(tmp_path: Path) -> Path:
|
||
"""Plugin with rules + skills + a fragment + a skip-list file."""
|
||
p = tmp_path / "my-plugin"
|
||
(p / "rules").mkdir(parents=True)
|
||
(p / "rules" / "r1.md").write_text("- rule one\n")
|
||
(p / "skills" / "my-skill").mkdir(parents=True)
|
||
(p / "skills" / "my-skill" / "SKILL.md").write_text("# skill\n")
|
||
(p / "fragment.md").write_text("extra prompt\n")
|
||
(p / "README.md").write_text("should be ignored\n") # skip list
|
||
(p / "CHANGELOG.md").write_text("should be ignored\n")
|
||
return p
|
||
|
||
|
||
async def test_uninstall_removes_skills_and_strips_markers(tmp_path: Path, full_plugin: Path):
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
adaptor = AgentskillsAdaptor("my-plugin", "claude_code")
|
||
ctx = _make_ctx(configs, full_plugin)
|
||
|
||
await adaptor.install(ctx)
|
||
assert (configs / "skills" / "my-skill" / "SKILL.md").exists()
|
||
claude_md = configs / "CLAUDE.md"
|
||
assert "# Plugin: my-plugin / rule: r1.md" in claude_md.read_text()
|
||
assert "# Plugin: my-plugin / fragment: fragment.md" in claude_md.read_text()
|
||
|
||
await adaptor.uninstall(ctx)
|
||
# Skill dir gone, markers removed (at least their header lines).
|
||
assert not (configs / "skills" / "my-skill").exists()
|
||
remaining = claude_md.read_text()
|
||
assert "# Plugin: my-plugin /" not in remaining
|
||
|
||
|
||
async def test_install_is_idempotent_on_skills_and_memory(tmp_path: Path, full_plugin: Path):
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
adaptor = AgentskillsAdaptor("my-plugin", "claude_code")
|
||
ctx = _make_ctx(configs, full_plugin)
|
||
|
||
await adaptor.install(ctx)
|
||
await adaptor.install(ctx)
|
||
# Skill dir still exists and wasn't duplicated.
|
||
assert (configs / "skills" / "my-skill" / "SKILL.md").exists()
|
||
# Marker present but only once — count unique header lines.
|
||
text = (configs / "CLAUDE.md").read_text()
|
||
assert text.count("# Plugin: my-plugin / rule: r1.md") == 1
|
||
assert text.count("# Plugin: my-plugin / fragment: fragment.md") == 1
|
||
|
||
|
||
async def test_readme_and_changelog_not_treated_as_fragments(tmp_path: Path, full_plugin: Path):
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
await AgentskillsAdaptor("my-plugin", "claude_code").install(_make_ctx(configs, full_plugin))
|
||
text = (configs / "CLAUDE.md").read_text()
|
||
assert "should be ignored" not in text
|
||
assert "# Plugin: my-plugin / fragment: README.md" not in text
|
||
|
||
|
||
async def test_plugin_with_no_content_is_noop(tmp_path: Path):
|
||
"""Empty plugin dir → install succeeds, no CLAUDE.md created, no skills/."""
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
plugin_root = tmp_path / "bare"
|
||
plugin_root.mkdir()
|
||
|
||
result = await AgentskillsAdaptor("bare", "claude_code").install(_make_ctx(configs, plugin_root))
|
||
assert result.plugin_name == "bare"
|
||
assert not (configs / "CLAUDE.md").exists()
|
||
assert not (configs / "skills").exists()
|
||
|
||
|
||
async def test_plugin_with_empty_rules_dir(tmp_path: Path):
|
||
"""Plugin has a rules/ dir but no .md files → no memory write."""
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
plugin_root = tmp_path / "demo"
|
||
(plugin_root / "rules").mkdir(parents=True)
|
||
# no .md files
|
||
|
||
await AgentskillsAdaptor("demo", "claude_code").install(_make_ctx(configs, plugin_root))
|
||
assert not (configs / "CLAUDE.md").exists()
|
||
|
||
|
||
async def test_uninstall_safe_when_never_installed(tmp_path: Path, full_plugin: Path):
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
# Never install — uninstall must not raise.
|
||
await AgentskillsAdaptor("my-plugin", "claude_code").uninstall(_make_ctx(configs, full_plugin))
|
||
|
||
|
||
async def test_install_preserves_unrelated_claude_md_content(tmp_path: Path, full_plugin: Path):
|
||
"""User-authored CLAUDE.md content must not be touched by install/uninstall."""
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
(configs / "CLAUDE.md").write_text("# User Note\n\nHand-written content.\n")
|
||
|
||
adaptor = AgentskillsAdaptor("my-plugin", "claude_code")
|
||
ctx = _make_ctx(configs, full_plugin)
|
||
await adaptor.install(ctx)
|
||
await adaptor.uninstall(ctx)
|
||
|
||
remaining = (configs / "CLAUDE.md").read_text()
|
||
assert "Hand-written content" in remaining
|
||
assert "# User Note" in remaining
|
||
|
||
|
||
async def test_install_ignores_non_dir_entries_in_skills(tmp_path: Path):
|
||
"""A stray file (not a directory) inside skills/ is skipped, not copied."""
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
plugin_root = tmp_path / "demo"
|
||
(plugin_root / "skills").mkdir(parents=True)
|
||
(plugin_root / "skills" / "loose-file.txt").write_text("not a skill")
|
||
(plugin_root / "skills" / "real-skill").mkdir()
|
||
(plugin_root / "skills" / "real-skill" / "SKILL.md").write_text("# ok")
|
||
|
||
await AgentskillsAdaptor("demo", "claude_code").install(_make_ctx(configs, plugin_root))
|
||
assert (configs / "skills" / "real-skill" / "SKILL.md").exists()
|
||
# The loose file must not have been copied to /configs/skills/ as a file.
|
||
assert not (configs / "skills" / "loose-file.txt").exists()
|
||
|
||
|
||
async def test_raw_drop_copies_skills_for_unsupported_runtime(tmp_path: Path):
|
||
"""When a plugin falls through to raw-drop, skills still land under
|
||
/configs/plugins/<name>/skills/ (not /configs/skills/) so the user can
|
||
at least inspect them."""
|
||
from plugins_registry import resolve, AdaptorSource
|
||
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
plugin_root = tmp_path / "novel-plugin"
|
||
(plugin_root / "skills" / "magic").mkdir(parents=True)
|
||
(plugin_root / "skills" / "magic" / "SKILL.md").write_text("# magic")
|
||
|
||
adaptor, source = resolve("novel-plugin", "unknown_runtime", plugin_root)
|
||
assert source == AdaptorSource.RAW_DROP
|
||
result = await adaptor.install(_make_ctx(configs, plugin_root))
|
||
assert result.warnings # warning was surfaced
|
||
assert (configs / "plugins" / "novel-plugin" / "skills" / "magic" / "SKILL.md").exists()
|
||
|
||
|
||
async def test_install_skips_skill_when_already_present(tmp_path: Path, full_plugin: Path):
|
||
"""If /configs/skills/<name>/ already exists (e.g. user placed it there
|
||
manually or from another plugin), install must not overwrite or raise."""
|
||
configs = tmp_path / "configs"
|
||
(configs / "skills" / "my-skill").mkdir(parents=True)
|
||
(configs / "skills" / "my-skill" / "SKILL.md").write_text("# USER'S OWN")
|
||
|
||
await AgentskillsAdaptor("my-plugin", "claude_code").install(_make_ctx(configs, full_plugin))
|
||
# Pre-existing content preserved.
|
||
assert (configs / "skills" / "my-skill" / "SKILL.md").read_text() == "# USER'S OWN"
|
||
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# memory_filename plumbing — AgentskillsAdaptor must honour a non-default
|
||
# memory file (for runtimes that read AGENTS.md, .windsurfrules, etc.).
|
||
# ---------------------------------------------------------------------------
|
||
|
||
|
||
async def test_agentskills_adaptor_honours_non_default_memory_filename(tmp_path: Path, full_plugin: Path):
|
||
"""Overriding ctx.memory_filename routes rule/fragment writes there."""
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
|
||
written = {}
|
||
def _append(filename: str, content: str) -> None:
|
||
written[filename] = content
|
||
|
||
ctx = InstallContext(
|
||
configs_dir=configs,
|
||
workspace_id="ws",
|
||
runtime="custom_runtime",
|
||
plugin_root=full_plugin,
|
||
memory_filename="AGENTS.md", # non-default
|
||
append_to_memory=_append,
|
||
logger=logging.getLogger("test"),
|
||
)
|
||
|
||
await AgentskillsAdaptor("my-plugin", "custom_runtime").install(ctx)
|
||
|
||
# Memory writes went to AGENTS.md, not CLAUDE.md.
|
||
assert "AGENTS.md" in written
|
||
assert "CLAUDE.md" not in written
|
||
assert "# Plugin: my-plugin /" in written["AGENTS.md"]
|
||
|
||
|
||
async def test_agentskills_adaptor_uninstall_honours_non_default_memory_filename(tmp_path: Path, full_plugin: Path):
|
||
"""Uninstall strips markers from the same non-default memory file."""
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
(configs / "AGENTS.md").write_text(
|
||
"# User content\n\n# Plugin: my-plugin / rule: r1.md\n\n- rule\n"
|
||
)
|
||
|
||
ctx = InstallContext(
|
||
configs_dir=configs,
|
||
workspace_id="ws",
|
||
runtime="custom_runtime",
|
||
plugin_root=full_plugin,
|
||
memory_filename="AGENTS.md",
|
||
logger=logging.getLogger("test"),
|
||
)
|
||
|
||
await AgentskillsAdaptor("my-plugin", "custom_runtime").uninstall(ctx)
|
||
|
||
remaining = (configs / "AGENTS.md").read_text()
|
||
assert "# User content" in remaining
|
||
assert "# Plugin: my-plugin /" not in remaining
|
||
# CLAUDE.md must not have been created as a side effect.
|
||
assert not (configs / "CLAUDE.md").exists()
|
||
|
||
|
||
def test_install_context_default_memory_filename_is_claude_md():
|
||
"""Regression check: the default plumbing picks CLAUDE.md so existing
|
||
runtimes (Claude Code, DeepAgents) keep working without change."""
|
||
from plugins_registry.protocol import DEFAULT_MEMORY_FILENAME
|
||
assert DEFAULT_MEMORY_FILENAME == "CLAUDE.md"
|
||
|
||
ctx = InstallContext(
|
||
configs_dir=Path("/tmp"),
|
||
workspace_id="w",
|
||
runtime="claude_code",
|
||
plugin_root=Path("/tmp"),
|
||
)
|
||
assert ctx.memory_filename == "CLAUDE.md"
|
||
|
||
|
||
async def test_base_adapter_memory_filename_override_flows_through_install(tmp_path: Path):
|
||
"""End-to-end: a BaseAdapter subclass overriding memory_filename() has
|
||
its value populated into ctx.memory_filename by install_plugins_via_registry.
|
||
Plumbs W2 all the way from BaseAdapter hook down to AgentskillsAdaptor.install."""
|
||
from types import SimpleNamespace
|
||
from adapters.base import BaseAdapter, AdapterConfig
|
||
|
||
class _CustomRuntime(BaseAdapter):
|
||
@staticmethod
|
||
def name() -> str: return "custom_runtime"
|
||
@staticmethod
|
||
def display_name() -> str: return "Custom"
|
||
@staticmethod
|
||
def description() -> str: return "test runtime"
|
||
def memory_filename(self) -> str: return "AGENTS.md"
|
||
async def setup(self, config): return None
|
||
async def create_executor(self, config): return None
|
||
|
||
# Plant a plugin with our registered claude_code adapter (runtime name
|
||
# coercion: custom_runtime has no adapter → raw-drop, but AgentskillsAdaptor
|
||
# is used when we ship adapters/custom_runtime.py).
|
||
plugin_root = tmp_path / "plugins" / "my-plugin"
|
||
(plugin_root / "rules").mkdir(parents=True)
|
||
(plugin_root / "rules" / "r.md").write_text("- rule")
|
||
(plugin_root / "adapters").mkdir()
|
||
(plugin_root / "adapters" / "custom_runtime.py").write_text(
|
||
"from plugins_registry.builtins import AgentskillsAdaptor as Adaptor\n"
|
||
)
|
||
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
cfg = AdapterConfig(
|
||
model="x", config_path=str(configs), workspace_id="ws",
|
||
)
|
||
plugins = SimpleNamespace(
|
||
plugins=[SimpleNamespace(name="my-plugin", path=str(plugin_root))],
|
||
)
|
||
|
||
await _CustomRuntime().install_plugins_via_registry(cfg, plugins)
|
||
|
||
# The hook value (AGENTS.md) propagated into the memory file path.
|
||
assert (configs / "AGENTS.md").exists()
|
||
assert "# Plugin: my-plugin /" in (configs / "AGENTS.md").read_text()
|
||
assert not (configs / "CLAUDE.md").exists()
|
||
|
||
|
||
# ---------- setup.sh hook ----------------------------------------------------
|
||
|
||
async def test_setup_sh_runs_with_configs_dir_env(tmp_path: Path):
|
||
"""setup.sh in plugin root must execute with CONFIGS_DIR exported and
|
||
cwd at plugin_root. Marker file proves the hook ran."""
|
||
plugin = tmp_path / "p"
|
||
(plugin / "skills" / "s1").mkdir(parents=True)
|
||
(plugin / "skills" / "s1" / "SKILL.md").write_text("---\nname: s1\ndescription: d\n---\n")
|
||
setup = plugin / "setup.sh"
|
||
setup.write_text(
|
||
'#!/bin/bash\nset -e\n'
|
||
'echo "ran from $PWD" > "$CONFIGS_DIR/setup-trace.txt"\n'
|
||
)
|
||
setup.chmod(0o755)
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
|
||
result = await AgentskillsAdaptor("p", "claude_code").install(_make_ctx(configs, plugin))
|
||
|
||
trace = configs / "setup-trace.txt"
|
||
assert trace.is_file(), "setup.sh did not run"
|
||
assert str(plugin) in trace.read_text(), "setup.sh did not run with cwd=plugin_root"
|
||
assert result.warnings == [], "successful setup must not warn"
|
||
|
||
|
||
async def test_setup_sh_nonzero_exit_records_warning_does_not_raise(tmp_path: Path):
|
||
"""A failing setup.sh must NOT abort install — skills/rules still land,
|
||
the failure is surfaced as a warning on InstallResult."""
|
||
plugin = tmp_path / "p"
|
||
plugin.mkdir()
|
||
setup = plugin / "setup.sh"
|
||
setup.write_text('#!/bin/bash\necho "boom" >&2\nexit 7\n')
|
||
setup.chmod(0o755)
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
|
||
result = await AgentskillsAdaptor("p", "claude_code").install(_make_ctx(configs, plugin))
|
||
|
||
assert result.warnings, "non-zero exit must produce a warning"
|
||
assert "exited 7" in result.warnings[0]
|
||
assert "boom" in result.warnings[0]
|
||
|
||
|
||
async def test_setup_sh_timeout_records_warning(tmp_path: Path, monkeypatch):
|
||
"""A hanging setup.sh must be killed after the bounded timeout and
|
||
surfaced as a warning — not allowed to wedge install indefinitely."""
|
||
import subprocess as _sp
|
||
plugin = tmp_path / "p"
|
||
plugin.mkdir()
|
||
(plugin / "setup.sh").write_text("#!/bin/bash\nsleep 999\n")
|
||
(plugin / "setup.sh").chmod(0o755)
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
|
||
def _raise_timeout(*a, **kw):
|
||
raise _sp.TimeoutExpired(cmd=a[0], timeout=120)
|
||
monkeypatch.setattr("plugins_registry.builtins.subprocess.run", _raise_timeout)
|
||
|
||
result = await AgentskillsAdaptor("p", "claude_code").install(_make_ctx(configs, plugin))
|
||
|
||
assert any("timed out" in w for w in result.warnings)
|
||
|
||
|
||
async def test_setup_sh_absent_no_warning(tmp_path: Path):
|
||
"""No setup.sh → no hook executed, no warnings."""
|
||
plugin = tmp_path / "p"
|
||
plugin.mkdir()
|
||
configs = tmp_path / "configs"
|
||
configs.mkdir()
|
||
|
||
result = await AgentskillsAdaptor("p", "claude_code").install(_make_ctx(configs, plugin))
|
||
|
||
assert result.warnings == []
|
||
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# _deep_merge_hooks deduplication — issue #566
|
||
# ---------------------------------------------------------------------------
|
||
|
||
from plugins_registry.builtins import _deep_merge_hooks # noqa: E402
|
||
|
||
|
||
def _make_fragment(event: str, matcher: str, command: str) -> dict:
|
||
"""Build a minimal settings-fragment dict for one hook handler."""
|
||
return {
|
||
"hooks": {
|
||
event: [
|
||
{
|
||
"matcher": matcher,
|
||
"hooks": [{"type": "command", "command": command}],
|
||
}
|
||
]
|
||
}
|
||
}
|
||
|
||
|
||
def test_deep_merge_hooks_first_install_adds_handler():
|
||
"""Merging into an empty dict adds the handler exactly once."""
|
||
result = _deep_merge_hooks({}, _make_fragment("PreToolUse", "Bash", "/hooks/lint.sh"))
|
||
handlers = result["hooks"]["PreToolUse"]
|
||
assert len(handlers) == 1
|
||
assert handlers[0]["matcher"] == "Bash"
|
||
|
||
|
||
def test_deep_merge_hooks_dedup_on_reinstall():
|
||
"""Merging the same fragment twice must not duplicate the handler."""
|
||
fragment = _make_fragment("PreToolUse", "Bash", "/hooks/lint.sh")
|
||
once = _deep_merge_hooks({}, fragment)
|
||
twice = _deep_merge_hooks(once, fragment)
|
||
assert len(twice["hooks"]["PreToolUse"]) == 1, (
|
||
"Re-installing the same fragment must not append a duplicate handler"
|
||
)
|
||
|
||
|
||
def test_deep_merge_hooks_dedup_three_reinstalls():
|
||
"""Issue #566 reported 3–4× duplication — verify three installs still yield one entry."""
|
||
fragment = _make_fragment("PostToolUse", "Write", "/hooks/format.sh")
|
||
state = {}
|
||
for _ in range(3):
|
||
state = _deep_merge_hooks(state, fragment)
|
||
assert len(state["hooks"]["PostToolUse"]) == 1
|
||
|
||
|
||
def test_deep_merge_hooks_different_matchers_both_kept():
|
||
"""Two handlers with different matchers must co-exist — dedup must not over-filter."""
|
||
state = _deep_merge_hooks({}, _make_fragment("PreToolUse", "Bash", "/hooks/lint.sh"))
|
||
state = _deep_merge_hooks(state, _make_fragment("PreToolUse", "Edit", "/hooks/lint.sh"))
|
||
assert len(state["hooks"]["PreToolUse"]) == 2
|
||
|
||
|
||
def test_deep_merge_hooks_different_commands_both_kept():
|
||
"""Same matcher but different commands → both handlers must be kept."""
|
||
state = _deep_merge_hooks({}, _make_fragment("PreToolUse", "Bash", "/hooks/lint.sh"))
|
||
state = _deep_merge_hooks(state, _make_fragment("PreToolUse", "Bash", "/hooks/security.sh"))
|
||
assert len(state["hooks"]["PreToolUse"]) == 2
|
||
|
||
|
||
def test_deep_merge_hooks_existing_user_hooks_preserved():
|
||
"""Existing hooks in settings.json that don't match the fragment must survive."""
|
||
existing = {
|
||
"hooks": {
|
||
"PreToolUse": [
|
||
{"matcher": "Bash", "hooks": [{"type": "command", "command": "/user/custom.sh"}]}
|
||
]
|
||
}
|
||
}
|
||
fragment = _make_fragment("PreToolUse", "Edit", "/hooks/lint.sh")
|
||
result = _deep_merge_hooks(existing, fragment)
|
||
matchers = {h["matcher"] for h in result["hooks"]["PreToolUse"]}
|
||
assert matchers == {"Bash", "Edit"}
|
||
|
||
|
||
def test_deep_merge_hooks_top_level_keys_merged():
|
||
"""Non-hook top-level keys in the fragment are merged into the output."""
|
||
existing = {"someKey": "old"}
|
||
fragment = {"someKey": "new", "anotherKey": "value", "hooks": {}}
|
||
result = _deep_merge_hooks(existing, fragment)
|
||
# setdefault semantics: existing keys win, new keys are added
|
||
assert result["someKey"] == "old"
|
||
assert result["anotherKey"] == "value"
|