modified: .gitlab-ci.yml modified: bench/qa_questions.txt modified: bench/qa_sweep.py modified: bench/run.sh modified: docs/TICKETS.md modified: docs/_source/README.md modified: docs/_source/_ext/makefile_targets.py modified: docs/_source/api/cli.rst modified: docs/_source/api/distill.rst modified: docs/_source/api/mesh.rst modified: docs/_source/api/qa.rst modified: docs/_source/api/retrieval.rst modified: docs/_source/api/storage.rst modified: docs/_source/api/substrate.rst modified: docs/_source/concepts.rst modified: docs/_source/conf.py modified: docs/_source/cookbook.rst modified: docs/_source/index.rst modified: docs/_source/license.rst modified: docs/_source/quickstart.rst modified: docs/bench-maxing.md modified: docs/benchmarks.md modified: docs/cti-architecture.md modified: docs/diagrams/aborist-modules.dot modified: docs/diagrams/aborist-modules.svg modified: docs/diagrams/mesh-data-flow.dot modified: docs/diagrams/mesh-epoch-lifecycle.dot modified: docs/diagrams/mesh-epoch-lifecycle.svg modified: docs/diagrams/mesh-group-decisions.dot modified: docs/diagrams/mesh-group-decisions.svg modified: docs/diagrams/mesh-identity-stack.dot modified: docs/diagrams/mesh-secret-envelope.dot modified: docs/mesh.md modified: docs/qa-modes-bench.md modified: docs/seven-point-program.md modified: docs/tickets/ticket-000001-retrieval-keywords-audit-gap.md modified: docs/tickets/ticket-000002-reference-frame-polarity-contract.md modified: docs/tickets/ticket-000003-anchor-class-warrant.md modified: docs/tickets/ticket-000005-label-ladder-migration.md modified: docs/tickets/ticket-000006-bench-emergent-findings.md modified: docs/tickets/ticket-000007-query-layer-hyphen-fold.md modified: docs/tickets/ticket-000008-broad-quantifier-preflight-guard.md modified: docs/tickets/ticket-000009-quantifier-preflight-dag-binding.md modified: docs/tickets/ticket-000010-metacognition-preflight-guard.md modified: docs/tickets/ticket-000011-soft-preflight-hint-sidecar.md modified: scripts/backfill_concepts.py modified: scripts/bench_emergent.py modified: tests/crawler/test_async_web_fetcher.py modified: tests/crawler/test_bridge.py modified: tests/crawler/test_web_fetch.py modified: tests/test_bench_qa_sweep.py modified: tests/test_burn.py modified: tests/test_burn_doc.py modified: tests/test_claim_lattice.py modified: tests/test_cli_render.py modified: tests/test_compress.py modified: tests/test_concepts.py modified: tests/test_dag.py modified: tests/test_directives.py modified: tests/test_distill.py modified: tests/test_distill_recursive.py modified: tests/test_evict.py modified: tests/test_frame.py modified: tests/test_grok_source.py modified: tests/test_html_source.py modified: tests/test_ingest.py modified: tests/test_inspect.py modified: tests/test_journal.py modified: tests/test_keys.py modified: tests/test_llm_context_base.py modified: tests/test_merkle.py modified: tests/test_mesh.py modified: tests/test_mesh_aead.py modified: tests/test_mesh_chain.py modified: tests/test_mesh_cli.py modified: tests/test_mesh_cli_pull.py modified: tests/test_mesh_wire.py modified: tests/test_mesh_wire_e2e.py modified: tests/test_metacognition.py modified: tests/test_migration_audit_mode.py modified: tests/test_providence_source.py modified: tests/test_qa.py modified: tests/test_qa_quality_live.py modified: tests/test_quantifier_caps.py modified: tests/test_quantifier_classifier.py modified: tests/test_quantifier_phase4.py modified: tests/test_quantifier_reminder.py modified: tests/test_query.py modified: tests/test_reclassify.py modified: tests/test_repair.py modified: tests/test_resume.py modified: tests/test_snapshot.py modified: tests/test_soft_preflight.py modified: tests/test_tfidf.py modified: tests/test_vcs_source.py modified: tests/test_verify.py modified: tests/test_verify_json.py modified: tests/test_versioned_ingest.py modified: tests/test_warrant.py modified: tests/test_wikipedia_old.py modified: tests/test_wikipedia_xml.py modified: tests/test_wikitext.py
250 lines
7.9 KiB
Python
250 lines
7.9 KiB
Python
"""CLI integration: `arborist mesh pull`.
|
|
|
|
Closes the request half of the gossip loop. Wire-layer Merkle / signature
|
|
verification is covered in test_mesh_wire_e2e.py — these tests cover the
|
|
argparse plumbing, gating, and the local-ingest round-trip that the pull
|
|
verb performs after the wire client returns a verified body.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import json
|
|
from pathlib import Path
|
|
|
|
from arborist.cli import build_parser
|
|
from arborist.document import Document
|
|
from arborist.ingest import ingest_source
|
|
from arborist.mesh import init_identity, set_enabled
|
|
from arborist.mesh.members import add_member
|
|
from arborist.mesh.wire import MeshWireServer
|
|
from arborist.store import connect
|
|
|
|
|
|
class _OneDocSource:
|
|
source_type = "mesh_pull_test"
|
|
|
|
def __init__(self, uri: str, content: str, title: str):
|
|
self._doc = Document(
|
|
uri=uri, content=content, source_type=self.source_type, title=title
|
|
)
|
|
|
|
def iter_documents(self):
|
|
yield self._doc
|
|
|
|
|
|
def _ingest(db_path, *, uri: str, content: str, title: str) -> str:
|
|
conn = connect(db_path)
|
|
try:
|
|
ingest_source(conn, _OneDocSource(uri, content, title))
|
|
row = conn.execute(
|
|
"SELECT document_root FROM documents WHERE document_uri=?", (uri,)
|
|
).fetchone()
|
|
finally:
|
|
conn.close()
|
|
return row["document_root"]
|
|
|
|
|
|
def _bootstrap_two_peers(tmp_path: Path):
|
|
alice_db = tmp_path / "alice.db"
|
|
bob_db = tmp_path / "bob.db"
|
|
a_conn = connect(alice_db)
|
|
try:
|
|
alice = init_identity(a_conn, group_name="t", member_id="alice")
|
|
set_enabled(a_conn, True)
|
|
finally:
|
|
a_conn.close()
|
|
b_conn = connect(bob_db)
|
|
try:
|
|
bob = init_identity(b_conn, group_name="t", member_id="bob")
|
|
set_enabled(b_conn, True)
|
|
finally:
|
|
b_conn.close()
|
|
a_conn = connect(alice_db)
|
|
try:
|
|
add_member(a_conn, member_id="bob", sign_pub=bob.sign_pub, dh_pub=bob.dh_pub)
|
|
finally:
|
|
a_conn.close()
|
|
b_conn = connect(bob_db)
|
|
try:
|
|
add_member(b_conn, member_id="alice", sign_pub=alice.sign_pub, dh_pub=alice.dh_pub)
|
|
finally:
|
|
b_conn.close()
|
|
return alice_db, bob_db, alice, bob
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Gating: mesh must be initialized AND enabled
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_pull_refuses_when_mesh_not_initialized(tmp_path, capsys):
|
|
db = tmp_path / "x.db"
|
|
parser = build_parser()
|
|
args = parser.parse_args([
|
|
"--db", str(db),
|
|
"mesh", "pull",
|
|
"--root", "ab" * 32,
|
|
"--peer", "http://0:0",
|
|
])
|
|
rc = args.func(args)
|
|
assert rc == 2
|
|
assert "not initialized" in capsys.readouterr().err
|
|
|
|
|
|
def test_pull_refuses_when_mesh_disabled(tmp_path, capsys):
|
|
db = tmp_path / "x.db"
|
|
conn = connect(db)
|
|
try:
|
|
init_identity(conn, group_name="t", member_id="alice")
|
|
# No set_enabled — flag stays off.
|
|
finally:
|
|
conn.close()
|
|
parser = build_parser()
|
|
args = parser.parse_args([
|
|
"--db", str(db),
|
|
"mesh", "pull",
|
|
"--root", "ab" * 32,
|
|
"--peer", "http://0:0",
|
|
])
|
|
rc = args.func(args)
|
|
assert rc == 2
|
|
assert "enabled" in capsys.readouterr().err
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Happy path: bob pulls a doc alice has
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_pull_fetches_and_ingests_doc_from_peer(tmp_path, capsys):
|
|
"""Alice has a document; bob pulls it. Bob's local DB ends up with the
|
|
same document_root, an audit event is written, and the response JSON
|
|
reports `pulled`."""
|
|
alice_db, bob_db, _alice, _bob = _bootstrap_two_peers(tmp_path)
|
|
|
|
# Alice ingests; bob does not have it yet.
|
|
document_root = _ingest(
|
|
alice_db,
|
|
uri="https://example.com/alpha",
|
|
content="Alpha content. The quick brown fox jumps over the lazy dog.",
|
|
title="Alpha",
|
|
)
|
|
|
|
srv = MeshWireServer(alice_db, host="127.0.0.1", port=0)
|
|
srv.start_in_thread()
|
|
try:
|
|
parser = build_parser()
|
|
args = parser.parse_args([
|
|
"--db", str(bob_db),
|
|
"mesh", "pull",
|
|
"--root", document_root,
|
|
"--peer", srv.url,
|
|
])
|
|
rc = args.func(args)
|
|
assert rc == 0
|
|
finally:
|
|
srv.stop()
|
|
|
|
payload = json.loads(capsys.readouterr().out)
|
|
assert payload["status"] == "pulled"
|
|
assert payload["document_root"] == document_root
|
|
assert payload["document_uri"] == "https://example.com/alpha"
|
|
assert payload["shard"] == str(bob_db)
|
|
assert isinstance(payload["audit_event_hash"], str)
|
|
assert len(payload["audit_event_hash"]) == 64
|
|
|
|
# Bob's DB now contains the document at the same root.
|
|
b_conn = connect(bob_db)
|
|
try:
|
|
row = b_conn.execute(
|
|
"SELECT document_root, document_uri FROM documents WHERE document_root=?",
|
|
(document_root,),
|
|
).fetchone()
|
|
audit = b_conn.execute(
|
|
"SELECT event_type, subject_root, body FROM audit_events "
|
|
"WHERE event_type='mesh_pulled' ORDER BY seq DESC LIMIT 1"
|
|
).fetchone()
|
|
finally:
|
|
b_conn.close()
|
|
|
|
assert row is not None
|
|
assert row["document_uri"] == "https://example.com/alpha"
|
|
assert audit is not None
|
|
assert audit["subject_root"] == document_root
|
|
body = json.loads(audit["body"])
|
|
assert body["document_root"] == document_root
|
|
assert body["document_uri"] == "https://example.com/alpha"
|
|
assert body["peer"] == srv.url
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Idempotence: pulling a doc bob already has returns `already_present`
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_pull_already_present_when_local_has_doc(tmp_path, capsys):
|
|
alice_db, bob_db, _alice, _bob = _bootstrap_two_peers(tmp_path)
|
|
|
|
# Both peers ingest the same content -> identical document_root.
|
|
content = "Beta content. The quick brown fox jumps over the lazy dog."
|
|
a_root = _ingest(alice_db, uri="https://example.com/beta", content=content, title="Beta")
|
|
b_root = _ingest(bob_db, uri="https://example.com/beta", content=content, title="Beta")
|
|
assert a_root == b_root
|
|
|
|
srv = MeshWireServer(alice_db, host="127.0.0.1", port=0)
|
|
srv.start_in_thread()
|
|
try:
|
|
parser = build_parser()
|
|
args = parser.parse_args([
|
|
"--db", str(bob_db),
|
|
"mesh", "pull",
|
|
"--root", a_root,
|
|
"--peer", srv.url,
|
|
])
|
|
rc = args.func(args)
|
|
assert rc == 0
|
|
finally:
|
|
srv.stop()
|
|
|
|
payload = json.loads(capsys.readouterr().out)
|
|
assert payload["status"] == "already_present"
|
|
assert payload["document_root"] == a_root
|
|
assert payload["document_uri"] == "https://example.com/beta"
|
|
|
|
# No mesh_pulled event was written since we short-circuited.
|
|
b_conn = connect(bob_db)
|
|
try:
|
|
rows = b_conn.execute(
|
|
"SELECT COUNT(*) FROM audit_events WHERE event_type='mesh_pulled'"
|
|
).fetchone()[0]
|
|
finally:
|
|
b_conn.close()
|
|
assert rows == 0
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Failure: peer returns 404 for unknown root
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_pull_returns_rc2_on_unknown_root(tmp_path, capsys):
|
|
"""Peer responds 404 (no such document_root) -> rc=2, error to stderr."""
|
|
alice_db, bob_db, _alice, _bob = _bootstrap_two_peers(tmp_path)
|
|
|
|
srv = MeshWireServer(alice_db, host="127.0.0.1", port=0)
|
|
srv.start_in_thread()
|
|
try:
|
|
parser = build_parser()
|
|
args = parser.parse_args([
|
|
"--db", str(bob_db),
|
|
"mesh", "pull",
|
|
"--root", "ff" * 32,
|
|
"--peer", srv.url,
|
|
])
|
|
rc = args.func(args)
|
|
assert rc == 2
|
|
finally:
|
|
srv.stop()
|
|
|
|
err = capsys.readouterr().err
|
|
assert "pull failed" in err
|