The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.
Follows the import procedure in README.md.
source/ the originating repository verbatim — 78 documents, 28 SVGs,
8 manifests, plus .source-revision recording the commit
final/ the SSOT
document.md 729 lines written from the 29 experiment documents, not
concatenated: what was predicted, what was measured, and
where the measurement itself was wrong
evidence/raw 125 outputs, flattened to <experiment>__<file> because
the originals collided (01-baseline.txt appeared three
times) and the audit only globs the top level
evidence/meta one per raw file; command and exitCode are null and the
README says why rather than inventing them
evidence/browser 22 captures
assets/ three diagrams through techviz
.techviz/ their VizSpecs
A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.
Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.
verify-pipeline.py passes. audit-records.py reports no issues.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
28 lines
5.2 KiB
Plaintext
28 lines
5.2 KiB
Plaintext
./app-bootstrap/src/test/java/dev/caskeleton/bootstrap/architecture/CleanArchitectureTest.java:178: // org.springframework.data..) from ..domain.., so @CreatedDate / @Column / AuditableEntity
|
|
./app-bootstrap/src/test/java/dev/caskeleton/bootstrap/architecture/CleanArchitectureTest.java:181: // created/modified is an adapter-persistence concern (AuditableEntity @MappedSuperclass),
|
|
./app-bootstrap/src/test/java/dev/caskeleton/bootstrap/architecture/CleanArchitectureTest.java:193: + "metadata lives only on the adapter-persistence AuditableEntity "
|
|
./app-bootstrap/src/test/java/dev/caskeleton/bootstrap/architecture/CleanArchitectureTest.java:2681: + "AuditableEntity @MappedSuperclass, not on a domain class "
|
|
./sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/adapter/outbound/persistence/entity/WorkLogEntity.java:3:import dev.caskeleton.adapter.outbound.persistence.audit.AuditableEntity;
|
|
./sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/adapter/outbound/persistence/entity/WorkLogEntity.java:24:// Extends AuditableEntity to inherit the created/updated audit columns; the domain WorkLog
|
|
./sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/adapter/outbound/persistence/entity/WorkLogEntity.java:28:public class WorkLogEntity extends AuditableEntity {
|
|
./sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/adapter/outbound/persistence/entity/PosterEntity.java:3:import dev.caskeleton.adapter.outbound.persistence.audit.AuditableEntity;
|
|
./sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/adapter/outbound/persistence/entity/PosterEntity.java:16:// Extends AuditableEntity to inherit the created/updated audit columns; the domain Poster carries
|
|
./sample-portfolio/src/main/java/dev/caskeleton/sample/portfolio/adapter/outbound/persistence/entity/PosterEntity.java:20:public class PosterEntity extends AuditableEntity {
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/audit/AuditableEntityTest.java:10: * Unit contract for the manual-capture {@link AuditableEntity} base
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/audit/AuditableEntityTest.java:13: * <p>Exercised through a tiny concrete subclass because {@link AuditableEntity} is a
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/audit/AuditableEntityTest.java:17:class AuditableEntityTest {
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/audit/AuditableEntityTest.java:23: static final class Probe extends AuditableEntity {}
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/auditing/AuditingCandidateStatusTest.java:5:import dev.caskeleton.adapter.outbound.persistence.audit.AuditableEntity;
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/auditing/AuditingCandidateStatusTest.java:21: * actor length and on when the stamp is captured, and the canonical one is {@link AuditableEntity}
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/auditing/AuditingCandidateStatusTest.java:56: assertThat(columnOf(AuditableEntity.class, "updatedAt"))
|
|
./adapter/outbound/persistence-jpa/src/test/java/dev/caskeleton/adapter/outbound/persistence/auditing/AuditingCandidateStatusTest.java:64: assertThat(lengthOf(AuditableEntity.class, "updatedBy")).isEqualTo(256);
|
|
./adapter/outbound/persistence-jpa/src/main/java/dev/caskeleton/adapter/outbound/persistence/outbox/entity/OutboxEventEntity.java:13: * V3__outbox_event.sql}). Does not extend {@code AuditableEntity} (infra record, not a domain
|
|
./adapter/outbound/persistence-jpa/src/main/java/dev/caskeleton/adapter/outbound/persistence/audit/AuditableEntity.java:14:public abstract class AuditableEntity {
|
|
./adapter/outbound/persistence-jpa/src/main/java/dev/caskeleton/adapter/outbound/persistence/audit/AuditableEntity.java:28: protected AuditableEntity() {}
|
|
./adapter/outbound/persistence-jpa/src/testkit/java/dev/caskeleton/adapter/outbound/persistence/testkit/arch/JpaAuditMechanismRule.java:24: * <p>Two exist. {@code audit/AuditableEntity} stamps {@code created_*}/{@code updated_*} explicitly
|
|
./adapter/outbound/persistence-jpa/src/testkit/java/dev/caskeleton/adapter/outbound/persistence/testkit/arch/JpaAuditMechanismRule.java:36: "dev.caskeleton.adapter.outbound.persistence.audit.AuditableEntity";
|
|
./adapter/outbound/persistence-jpa/src/testkit/java/dev/caskeleton/adapter/outbound/persistence/testkit/arch/JpaAuditMechanismRule.java:100: private static boolean extendsAuditableEntity(JavaClass entity) {
|
|
./adapter/outbound/persistence-jpa/src/testkit/java/dev/caskeleton/adapter/outbound/persistence/testkit/arch/JpaAuditMechanismRule.java:113: return extendsAuditableEntity(entity)
|
|
./adapter/outbound/persistence-jpa/src/testkit/java/dev/caskeleton/adapter/outbound/persistence/testkit/arch/JpaAuditMechanismRule.java:199: boolean explicit = extendsAuditableEntity(entity);
|
|
./adapter/outbound/persistence-jpa/src/testkit/java/dev/caskeleton/adapter/outbound/persistence/testkit/arch/JpaAuditMechanismRule.java:209: + " extends AuditableEntity and embeds AuditMetadata: one fact, two writers,"
|