stemedb/crates/stemedb-query/tests/battery/mod.rs
jordan 137a588ed0 feat: Concept hierarchy (Phase 5D) - ConceptPath, source schemes, AliasStore
Implements hierarchical subject identifiers with scheme-based source tier inference:

- ConceptPath type with parse/wire_format, leaf/parent, prefix matching
- SourceScheme registry mapping schemes to default SourceClass tiers:
  - rfc://, fda://, ietf:// → Regulatory (Tier 0)
  - peer://, pubmed:// → PeerReviewed (Tier 1)
  - code://, wiki:// → Expert (Tier 3)
  - blog://, anon:// → Anecdotal (Tier 5)
- AliasStore for cross-scheme entity resolution (bidirectional indexing)
- API endpoints for concept operations
- Battery tests 8, 9 & 10 for concepts, aliases, and advanced signatures
- Go SDK updates for concept types and signing

Completes Phase 5, advancing to Phase 6 (Distributed Writes).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-02 17:44:54 -07:00

18 lines
560 B
Rust

//! Battery Tests: Comprehensive integration tests for StemeDB query layer.
//!
//! This module contains all battery test suites, organized by feature area.
//! Each battery focuses on a specific aspect of the system.
pub mod helpers;
pub mod battery10_signature_advanced;
pub mod battery1_semaglutide;
pub mod battery2_jwt_conflict;
pub mod battery3_decay_math;
pub mod battery4_conflict_score;
pub mod battery5_prefix_scan;
pub mod battery6_signature_tamper;
pub mod battery7_materialized_view;
pub mod battery8_concept_path;
pub mod battery9_alias_store;