74248dfbc1
---ci--- project: oy phase: 5 milestone: v0.2 status: complete phase_role: final requirements: covered: [REQ-009, REQ-011, REQ-015, REQ-016, REQ-017, REQ-018, REQ-020, REQ-021, REQ-012] partial: [] ---/ci--- Milestone v0.2 (The Mesh) complete. Skeleton+tests layer for 9 new modules + 1 extension: x/window (REQ-015, fullest), x/stand (REQ-016, 9 types), x/guild (REQ-017, HandPass 0%), x/pact (REQ-020, 6 types + Mission Lock), x/partner (REQ-018, 4-tier), x/council (REQ-011, 3 councils + Mission Lock const), x/forex (Forex v1, Bread/Asset pairs), x/bond (REQ-021, 8% cap Clamp), x/satellite (REQ-009, 5-chain L2 + ICS-20 v1), x/bearers EXTENDED (OY-LR/Beacon). 303 tests total (53 v0.1 baseline + 250 new). Coverage >=95.9% on all new/extended packages (8 at 100%). Lexicon firewall (REQ-012) project-wide + per-module. G-003 by-ID-string import invariant. 5 phases: P0 (v0.1.0) + P1-P4 (v0.1.1..v0.1.4) + P5 final (v0.1.5 = this milestone release). Per run.md patch-line model: no separate minor tag. 14 clarification decisions (D-020..D-033), 15 research assumptions (A-201..A-215), 31 tasks across 5 phases, 10 grill binding decisions (G-001..G-010) all applied. Next milestone: v0.3 (The Bearers) per ROADMAP Phase 3.
88 lines
3.1 KiB
Go
88 lines
3.1 KiB
Go
// Package lexicon holds the project-wide lexicon firewall (REQ-012).
|
|
//
|
|
// The 9 banned financial terms must never appear in any production or test
|
|
// .go file under x/. This package exposes the banned-terms list and detection
|
|
// helpers; the terms themselves are assembled at runtime from two-character
|
|
// fragments so that the SOURCE of this package does not contain any banned
|
|
// term as a literal substring. This is the standard lexicon-test bootstrapping
|
|
// pattern: the firewall's own code must not trip the firewall.
|
|
//
|
|
// The lexicon firewall is NEW in v0.2 (G-002): v0.1 is lexicon-clean in
|
|
// practice but has zero lexicon tests. The project-wide meta-test in
|
|
// P1-04-02 (lexicon_meta_test.go) is the durable firewall; per-package
|
|
// lexicon assertions in each new module's types_test.go scan the module's
|
|
// production files.
|
|
package lexicon
|
|
|
|
import (
|
|
"regexp"
|
|
"strings"
|
|
)
|
|
|
|
// term is a banned term assembled from two halves so the source file does
|
|
// not contain the literal banned word.
|
|
type term struct {
|
|
a, b string
|
|
}
|
|
|
|
// fragments holds the 9 banned terms as (a, b) halves. Neither half alone
|
|
// is a banned term, and concatenation produces the banned term at runtime.
|
|
var fragments = []term{
|
|
{"ba", "nk"}, // bank
|
|
{"depo", "sit"}, // deposit
|
|
{"intere", "st"}, // interest
|
|
{"yie", "ld"}, // yield
|
|
{"curre", "ncy"}, // currency
|
|
{"dol", "lar"}, // dollar
|
|
{"eu", "ro"}, // euro
|
|
{"acco", "unt"}, // account
|
|
{"savin", "gs"}, // savings
|
|
{"deposito", "r"}, // depositor
|
|
}
|
|
|
|
// BannedTerms returns the banned financial terms (REQ-012). The spec lists
|
|
// 10 terms (often described as "9" in plan docs, counting dollar/euro as a
|
|
// pair): bank, deposit, interest, yield, currency, dollar, euro, account,
|
|
// savings, depositor. The terms are assembled at runtime from fragments so
|
|
// this package's source does not contain any banned term as a literal
|
|
// substring.
|
|
func BannedTerms() []string {
|
|
out := make([]string, len(fragments))
|
|
for i, t := range fragments {
|
|
out[i] = t.a + t.b
|
|
}
|
|
return out
|
|
}
|
|
|
|
// bannedTermRegexes are the compiled word-boundary regexes for the 9 banned
|
|
// terms. Word boundaries prevent false positives like "openyield" matching
|
|
// "yield" or "european" matching "euro" — the firewall bans the words as
|
|
// concepts, not as arbitrary substrings. The regexes are case-insensitive.
|
|
var bannedTermRegexes = func() []*regexp.Regexp {
|
|
terms := BannedTerms()
|
|
out := make([]*regexp.Regexp, len(terms))
|
|
for i, t := range terms {
|
|
out[i] = regexp.MustCompile(`\b` + regexp.QuoteMeta(t) + `\b`)
|
|
}
|
|
return out
|
|
}()
|
|
|
|
// FindBannedTerm returns the first banned term found in s (case-insensitive,
|
|
// word-boundary match) and true, or "" and false if none. Used by the
|
|
// project-wide meta-test (P1-04-02) and the per-package lexicon assertions.
|
|
func FindBannedTerm(s string) (string, bool) {
|
|
lower := strings.ToLower(s)
|
|
terms := BannedTerms()
|
|
for i, re := range bannedTermRegexes {
|
|
if re.MatchString(lower) {
|
|
return terms[i], true
|
|
}
|
|
}
|
|
return "", false
|
|
}
|
|
|
|
// ContainsBannedTerm is an alias for FindBannedTerm kept for compatibility.
|
|
func ContainsBannedTerm(s string) (string, bool) {
|
|
return FindBannedTerm(s)
|
|
}
|