docs: align module flow with split apps

This commit is contained in:
lingniu
2026-07-01 06:30:08 +08:00
parent 3e19c72915
commit be2daf986a
2 changed files with 66 additions and 24 deletions

View File

@@ -150,6 +150,19 @@ class PortainerComposeResourceLimitsTest {
.doesNotContain("REDIS_PASSWORD");
}
@Test
void moduleDataFlowShowsSplitProductionAppsInsteadOfDeletedBootstrapAll() throws IOException {
String moduleDataFlow = Files.readString(repositoryRoot().resolve("docs/module-data-flow.html"));
assertThat(moduleDataFlow)
.contains("gb32960-ingest-app")
.contains("jt808-ingest-app")
.contains("yutong-mqtt-app")
.contains("vehicle-history-app")
.contains("vehicle-analytics-app")
.doesNotContain("bootstrap-all");
}
private static void assertServiceMemoryLimit(String compose,
String serviceName,
String envName,