Compare commits
17 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a346d514dd | |||
| a2d3f66b8b | |||
| 93d84019b9 | |||
| 6d26ed094c | |||
| 4201da63d2 | |||
| 9c780f8164 | |||
| 440e7cf03d | |||
| ae605d2368 | |||
| 9b2abef4e1 | |||
| a55956ffa5 | |||
| aba22358f5 | |||
| b604fed72b | |||
| 6060d21995 | |||
| 1c2f3a62c1 | |||
| 0646c73e48 | |||
| eacdd2d453 | |||
| 8c312c717c |
+22
-11
@@ -60,7 +60,19 @@ jobs:
|
|||||||
dotnet tool install --global PowerShell
|
dotnet tool install --global PowerShell
|
||||||
echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH"
|
echo "$HOME/.dotnet/tools" >> "$GITHUB_PATH"
|
||||||
|
|
||||||
# IPC-01 / IPC-19 / IPC-20: descriptor set + Contracts/Generated must match the current protos.
|
# IPC-25 Check 4 regenerates the Go and Python client bindings and diffs them, so the pinned
|
||||||
|
# generators must be present. protoc 34.1 is already installed above; Go and Python are set up
|
||||||
|
# above. Pin protoc-gen-go / protoc-gen-go-grpc to match the committed header stamps and grpcio
|
||||||
|
# -tools to match the committed _pb2 stamp, or Check 4 false-fails (or masks drift) under churn.
|
||||||
|
- name: Install pinned client codegen generators (Check 4)
|
||||||
|
run: |
|
||||||
|
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.11
|
||||||
|
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.6.2
|
||||||
|
echo "$(go env GOPATH)/bin" >> "$GITHUB_PATH"
|
||||||
|
python -m pip install 'grpcio-tools==1.80.0'
|
||||||
|
|
||||||
|
# IPC-01 / IPC-19 / IPC-20 / IPC-25: descriptor set + Contracts/Generated + Go/Python bindings
|
||||||
|
# must match the current protos.
|
||||||
- name: Codegen / descriptor freshness
|
- name: Codegen / descriptor freshness
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: ./scripts/check-codegen.ps1
|
run: ./scripts/check-codegen.ps1
|
||||||
@@ -93,10 +105,12 @@ jobs:
|
|||||||
python -m pytest
|
python -m pytest
|
||||||
|
|
||||||
java:
|
java:
|
||||||
# Java client runs on a JDK-17 Linux runner (the macOS dev box has no JRE). The protobuf gradle
|
# Java client runs on a JDK-17 Linux runner (the macOS dev box has no JRE). The grpc/protobuf
|
||||||
# plugin rewrites MxaccessGateway.java with spurious protobuf-runtime-version churn on every
|
# toolchain is fully pinned (clients/java/build.gradle: grpcVersion 1.76.0 / protobufVersion
|
||||||
# build; when no .proto changed, revert that one file so checkGeneratedClean / a dirty tree does
|
# 4.33.1), so a regeneration is byte-identical to the committed aggregates modulo real .proto
|
||||||
# not fail the build (repo memory project_java_generated_churn).
|
# changes — `Verify generated tree is clean` (git diff) is the true drift gate (IPC-24). The
|
||||||
|
# single-file Java aggregates are where message-level proto drift lands, so this job now catches
|
||||||
|
# a .proto edited without regenerating and committing the Java client.
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@@ -115,13 +129,10 @@ jobs:
|
|||||||
- name: Gradle test
|
- name: Gradle test
|
||||||
working-directory: clients/java
|
working-directory: clients/java
|
||||||
run: gradle test
|
run: gradle test
|
||||||
- name: Revert spurious protobuf-version churn (no .proto changed)
|
|
||||||
# Both generated aggregates can pick up protobuf-runtime-version churn on regen; revert
|
|
||||||
# both so verify-clean still catches a real, uncommitted proto/codegen change elsewhere.
|
|
||||||
run: |
|
|
||||||
git checkout -- clients/java/src/main/generated/main/java/mxaccess_gateway/v1/MxaccessGateway.java || true
|
|
||||||
git checkout -- clients/java/src/main/generated/main/java/mxaccess_worker/v1/MxaccessWorker.java || true
|
|
||||||
- name: Verify generated tree is clean
|
- name: Verify generated tree is clean
|
||||||
|
# IPC-24: the pinned grpc/protobuf toolchain regenerates byte-identical output, so this
|
||||||
|
# git-diff gate now catches message-level proto drift in the single-file Java aggregates
|
||||||
|
# (the old unconditional churn-revert step masked exactly that class and was deleted).
|
||||||
run: git diff --exit-code -- clients/java/src/main/generated
|
run: git diff --exit-code -- clients/java/src/main/generated
|
||||||
|
|
||||||
windows-x86:
|
windows-x86:
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -61,7 +61,7 @@ Coordinate with (do not block on) open GWC-21: if `EventChannelFullModeTimeout`
|
|||||||
|
|
||||||
The proto comment currently states "`oldest_available_sequence` itself IS still retained", which becomes false in the empty-ring case — per the docs-with-source rule, amend the field comment in the same commit to define the empty-ring value ("when nothing is retained, this is the next sequence that can be delivered — `highest observed + 1` — and the `oldest − 1` resume formula remains valid; the interval evicted is unchanged"). This is a comment-only proto change (no descriptor delta), but the repo's codegen rules still apply — see the steps.
|
The proto comment currently states "`oldest_available_sequence` itself IS still retained", which becomes false in the empty-ring case — per the docs-with-source rule, amend the field comment in the same commit to define the empty-ring value ("when nothing is retained, this is the next sequence that can be delivered — `highest observed + 1` — and the `oldest − 1` resume formula remains valid; the interval evicted is unchanged"). This is a comment-only proto change (no descriptor delta), but the repo's codegen rules still apply — see the steps.
|
||||||
|
|
||||||
**Implementation.**
|
**Implementation.** (Code + `docs/Sessions.md` landed 2026-08-07 on `fix/gwc-25-replaygap-trio`; the deferred proto-comment amendment below **landed 2026-08-07** with the IPC-23 codegen wave on `fix/ipc-24-25-codegen` — GWC-25 is fully resolved.)
|
||||||
- `Sessions/SessionEventDistributor.cs:463-467`: replace `oldestAvailableSequence = 0;` with `oldestAvailableSequence = gap ? _highestSequenceSeen + 1 : 0;` plus a comment explaining the `oldest − 1` client formula this must keep valid (cite this finding).
|
- `Sessions/SessionEventDistributor.cs:463-467`: replace `oldestAvailableSequence = 0;` with `oldestAvailableSequence = gap ? _highestSequenceSeen + 1 : 0;` plus a comment explaining the `oldest − 1` client formula this must keep valid (cite this finding).
|
||||||
- `src/ZB.MOM.WW.MxGateway.Contracts/Protos/mxaccess_gateway.proto` (`ReplayGap.oldest_available_sequence`, ~line 759): append the empty-ring sentence above. Then regenerate per repo rules: delete `src/ZB.MOM.WW.MxGateway.Contracts/Generated/*.cs`, `dotnet build src/ZB.MOM.WW.MxGateway.Contracts/ZB.MOM.WW.MxGateway.Contracts.csproj`, and **commit `Generated/`** (net48 worker builds break otherwise). Sync the vendored client copies of the proto byte-identical (`clients/*/`); a comment-only edit changes no descriptor, so: Python `*_pb2*` output is unchanged (comments are not embedded — regenerate with the pinned grpcio-tools only if the files actually differ), Go/C#/Rust generated doc comments will churn — regenerate those per each client README, and revert spurious Java aggregate-file churn if no message-level delta appears (per the established Java convention).
|
- `src/ZB.MOM.WW.MxGateway.Contracts/Protos/mxaccess_gateway.proto` (`ReplayGap.oldest_available_sequence`, ~line 759): append the empty-ring sentence above. Then regenerate per repo rules: delete `src/ZB.MOM.WW.MxGateway.Contracts/Generated/*.cs`, `dotnet build src/ZB.MOM.WW.MxGateway.Contracts/ZB.MOM.WW.MxGateway.Contracts.csproj`, and **commit `Generated/`** (net48 worker builds break otherwise). Sync the vendored client copies of the proto byte-identical (`clients/*/`); a comment-only edit changes no descriptor, so: Python `*_pb2*` output is unchanged (comments are not embedded — regenerate with the pinned grpcio-tools only if the files actually differ), Go/C#/Rust generated doc comments will churn — regenerate those per each client README, and revert spurious Java aggregate-file churn if no message-level delta appears (per the established Java convention).
|
||||||
- `docs/Sessions.md` (~lines 228-234, ReplayGap section): document the empty-ring sentinel value and that `after_worker_sequence = oldest_available_sequence − 1` is the universal resume formula in both the retained and fully-evicted cases.
|
- `docs/Sessions.md` (~lines 228-234, ReplayGap section): document the empty-ring sentinel value and that `after_worker_sequence = oldest_available_sequence − 1` is the universal resume formula in both the retained and fully-evicted cases.
|
||||||
|
|||||||
@@ -12,16 +12,16 @@ All `path:line` citations were re-verified against the working tree at `4f5371f`
|
|||||||
|
|
||||||
| ID | Sev | Tier | Eff | Dep | Status | Title |
|
| ID | Sev | Tier | Eff | Dep | Status | Title |
|
||||||
|----|-----|------|-----|-----|--------|-------|
|
|----|-----|------|-----|-----|--------|-------|
|
||||||
| IPC-23 | Medium | P0 | S¹ | WRK-21 | In progress — mechanics landed with WRK-21; proto-comment/doc wave pending | DrainEvents bound is count-based only; byte-heavy queue still builds a session-killing reply frame (contract requirements here; fix mechanics in WRK-21) |
|
| IPC-23 | Medium | P0 | S¹ | WRK-21 | Done | DrainEvents bound is count-based only; byte-heavy queue still builds a session-killing reply frame (contract requirements here; fix mechanics in WRK-21) |
|
||||||
| IPC-24 | Medium | P0 | S | — | Not started | CI's unconditional Java churn-revert masks real generated-code drift for message-level proto changes |
|
| IPC-24 | Medium | P0 | S | — | Done | CI's unconditional Java churn-revert masks real generated-code drift for message-level proto changes |
|
||||||
| IPC-25 | Medium | P0 | M | — | Not started | Committed Go/Python worker bindings are stale at HEAD; no guard covers them |
|
| IPC-25 | Medium | P0 | M | — | Done | Committed Go/Python worker bindings are stale at HEAD; no guard covers them |
|
||||||
| IPC-26 | Low | P2 | S¹ | WRK-22 | Done (mechanics landed in WRK-22) | Cancelled write leaves a ghost frame that is still written (contract requirement here; fix mechanics in WRK-22) |
|
| IPC-26 | Low | P2 | S¹ | WRK-22 | Done (mechanics landed in WRK-22) | Cancelled write leaves a ghost frame that is still written (contract requirement here; fix mechanics in WRK-22) |
|
||||||
| IPC-27 | Low | P2 | S | — | Not started | Descriptor freshness test blind to enums, enum values, services/methods, and the Galaxy contract |
|
| IPC-27 | Low | P2 | S | — | Done | Descriptor freshness test blind to enums, enum values, services/methods, and the Galaxy contract |
|
||||||
| IPC-28 | Low | — | S | — | Done | `docs/Grpc.md` omits the `CommandTooLarge` → `ResourceExhausted` mapping |
|
| IPC-28 | Low | — | S | — | Done | `docs/Grpc.md` omits the `CommandTooLarge` → `ResourceExhausted` mapping |
|
||||||
| IPC-29 | Low | — | S | — | Done (discharged by WRK-26) | Worker writer priority scheduling and write-time sequence stamping undocumented in the frame-protocol doc |
|
| IPC-29 | Low | — | S | — | Done (discharged by WRK-26) | Worker writer priority scheduling and write-time sequence stamping undocumented in the frame-protocol doc |
|
||||||
| IPC-30 | Low | P0 | M | WRK-21 (same file/batch) | Done | Oversized worker→gateway event frame is session-fatal — make the death deliberate, structured, and diagnosable |
|
| IPC-30 | Low | P0 | M | WRK-21 (same file/batch) | Done | Oversized worker→gateway event frame is session-fatal — make the death deliberate, structured, and diagnosable |
|
||||||
| IPC-31 | Info | — | — | — | N/A | Gateway stamps sequence at creation, worker at write — accepted divergence; sequence is documented diagnostic-only (`gateway.md:328-330`); revisit only if sequence ever becomes load-bearing |
|
| IPC-31 | Info | — | — | — | N/A | Gateway stamps sequence at creation, worker at write — accepted divergence; sequence is documented diagnostic-only (`gateway.md:328-330`); revisit only if sequence ever becomes load-bearing |
|
||||||
| IPC-32 | Info | — | S | IPC-25 | Not started | `check-codegen.ps1` check labels miscounted (folded into the IPC-25 script edit) |
|
| IPC-32 | Info | — | S | IPC-25 | Done | `check-codegen.ps1` check labels miscounted (folded into the IPC-25 script edit) |
|
||||||
|
|
||||||
¹ Effort for the work owned by *this* plan (proto comments + docs + acceptance criteria). The code mechanics are M and are tracked under WRK-21 / WRK-22 in the worker plan.
|
¹ Effort for the work owned by *this* plan (proto comments + docs + acceptance criteria). The code mechanics are M and are tracked under WRK-21 / WRK-22 in the worker plan.
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ Repo rules that bind every entry: docs change in the same commit as the source (
|
|||||||
| SEC-33 | Low | P1 | M | — (co-locate SEC-23) | Done | Any-platform path-rooting acceptance re-opens SEC-01 on Unix; Galaxy `SnapshotCachePath` unvalidated |
|
| SEC-33 | Low | P1 | M | — (co-locate SEC-23) | Done | Any-platform path-rooting acceptance re-opens SEC-01 on Unix; Galaxy `SnapshotCachePath` unvalidated |
|
||||||
| SEC-34 | Low | P2 | S | — | Done | Verification cache: expiry outlives TTL; `Invalidate` races in-flight repopulation |
|
| SEC-34 | Low | P2 | S | — | Done | Verification cache: expiry outlives TTL; `Invalidate` races in-flight repopulation |
|
||||||
| SEC-35 | Info | — | S | — | N/A (doc-only note discharged 2026-08-07) | Production hard-stops key on the exact `Production` environment name |
|
| SEC-35 | Info | — | S | — | N/A (doc-only note discharged 2026-08-07) | Production hard-stops key on the exact `Production` environment name |
|
||||||
| SEC-36 | Low | P1 | M | cross-repo (`scadaproj/infra/glauth`) | Not started | Committed dev LDAP service-account password: remove from repo and rotate |
|
| SEC-36 | Low | P1 | M | cross-repo (`scadaproj/infra/glauth`) | Done (repo-side; live rotation operator-pending per runbook) | Committed dev LDAP service-account password: remove from repo and rotate |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -218,3 +218,5 @@ dotnet test src/ZB.MOM.WW.MxGateway.Tests/ZB.MOM.WW.MxGateway.Tests.csproj --fil
|
|||||||
dotnet test src/ZB.MOM.WW.MxGateway.Tests/ZB.MOM.WW.MxGateway.Tests.csproj --filter "FullyQualifiedName~GatewayOptionsValidator"
|
dotnet test src/ZB.MOM.WW.MxGateway.Tests/ZB.MOM.WW.MxGateway.Tests.csproj --filter "FullyQualifiedName~GatewayOptionsValidator"
|
||||||
```
|
```
|
||||||
(asserts the blank-password validation still fires with the updated message). Manual: with user-secrets set on the dev box, `dotnet run --project src/ZB.MOM.WW.MxGateway.Server/...` and a dashboard `/login` as `multi-role` succeeds against the rotated GLAuth; the deployed-host login re-check from step 1 counts as the production verification. Live-LDAP integration tests (`MXGATEWAY_RUN_LIVE_LDAP_TESTS=1`) only where the GLAuth instance is reachable; otherwise document skipped per the testing matrix.
|
(asserts the blank-password validation still fires with the updated message). Manual: with user-secrets set on the dev box, `dotnet run --project src/ZB.MOM.WW.MxGateway.Server/...` and a dashboard `/login` as `multi-role` succeeds against the rotated GLAuth; the deployed-host login re-check from step 1 counts as the production verification. Live-LDAP integration tests (`MXGATEWAY_RUN_LIVE_LDAP_TESTS=1`) only where the GLAuth instance is reachable; otherwise document skipped per the testing matrix.
|
||||||
|
|
||||||
|
**Outcome (2026-08-07 — Done, repo-side; live rotation operator-pending).** Landed on `fix/sec-36-ldap-secret`. **The design's baseline had already shifted:** at HEAD `appsettings.json` no longer commits the literal — it ships `"ServiceAccountPassword": "${secret:ldap/mxgateway/bind}"`, a fail-closed encrypted-store reference (documented `GatewayConfiguration.md:252`, tested by `PreHostSecretExpansionTests`) introduced by the Secrets-store adoption after this remediation was written. **Deviation from Implementation step 2:** the `${secret:}` reference was **kept, not deleted** — deleting it regresses the shipped/documented/tested store channel and the committed-plaintext finding is already resolved for `appsettings.json`. The load-bearing residual — the literal value still present in `glauth.md`'s samples (`:33,65,103,136,245`), `docs/GatewayTesting.md`, and the historical `archreview/*` SEC-06 evidence — was scrubbed to `<service-account-password>` placeholders, each with a pointer to the source of truth `scadaproj/infra/glauth/` and a rotation-required note. Steps 3–6 implemented as designed: `<UserSecretsId>mxaccessgw-server</UserSecretsId>` added (step 3); the `ValidateLdap` blank-password message now names both channels — dev `dotnet user-secrets set "MxGateway:Ldap:ServiceAccountPassword" <value>` and deployed `MxGateway__Ldap__ServiceAccountPassword` — plus a note on the `${secret:}` store default (step 4), asserted by the extended `Validate_Fails_WhenLdapEnabledAndServiceAccountPasswordBlank`; docs updated same commit (step 5); `git grep -i` for the old value is empty across tracked files (step 6). The cross-repo **step 1 (rotate GLAuth on `10.100.0.35`, pre-stage the NSSM env var on `10.100.0.48` and on `wonder-app-vd03` only if `Ldap.Enabled`, verify dashboard login)** is the operator's to execute, captured in the new runbook `docs/runbooks/SEC-36-ldap-credential-rotation.md`. Verification (macOS): `dotnet build …Server` 0 warnings/0 errors; `dotnet test --filter ~GatewayOptionsValidator` green.
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ Operating constraints carried from prior work:
|
|||||||
| CLI-36 | Medium | P0 | S | — | Done | Go CLI `stream-events` silently destroys the ReplayGap signal |
|
| CLI-36 | Medium | P0 | S | — | Done | Go CLI `stream-events` silently destroys the ReplayGap signal |
|
||||||
| CLI-37 | Medium | P1 | M | CLI-38 | Done | Status-array validation must branch on `category` per the proto contract (4-vs-1 divergence) |
|
| CLI-37 | Medium | P1 | M | CLI-38 | Done | Status-array validation must branch on `category` per the proto contract (4-vs-1 divergence) |
|
||||||
| CLI-38 | Medium | P1 | S | — | Done | Align .NET/Go/Java on `hresult < 0` — lands prior CLI-08 and cures the design-doc drift |
|
| CLI-38 | Medium | P1 | S | — | Done | Align .NET/Go/Java on `hresult < 0` — lands prior CLI-08 and cures the design-doc drift |
|
||||||
| CLI-39 | Medium | P1 | S | CLI-35..38, CLI-45 | Not started | Bump client versions off the already-published 0.1.2 before the next publish; add registry-collision guard |
|
| CLI-39 | Medium | P1 | S | CLI-35..38, CLI-45 | Done | Bump client versions off the already-published 0.1.2 before the next publish; add registry-collision guard |
|
||||||
| CLI-40 | Low | — | M | — | Done | Port the exact-secret credential scrub to Rust/Java/.NET |
|
| CLI-40 | Low | — | M | — | Done | Port the exact-secret credential scrub to Rust/Java/.NET |
|
||||||
| CLI-41 | Low | — | M | — | Done | Uniform malformed-reply contract for AuthenticateUser/ArchestrAUserToId/AddBufferedItem |
|
| CLI-41 | Low | — | M | — | Done | Uniform malformed-reply contract for AuthenticateUser/ArchestrAUserToId/AddBufferedItem |
|
||||||
| CLI-42 | Low | P1 | S | — | Done | Document the vendored Rust proto layout (CLI-02's missing doc half) |
|
| CLI-42 | Low | P1 | S | — | Done | Document the vendored Rust proto layout (CLI-02's missing doc half) |
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ Prior-cycle open findings (TST-05..24 where still open) are tracked in the prior
|
|||||||
| TST-27 | Medium | P1 (doc batch) | S | — | Done | `ShowTagValues` config row still says "Reserved" after SEC-25 made the flag live |
|
| TST-27 | Medium | P1 (doc batch) | S | — | Done | `ShowTagValues` config row still says "Reserved" after SEC-25 made the flag live |
|
||||||
| TST-28 | Low | P2 | S | relates IPC-02 | Done | Gateway-side `max_frame_bytes` handshake field untested in the CI-run suite |
|
| TST-28 | Low | P2 | S | relates IPC-02 | Done | Gateway-side `max_frame_bytes` handshake field untested in the CI-run suite |
|
||||||
| TST-29 | Low | P2 | S | — | Done | Retire `oldtasks.md` after folding the Phase-5 governance record into DesignDecisions.md; delete root docs-review artifacts |
|
| TST-29 | Low | P2 | S | — | Done | Retire `oldtasks.md` after folding the Phase-5 governance record into DesignDecisions.md; delete root docs-review artifacts |
|
||||||
| TST-30 | Low | P2 | M | — | Not started | Single shared Gitea runner is a CI throughput/availability bottleneck (cross-repo contention, no run cancel/delete) |
|
| TST-30 | Low | P2 | M | — | Done (doc half; runner registration operator-pending per runbook) | Single shared Gitea runner is a CI throughput/availability bottleneck (cross-repo contention, no run cancel/delete) |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -167,6 +167,8 @@ Independent of the runner count, document the **no-cancel** reality (Gitea 1.26
|
|||||||
|
|
||||||
**Verification.** Push two branches back-to-back and confirm their runs execute concurrently (not serially) once a second runner exists; `GET /repos/dohertj2/mxaccessgw/actions/runners` (or the instance runner list) shows ≥2 runners online; `docs/GatewayTesting.md` describes the shared-runner/no-cancel reality and the bypass. Re-run the TST-25 acceptance push and confirm queue depth is materially lower under a concurrent `lmxopcua` run.
|
**Verification.** Push two branches back-to-back and confirm their runs execute concurrently (not serially) once a second runner exists; `GET /repos/dohertj2/mxaccessgw/actions/runners` (or the instance runner list) shows ≥2 runners online; `docs/GatewayTesting.md` describes the shared-runner/no-cancel reality and the bypass. Re-run the TST-25 acceptance push and confirm queue depth is materially lower under a concurrent `lmxopcua` run.
|
||||||
|
|
||||||
|
**Outcome (2026-08-07 — Done, doc half; runner registration operator-pending).** Landed on `fix/tst-30-runner-docs`. Implementation step 2 shipped: `docs/GatewayTesting.md`'s Continuous Integration section gained a "Runner capacity is shared and finite" subsection stating the `maxParallel=1` co-located runner is shared with `dohertj2/lmxopcua` at the instance level (not repo-scoped), the ~20–30 minute queue latency observed under cross-repo contention, and the Gitea 1.26 no-cancel/no-delete API reality; the existing "windev tier down" degraded-mode paragraph now also covers "runner contended" as a reason to use the bypass, generalized per this finding's design note. New operator runbook `docs/runbooks/TST-30-second-ci-runner.md` carries **step 1** (register a second `act_runner` on `10.100.0.35`, option (a) recommended, same `container.network: traefik` config; option (b) dedicated labelled runner as an escalation; option (c) windev-hosted runner rejected) with the verification checklist (concurrent back-to-back pushes, `GET /repos/dohertj2/mxaccessgw/actions/runners` ≥ 2) and a note that the no-cancel reality persists regardless of runner count. **Step 3 (optional workflow-level `concurrency` group)** is documented in the runbook as unverified — explicitly framed as "verify this Gitea deployment honors it before relying on it" — and left unimplemented in `ci.yml`, since it is a `ci.yml` change out of scope for this doc-only pass. **The actual runner registration (step 1) is infrastructure work outside this repo's tree and remains the operator's to execute**, tracked in the runbook. Verification performed: `grep -n 'maxParallel\|shared\|cancel' docs/GatewayTesting.md` shows the new prose; runbook file exists at the path above; no build required (doc-only change).
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Cross-domain dependencies
|
## Cross-domain dependencies
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
# Candidate Findings for the Next Review Cycle (surfaced during 2026-07-12 remediation)
|
||||||
|
|
||||||
|
These were discovered while remediating the 2026-07-12 backlog but were **out of scope** for it — each is either pre-existing, by-design residual, or a new observation. They are recorded here (not fixed) so the next review cycle can triage them. None blocks the 2026-07-12 cycle, which is complete.
|
||||||
|
|
||||||
|
| ID (proposed) | Area | Severity (est.) | Summary |
|
||||||
|
|---|---|---|---|
|
||||||
|
| NEXT-01 | Testing / macOS | Low | Fake-worker/e2e gateway tests fail on macOS under the default `TMPDIR` because the `CoreFxPipe_mxaccess-gateway-{pid}-{sessionId}` path exceeds the 104-char Unix-domain-socket `sun_path` limit under `/var/folders/…/T/`. Workaround today is `TMPDIR=/tmp`. Fix options: shorten the pipe name, or document the `TMPDIR=/tmp` requirement in `docs/GatewayTesting.md`. Surfaced independently by multiple remediation agents. |
|
||||||
|
| NEXT-02 | Clients (.NET, Java) | Low | The .NET and Java CLIs render the raw `ReplayGap` sentinel `MxEvent` on `stream-events` instead of a typed gap row — Java text mode prints `0 MX_EVENT_FAMILY_UNSPECIFIED`. Same defect class as CLI-36 (Go) / CLI-35 (Python), which were fixed this cycle; the .NET/Java halves were out of scope. The cross-language smoke matrix now records this divergence honestly. |
|
||||||
|
| NEXT-03 | Gateway alarms | Low | `GatewayAlarmMonitor.ApplyReconcile` feed-repair broadcasts (the new acked-delta from GWC-26 **and** the pre-existing Raise/Clear repair) are **at-least-once, not exactly-once**: a periodic reconcile can synthesize a transition whose matching live transition is still buffered in the alarm lease, so both broadcast as indistinguishable duplicates on the alarm feed (StreamAlarms + dashboard hub). Pre-existing (the Raise/Clear repair always had it); GWC-26 documented the at-least-once contract rather than closing the race. Closing it needs reconcile/live serialization or a monotonic dedup marker. |
|
||||||
|
| NEXT-04 | Worker frame writer | Low | WRK-22/WRK-25 cancellation path: a frame `Claimed` by a concurrent lock-holder just before its caller's cancellation races in is never awaited by that caller; if the write then faults, `TrySetException` lands on a `Task` nobody observes (unobserved-task-exception). By-design residual, non-crash (no `UnobservedTaskException` handler registered), pre-existing to single-frame WRK-22 and amplified per-batch by WRK-25. Hygiene fix: attach a fault-observing continuation to abandoned/tombstoned frame completions. |
|
||||||
|
| NEXT-05 | Worker frame writer | Info | A batch whose remaining frames are tombstoned by cancellation leaves dead `PendingFrame` entries in `_eventFrames`/`_controlFrames` until a future `DequeueNext` pops and skips them. Same pre-existing behavior as single-frame WRK-22, amplified per-batch; in practice heartbeats purge them promptly, so not a real leak. |
|
||||||
|
|
||||||
|
## Operator actions still pending (from this cycle's runbooks)
|
||||||
|
|
||||||
|
These are **live-infrastructure actions the operator must execute** — the repo-side work is complete and merged:
|
||||||
|
|
||||||
|
- **SEC-36** — rotate the dev LDAP service-account credential per `docs/runbooks/SEC-36-ldap-credential-rotation.md` (generate new secret in `scadaproj/infra/glauth`, pre-stage the NSSM env var on deployed hosts, rotate GLAuth on `10.100.0.35`, verify dashboard login). The committed literal is gone from the working tree but remains recoverable from git history until rotation completes — **rotation is the load-bearing half.**
|
||||||
|
- **TST-30** — register a second Gitea `act_runner` on `10.100.0.35` per `docs/runbooks/TST-30-second-ci-runner.md` to relieve the single-shared-runner bottleneck.
|
||||||
|
- **TST-25 follow-ups** — old **TST-05** (scheduled live-MXAccess smoke) is now covered by the `nightly-windev` job; old **TST-24** (client wire tests in CI) is unblocked by the working Windows tier.
|
||||||
@@ -49,7 +49,7 @@ Impact: logout (`Dashboard/DashboardEndpointRouteBuilderExtensions.cs:136-155`)
|
|||||||
Recommendation: keep the lifetime short (or shorten to ~5 minutes given the factory refreshes per reconnect, `docs/GatewayDashboardDesign.md:497-499`), and confirm no request-path logging captures query strings (Serilog request logging is not currently enabled; keep it that way or scrub `access_token`).
|
Recommendation: keep the lifetime short (or shorten to ~5 minutes given the factory refreshes per reconnect, `docs/GatewayDashboardDesign.md:497-499`), and confirm no request-path logging captures query strings (Serilog request logging is not currently enabled; keep it that way or scrub `access_token`).
|
||||||
|
|
||||||
**SEC-6 · Medium — LDAP is plaintext-by-default with a committed service-account password.**
|
**SEC-6 · Medium — LDAP is plaintext-by-default with a committed service-account password.**
|
||||||
Evidence: `src/ZB.MOM.WW.MxGateway.Server/Configuration/LdapOptions.cs:49-61` (defaults `Transport=None`, `AllowInsecure=true`, `ServiceAccountPassword = "serviceaccount123"`), `appsettings.json:21-33` (same values checked into the repo), `glauth.md:30,327` (dev LDAPS disabled; "binding sends passwords cleartext on the wire").
|
Evidence: `src/ZB.MOM.WW.MxGateway.Server/Configuration/LdapOptions.cs:49-61` (defaults `Transport=None`, `AllowInsecure=true`, `ServiceAccountPassword = "<service-account-password>"` — value redacted per SEC-36), `appsettings.json:21-33` (same values checked into the repo), `glauth.md:30,327` (dev LDAPS disabled; "binding sends passwords cleartext on the wire").
|
||||||
Impact: every dashboard login sends the operator's password in cleartext to `10.100.0.35:3893`, and the LDAP service-account credential is in source control. This is a documented dev posture (the shadow-options rationale at `LdapOptions.cs:20-28` is explicit that the shared library is secure-by-default), and the validator does enforce the `Transport=None ⇒ AllowInsecure` consistency rule (`GatewayOptionsValidator.cs:82-85`) — but nothing distinguishes dev from prod at runtime.
|
Impact: every dashboard login sends the operator's password in cleartext to `10.100.0.35:3893`, and the LDAP service-account credential is in source control. This is a documented dev posture (the shadow-options rationale at `LdapOptions.cs:20-28` is explicit that the shared library is secure-by-default), and the validator does enforce the `Transport=None ⇒ AllowInsecure` consistency rule (`GatewayOptionsValidator.cs:82-85`) — but nothing distinguishes dev from prod at runtime.
|
||||||
Recommendation: for production deployment docs, require `Transport=Ldaps`/`StartTls` + `AllowInsecure=false` and move `ServiceAccountPassword` to env-var/secret configuration; consider an `IsProduction` startup check mirroring SEC-4. LDAP injection risk is delegated to the shared `ZB.MOM.WW.Auth.Ldap` provider (bind-then-search per `Dashboard/DashboardAuthenticator.cs:41-47`); its escaping cannot be verified from this repo — flag for review in the donor repo.
|
Recommendation: for production deployment docs, require `Transport=Ldaps`/`StartTls` + `AllowInsecure=false` and move `ServiceAccountPassword` to env-var/secret configuration; consider an `IsProduction` startup check mirroring SEC-4. LDAP injection risk is delegated to the shared `ZB.MOM.WW.Auth.Ldap` provider (bind-then-search per `Dashboard/DashboardAuthenticator.cs:41-47`); its escaping cannot be verified from this repo — flag for review in the donor repo.
|
||||||
|
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ Full design + implementation for each row lives in the linked domain doc under i
|
|||||||
| CLI-21 | Low | P2 | S | — | Done | Go `ClientVersion = "0.1.0-dev"` stale vs tagged releases |
|
| CLI-21 | Low | P2 | S | — | Done | Go `ClientVersion = "0.1.0-dev"` stale vs tagged releases |
|
||||||
| CLI-22 | Low | — | S | — | Not started | Go `newCorrelationID` swallows `crypto/rand` error → empty id |
|
| CLI-22 | Low | — | S | — | Not started | Go `newCorrelationID` swallows `crypto/rand` error → empty id |
|
||||||
| CLI-23 | Low | — | S | — | Not started | Go nil-vs-empty bulk short-circuit asymmetry |
|
| CLI-23 | Low | — | S | — | Not started | Go nil-vs-empty bulk short-circuit asymmetry |
|
||||||
| CLI-24 | Low | — | S | — | Not started | Java `MxEventStream` single-consumer constraint undocumented |
|
| CLI-24 | Low | — | S | — | Done | Java `MxEventStream` single-consumer constraint undocumented (closed 2026-08-07 per 2026-07-12 review old-tracker action; documented at MxEventStream.java:25 "Single consumer") |
|
||||||
| CLI-25 | Low | — | S | — | Not started | Java `close()` does not await channel termination |
|
| CLI-25 | Low | — | S | — | Not started | Java `close()` does not await channel termination |
|
||||||
| CLI-26 | Low | P2 | S | — | Done | Python `version.py` (0.1.0) ≠ `pyproject.toml` (0.1.2) |
|
| CLI-26 | Low | P2 | S | — | Done | Python `version.py` (0.1.0) ≠ `pyproject.toml` (0.1.2) |
|
||||||
| CLI-27 | Low | — | S | — | Not started | Python `Session.close()` not concurrency-safe; synthesizes reply |
|
| CLI-27 | Low | — | S | — | Not started | Python `Session.close()` not concurrency-safe; synthesizes reply |
|
||||||
@@ -207,7 +207,7 @@ Full design + implementation for each row lives in the linked domain doc under i
|
|||||||
| CLI-31 | Low | — | M | — | Not started | Rust CLI is a single 2,699-line `main.rs` |
|
| CLI-31 | Low | — | M | — | Not started | Rust CLI is a single 2,699-line `main.rs` |
|
||||||
| CLI-32 | Low | — | S | — | Not started | Client-side bulk caps differ (.NET/Java unbounded) |
|
| CLI-32 | Low | — | S | — | Not started | Client-side bulk caps differ (.NET/Java unbounded) |
|
||||||
| CLI-33 | Low | — | S | CLI-01,13 | Not started | Per-language event backpressure semantics undocumented |
|
| CLI-33 | Low | — | S | CLI-01,13 | Not started | Per-language event backpressure semantics undocumented |
|
||||||
| CLI-34 | Low | — | S | — | Not started | Python `build/`/`.pytest_cache/` present on disk (untracked) |
|
| CLI-34 | Low | — | S | — | Done | Python `build/`/`.pytest_cache/` present on disk (untracked) (closed 2026-08-07 per 2026-07-12 review old-tracker action; both gitignored in clients/python/.gitignore) |
|
||||||
|
|
||||||
### Testing, docs & gaps — [60-testing-docs-gaps.md](60-testing-docs-gaps.md)
|
### Testing, docs & gaps — [60-testing-docs-gaps.md](60-testing-docs-gaps.md)
|
||||||
|
|
||||||
|
|||||||
@@ -132,7 +132,7 @@ This document turns every finding in the Security/Dashboard/Observability review
|
|||||||
|
|
||||||
## SEC-06 — LDAP plaintext-by-default with a committed service password `Medium` · `P1`
|
## SEC-06 — LDAP plaintext-by-default with a committed service password `Medium` · `P1`
|
||||||
|
|
||||||
**Finding.** *(review SEC-6)* `Configuration/LdapOptions.cs:49-61` defaults `Transport=None`, `AllowInsecure=true`, `ServiceAccountPassword="serviceaccount123"`; `appsettings.json:21-33` ships the same. `glauth.md:30,327` confirms dev LDAPS is disabled and binds send cleartext. The validator enforces the `Transport=None ⇒ AllowInsecure` consistency rule (`GatewayOptionsValidator.cs:82-85`) but nothing distinguishes dev from prod.
|
**Finding.** *(review SEC-6)* `Configuration/LdapOptions.cs:49-61` defaults `Transport=None`, `AllowInsecure=true`, `ServiceAccountPassword="<service-account-password>"` (value redacted per SEC-36); `appsettings.json:21-33` ships the same. `glauth.md:30,327` confirms dev LDAPS is disabled and binds send cleartext. The validator enforces the `Transport=None ⇒ AllowInsecure` consistency rule (`GatewayOptionsValidator.cs:82-85`) but nothing distinguishes dev from prod.
|
||||||
|
|
||||||
**Impact.** Every dashboard login sends the operator's password cleartext to `10.100.0.35:3893`, and a service-account credential is in source control.
|
**Impact.** Every dashboard login sends the operator's password cleartext to `10.100.0.35:3893`, and a service-account credential is in source control.
|
||||||
|
|
||||||
@@ -140,7 +140,7 @@ This document turns every finding in the Security/Dashboard/Observability review
|
|||||||
|
|
||||||
**Implementation.**
|
**Implementation.**
|
||||||
- `Configuration/GatewayOptionsValidator.cs`: in `ValidateLdap`, when Production and `Transport == None`, emit an error (co-locate with SEC-04's env plumbing).
|
- `Configuration/GatewayOptionsValidator.cs`: in `ValidateLdap`, when Production and `Transport == None`, emit an error (co-locate with SEC-04's env plumbing).
|
||||||
- Deployment: keep `serviceaccount123` only for local GLAuth dev; document env-var override (`MxGateway__Ldap__ServiceAccountPassword`) for the NSSM-wrapped hosts; rotate the dev credential's reuse.
|
- Deployment: keep the dev service-account password only for local GLAuth dev; document env-var override (`MxGateway__Ldap__ServiceAccountPassword`) for the NSSM-wrapped hosts; rotate the dev credential's reuse.
|
||||||
- Docs: `docs/GatewayConfiguration.md` Ldap section and a production hardening note referencing `glauth.md`.
|
- Docs: `docs/GatewayConfiguration.md` Ldap section and a production hardening note referencing `glauth.md`.
|
||||||
- Tests: `GatewayOptionsValidatorTests` — `Transport=None` + Production → invalid.
|
- Tests: `GatewayOptionsValidatorTests` — `Transport=None` + Production → invalid.
|
||||||
|
|
||||||
|
|||||||
@@ -487,7 +487,7 @@ dotnet nuget add source https://gitea.dohertylan.com/api/packages/dohertj2/nuget
|
|||||||
Then add the package to your project:
|
Then add the package to your project:
|
||||||
|
|
||||||
````bash
|
````bash
|
||||||
dotnet add package ZB.MOM.WW.MxGateway.Client --version 0.1.1
|
dotnet add package ZB.MOM.WW.MxGateway.Client --version 0.2.0
|
||||||
````
|
````
|
||||||
|
|
||||||
The `ZB.MOM.WW.MxGateway.Contracts` package is pulled in transitively.
|
The `ZB.MOM.WW.MxGateway.Contracts` package is pulled in transitively.
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<IsPackable>true</IsPackable>
|
<IsPackable>true</IsPackable>
|
||||||
<PackageId>ZB.MOM.WW.MxGateway.Client</PackageId>
|
<PackageId>ZB.MOM.WW.MxGateway.Client</PackageId>
|
||||||
<Version>0.1.2</Version>
|
<Version>0.2.0</Version>
|
||||||
<Description>.NET 10 gRPC client for the MxAccessGateway service. Provides typed wrappers, retry, and a lazy-browse walker over the Galaxy Repository hierarchy.</Description>
|
<Description>.NET 10 gRPC client for the MxAccessGateway service. Provides typed wrappers, retry, and a lazy-browse walker over the Galaxy Repository hierarchy.</Description>
|
||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
<!-- Only the shipped library generates XML docs (matching src/Contracts). The Cli and
|
<!-- Only the shipped library generates XML docs (matching src/Contracts). The Cli and
|
||||||
|
|||||||
@@ -471,7 +471,7 @@ go run ./cmd/mxgw-go smoke -endpoint $env:MXGATEWAY_ENDPOINT -plaintext -api-key
|
|||||||
The module is resolved directly from the git repo — no package registry:
|
The module is resolved directly from the git repo — no package registry:
|
||||||
|
|
||||||
````bash
|
````bash
|
||||||
go get gitea.dohertylan.com/dohertj2/mxaccessgw/clients/go@v0.1.1
|
go get gitea.dohertylan.com/dohertj2/mxaccessgw/clients/go@v0.2.0
|
||||||
````
|
````
|
||||||
|
|
||||||
Then import:
|
Then import:
|
||||||
@@ -494,11 +494,13 @@ Go modules in monorepo subdirectories use prefixed tags. To tag a release
|
|||||||
from this repo:
|
from this repo:
|
||||||
|
|
||||||
````bash
|
````bash
|
||||||
pwsh scripts/tag-go-module.ps1 -Version v0.1.1 -Push
|
pwsh scripts/tag-go-module.ps1 -Version v0.2.0 -Push
|
||||||
````
|
````
|
||||||
|
|
||||||
The script validates semver, refuses to tag with uncommitted tracked
|
The script validates semver, refuses to tag with uncommitted tracked
|
||||||
changes, creates an annotated tag `clients/go/v0.1.1`, and (with `-Push`)
|
changes, verifies `clients/go/mxgateway/version.go`'s `ClientVersion`
|
||||||
|
matches the requested tag version (failing the tag otherwise — CLI-21/CLI-39),
|
||||||
|
creates an annotated tag `clients/go/v0.2.0`, and (with `-Push`)
|
||||||
pushes it to origin.
|
pushes it to origin.
|
||||||
|
|
||||||
## Related Documentation
|
## Related Documentation
|
||||||
|
|||||||
@@ -1,6 +1,16 @@
|
|||||||
Set-StrictMode -Version Latest
|
Set-StrictMode -Version Latest
|
||||||
$ErrorActionPreference = 'Stop'
|
$ErrorActionPreference = 'Stop'
|
||||||
|
|
||||||
|
# Pinned generator baseline. The committed Go bindings stamp these plugin versions in their
|
||||||
|
# headers (protoc-gen-go v1.36.11 / protoc-gen-go-grpc v1.6.2). Plugin-version drift rewrites
|
||||||
|
# those header stamps, so a regeneration on an off-pin machine would churn the tree and make
|
||||||
|
# check-codegen Check 4 false-fail (or mask real drift under churn). Assert the exact versions
|
||||||
|
# so a regen is deterministic. protoc itself is warn-only (source_code_info is normalized out of
|
||||||
|
# the committed bindings), matching publish-client-proto-inputs.ps1.
|
||||||
|
$PinnedProtocGenGoVersion = 'protoc-gen-go v1.36.11'
|
||||||
|
$PinnedProtocGenGoGrpcVersion = 'protoc-gen-go-grpc 1.6.2'
|
||||||
|
$PinnedProtocVersion = 'libprotoc 34.1'
|
||||||
|
|
||||||
$repoRoot = Resolve-Path (Join-Path $PSScriptRoot '..\..')
|
$repoRoot = Resolve-Path (Join-Path $PSScriptRoot '..\..')
|
||||||
$protoRoot = Join-Path $repoRoot 'src\ZB.MOM.WW.MxGateway.Contracts\Protos'
|
$protoRoot = Join-Path $repoRoot 'src\ZB.MOM.WW.MxGateway.Contracts\Protos'
|
||||||
$outputRoot = Join-Path $PSScriptRoot 'internal\generated'
|
$outputRoot = Join-Path $PSScriptRoot 'internal\generated'
|
||||||
@@ -36,8 +46,25 @@ $wingetProtoc = if ($env:LOCALAPPDATA) {
|
|||||||
$goBin = if ($env:USERPROFILE) { Join-Path $env:USERPROFILE 'go\bin' } elseif ($env:HOME) { Join-Path $env:HOME 'go/bin' } else { $null }
|
$goBin = if ($env:USERPROFILE) { Join-Path $env:USERPROFILE 'go\bin' } elseif ($env:HOME) { Join-Path $env:HOME 'go/bin' } else { $null }
|
||||||
|
|
||||||
$protoc = Resolve-Tool -Names @('protoc', 'protoc.exe') -FallbackPaths @($wingetProtoc)
|
$protoc = Resolve-Tool -Names @('protoc', 'protoc.exe') -FallbackPaths @($wingetProtoc)
|
||||||
$protocGenGo = Resolve-Tool -Names @('protoc-gen-go', 'protoc-gen-go.exe') -FallbackPaths @((if ($goBin) { Join-Path $goBin 'protoc-gen-go.exe' }), (if ($goBin) { Join-Path $goBin 'protoc-gen-go' }))
|
$protocGenGo = Resolve-Tool -Names @('protoc-gen-go', 'protoc-gen-go.exe') -FallbackPaths @(($(if ($goBin) { Join-Path $goBin 'protoc-gen-go.exe' })), ($(if ($goBin) { Join-Path $goBin 'protoc-gen-go' })))
|
||||||
$protocGenGoGrpc = Resolve-Tool -Names @('protoc-gen-go-grpc', 'protoc-gen-go-grpc.exe') -FallbackPaths @((if ($goBin) { Join-Path $goBin 'protoc-gen-go-grpc.exe' }), (if ($goBin) { Join-Path $goBin 'protoc-gen-go-grpc' }))
|
$protocGenGoGrpc = Resolve-Tool -Names @('protoc-gen-go-grpc', 'protoc-gen-go-grpc.exe') -FallbackPaths @(($(if ($goBin) { Join-Path $goBin 'protoc-gen-go-grpc.exe' })), ($(if ($goBin) { Join-Path $goBin 'protoc-gen-go-grpc' })))
|
||||||
|
|
||||||
|
# Assert the pinned plugin versions before generating so Check 4 cannot false-fail (or mask drift)
|
||||||
|
# on an off-pin machine. protoc is warn-only.
|
||||||
|
$protocGenGoVersion = (& $protocGenGo --version 2>&1 | Out-String).Trim()
|
||||||
|
if ($protocGenGoVersion -ne $PinnedProtocGenGoVersion) {
|
||||||
|
throw "protoc-gen-go reports '$protocGenGoVersion', but regeneration is pinned to '$PinnedProtocGenGoVersion'. " +
|
||||||
|
"Install the pin: go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.36.11"
|
||||||
|
}
|
||||||
|
$protocGenGoGrpcVersion = (& $protocGenGoGrpc --version 2>&1 | Out-String).Trim()
|
||||||
|
if ($protocGenGoGrpcVersion -ne $PinnedProtocGenGoGrpcVersion) {
|
||||||
|
throw "protoc-gen-go-grpc reports '$protocGenGoGrpcVersion', but regeneration is pinned to '$PinnedProtocGenGoGrpcVersion'. " +
|
||||||
|
"Install the pin: go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.6.2"
|
||||||
|
}
|
||||||
|
$protocVersion = (& $protoc --version 2>&1 | Out-String).Trim()
|
||||||
|
if ($protocVersion -ne $PinnedProtocVersion) {
|
||||||
|
Write-Warning "protoc reports '$protocVersion', pin is '$PinnedProtocVersion'. Descriptor comments are normalized out of the committed Go bindings, so patch drift is tolerated; keep CI on the pin."
|
||||||
|
}
|
||||||
|
|
||||||
# protoc discovers the plugins on PATH; prepend the directories the resolved plugins live in.
|
# protoc discovers the plugins on PATH; prepend the directories the resolved plugins live in.
|
||||||
$env:Path = (Split-Path $protocGenGo -Parent) + [System.IO.Path]::PathSeparator + (Split-Path $protocGenGoGrpc -Parent) + [System.IO.Path]::PathSeparator + $env:Path
|
$env:Path = (Split-Path $protocGenGo -Parent) + [System.IO.Path]::PathSeparator + (Split-Path $protocGenGoGrpc -Parent) + [System.IO.Path]::PathSeparator + $env:Path
|
||||||
|
|||||||
@@ -5974,8 +5974,12 @@ func (x *WorkerInfoReply) GetMxaccessClsid() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type DrainEventsReply struct {
|
type DrainEventsReply struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
Events []*MxEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
|
// The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
// worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
// `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
// empty reply.
|
||||||
|
Events []*MxEvent `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
@@ -6411,6 +6415,11 @@ type ReplayGap struct {
|
|||||||
// after_worker_sequence = oldest_available_sequence - 1 in the next
|
// after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
// StreamEventsRequest, which will cause the server to replay starting at
|
// StreamEventsRequest, which will cause the server to replay starting at
|
||||||
// oldest_available_sequence (the first retained event).
|
// oldest_available_sequence (the first retained event).
|
||||||
|
// When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
// that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
// formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
// follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
// passes. The interval evicted is unchanged.
|
||||||
OldestAvailableSequence uint64 `protobuf:"varint,2,opt,name=oldest_available_sequence,json=oldestAvailableSequence,proto3" json:"oldest_available_sequence,omitempty"`
|
OldestAvailableSequence uint64 `protobuf:"varint,2,opt,name=oldest_available_sequence,json=oldestAvailableSequence,proto3" json:"oldest_available_sequence,omitempty"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
|
|||||||
@@ -431,8 +431,17 @@ type GatewayHello struct {
|
|||||||
SupportedProtocolVersion uint32 `protobuf:"varint,1,opt,name=supported_protocol_version,json=supportedProtocolVersion,proto3" json:"supported_protocol_version,omitempty"`
|
SupportedProtocolVersion uint32 `protobuf:"varint,1,opt,name=supported_protocol_version,json=supportedProtocolVersion,proto3" json:"supported_protocol_version,omitempty"`
|
||||||
Nonce string `protobuf:"bytes,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
|
Nonce string `protobuf:"bytes,2,opt,name=nonce,proto3" json:"nonce,omitempty"`
|
||||||
GatewayVersion string `protobuf:"bytes,3,opt,name=gateway_version,json=gatewayVersion,proto3" json:"gateway_version,omitempty"`
|
GatewayVersion string `protobuf:"bytes,3,opt,name=gateway_version,json=gatewayVersion,proto3" json:"gateway_version,omitempty"`
|
||||||
unknownFields protoimpl.UnknownFields
|
// Maximum worker-frame payload size, in bytes, negotiated by the gateway from its
|
||||||
sizeCache protoimpl.SizeCache
|
// configured pipe limit. The worker adopts this as its frame-protocol MaxMessageBytes
|
||||||
|
// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
|
// "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
|
// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
// Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
// including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
// to fit rather than emit an oversized frame.
|
||||||
|
MaxFrameBytes uint32 `protobuf:"varint,4,opt,name=max_frame_bytes,json=maxFrameBytes,proto3" json:"max_frame_bytes,omitempty"`
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *GatewayHello) Reset() {
|
func (x *GatewayHello) Reset() {
|
||||||
@@ -486,6 +495,13 @@ func (x *GatewayHello) GetGatewayVersion() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *GatewayHello) GetMaxFrameBytes() uint32 {
|
||||||
|
if x != nil {
|
||||||
|
return x.MaxFrameBytes
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
type WorkerHello struct {
|
type WorkerHello struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
ProtocolVersion uint32 `protobuf:"varint,1,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
|
ProtocolVersion uint32 `protobuf:"varint,1,opt,name=protocol_version,json=protocolVersion,proto3" json:"protocol_version,omitempty"`
|
||||||
@@ -1109,11 +1125,12 @@ const file_mxaccess_worker_proto_rawDesc = "" +
|
|||||||
"\fworker_event\x18\x12 \x01(\v2\x1f.mxaccess_worker.v1.WorkerEventH\x00R\vworkerEvent\x12P\n" +
|
"\fworker_event\x18\x12 \x01(\v2\x1f.mxaccess_worker.v1.WorkerEventH\x00R\vworkerEvent\x12P\n" +
|
||||||
"\x10worker_heartbeat\x18\x13 \x01(\v2#.mxaccess_worker.v1.WorkerHeartbeatH\x00R\x0fworkerHeartbeat\x12D\n" +
|
"\x10worker_heartbeat\x18\x13 \x01(\v2#.mxaccess_worker.v1.WorkerHeartbeatH\x00R\x0fworkerHeartbeat\x12D\n" +
|
||||||
"\fworker_fault\x18\x14 \x01(\v2\x1f.mxaccess_worker.v1.WorkerFaultH\x00R\vworkerFaultB\x06\n" +
|
"\fworker_fault\x18\x14 \x01(\v2\x1f.mxaccess_worker.v1.WorkerFaultH\x00R\vworkerFaultB\x06\n" +
|
||||||
"\x04body\"\x8b\x01\n" +
|
"\x04body\"\xb3\x01\n" +
|
||||||
"\fGatewayHello\x12<\n" +
|
"\fGatewayHello\x12<\n" +
|
||||||
"\x1asupported_protocol_version\x18\x01 \x01(\rR\x18supportedProtocolVersion\x12\x14\n" +
|
"\x1asupported_protocol_version\x18\x01 \x01(\rR\x18supportedProtocolVersion\x12\x14\n" +
|
||||||
"\x05nonce\x18\x02 \x01(\tR\x05nonce\x12'\n" +
|
"\x05nonce\x18\x02 \x01(\tR\x05nonce\x12'\n" +
|
||||||
"\x0fgateway_version\x18\x03 \x01(\tR\x0egatewayVersion\"\xa1\x01\n" +
|
"\x0fgateway_version\x18\x03 \x01(\tR\x0egatewayVersion\x12&\n" +
|
||||||
|
"\x0fmax_frame_bytes\x18\x04 \x01(\rR\rmaxFrameBytes\"\xa1\x01\n" +
|
||||||
"\vWorkerHello\x12)\n" +
|
"\vWorkerHello\x12)\n" +
|
||||||
"\x10protocol_version\x18\x01 \x01(\rR\x0fprotocolVersion\x12\x14\n" +
|
"\x10protocol_version\x18\x01 \x01(\rR\x0fprotocolVersion\x12\x14\n" +
|
||||||
"\x05nonce\x18\x02 \x01(\tR\x05nonce\x12*\n" +
|
"\x05nonce\x18\x02 \x01(\tR\x05nonce\x12*\n" +
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ package mxgateway
|
|||||||
const (
|
const (
|
||||||
// ClientVersion is the released semantic version of this Go client module.
|
// ClientVersion is the released semantic version of this Go client module.
|
||||||
// Keep it in sync with the module tag applied by scripts/tag-go-module.ps1.
|
// Keep it in sync with the module tag applied by scripts/tag-go-module.ps1.
|
||||||
ClientVersion = "0.1.2"
|
ClientVersion = "0.2.0"
|
||||||
|
|
||||||
// GatewayProtocolVersion matches GatewayContractInfo.GatewayProtocolVersion
|
// GatewayProtocolVersion matches GatewayContractInfo.GatewayProtocolVersion
|
||||||
// in the shared .NET contracts.
|
// in the shared .NET contracts.
|
||||||
|
|||||||
@@ -465,7 +465,7 @@ repositories {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.zb.mom.ww.mxgateway:zb-mom-ww-mxgateway-client:0.1.2'
|
implementation 'com.zb.mom.ww.mxgateway:zb-mom-ww-mxgateway-client:0.2.1'
|
||||||
}
|
}
|
||||||
````
|
````
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,14 @@ ext {
|
|||||||
|
|
||||||
subprojects {
|
subprojects {
|
||||||
group = 'com.zb.mom.ww.mxgateway'
|
group = 'com.zb.mom.ww.mxgateway'
|
||||||
version = '0.2.0'
|
// 0.2.0 was already published to the Gitea Maven feed on 2026-06-26,
|
||||||
|
// before the CLI-37/38/40/41 conformance fixes changed the client's
|
||||||
|
// observable behavior (status.category-based validation, hresult < 0,
|
||||||
|
// exact-secret redaction, typed malformed-reply errors). Bump to 0.2.1
|
||||||
|
// so the published coordinate matches the conformant behavior the other
|
||||||
|
// four clients ship at 0.2.0 for the first time. See CLI-39 and the
|
||||||
|
// "Versioning" section of docs/ClientPackaging.md.
|
||||||
|
version = '0.2.1'
|
||||||
|
|
||||||
pluginManager.withPlugin('java') {
|
pluginManager.withPlugin('java') {
|
||||||
java {
|
java {
|
||||||
|
|||||||
@@ -69110,24 +69110,59 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
com.google.protobuf.MessageOrBuilder {
|
com.google.protobuf.MessageOrBuilder {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent>
|
java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent>
|
||||||
getEventsList();
|
getEventsList();
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
mxaccess_gateway.v1.MxaccessGateway.MxEvent getEvents(int index);
|
mxaccess_gateway.v1.MxaccessGateway.MxEvent getEvents(int index);
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
int getEventsCount();
|
int getEventsCount();
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
java.util.List<? extends mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder>
|
java.util.List<? extends mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder>
|
||||||
getEventsOrBuilderList();
|
getEventsOrBuilderList();
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder getEventsOrBuilder(
|
mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder getEventsOrBuilder(
|
||||||
@@ -69175,6 +69210,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
private java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent> events_;
|
private java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent> events_;
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
@java.lang.Override
|
@java.lang.Override
|
||||||
@@ -69182,6 +69224,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return events_;
|
return events_;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
@java.lang.Override
|
@java.lang.Override
|
||||||
@@ -69190,6 +69239,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return events_;
|
return events_;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
@java.lang.Override
|
@java.lang.Override
|
||||||
@@ -69197,6 +69253,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return events_.size();
|
return events_.size();
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
@java.lang.Override
|
@java.lang.Override
|
||||||
@@ -69204,6 +69267,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return events_.get(index);
|
return events_.get(index);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
@java.lang.Override
|
@java.lang.Override
|
||||||
@@ -69567,6 +69637,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
mxaccess_gateway.v1.MxaccessGateway.MxEvent, mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder, mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder> eventsBuilder_;
|
mxaccess_gateway.v1.MxaccessGateway.MxEvent, mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder, mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder> eventsBuilder_;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent> getEventsList() {
|
public java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent> getEventsList() {
|
||||||
@@ -69577,6 +69654,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public int getEventsCount() {
|
public int getEventsCount() {
|
||||||
@@ -69587,6 +69671,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public mxaccess_gateway.v1.MxaccessGateway.MxEvent getEvents(int index) {
|
public mxaccess_gateway.v1.MxaccessGateway.MxEvent getEvents(int index) {
|
||||||
@@ -69597,6 +69688,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder setEvents(
|
public Builder setEvents(
|
||||||
@@ -69614,6 +69712,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder setEvents(
|
public Builder setEvents(
|
||||||
@@ -69628,6 +69733,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder addEvents(mxaccess_gateway.v1.MxaccessGateway.MxEvent value) {
|
public Builder addEvents(mxaccess_gateway.v1.MxaccessGateway.MxEvent value) {
|
||||||
@@ -69644,6 +69756,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder addEvents(
|
public Builder addEvents(
|
||||||
@@ -69661,6 +69780,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder addEvents(
|
public Builder addEvents(
|
||||||
@@ -69675,6 +69801,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder addEvents(
|
public Builder addEvents(
|
||||||
@@ -69689,6 +69822,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder addAllEvents(
|
public Builder addAllEvents(
|
||||||
@@ -69704,6 +69844,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder clearEvents() {
|
public Builder clearEvents() {
|
||||||
@@ -69717,6 +69864,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public Builder removeEvents(int index) {
|
public Builder removeEvents(int index) {
|
||||||
@@ -69730,6 +69884,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder getEventsBuilder(
|
public mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder getEventsBuilder(
|
||||||
@@ -69737,6 +69898,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
return internalGetEventsFieldBuilder().getBuilder(index);
|
return internalGetEventsFieldBuilder().getBuilder(index);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder getEventsOrBuilder(
|
public mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder getEventsOrBuilder(
|
||||||
@@ -69747,6 +69915,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public java.util.List<? extends mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder>
|
public java.util.List<? extends mxaccess_gateway.v1.MxaccessGateway.MxEventOrBuilder>
|
||||||
@@ -69758,6 +69933,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder addEventsBuilder() {
|
public mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder addEventsBuilder() {
|
||||||
@@ -69765,6 +69947,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
mxaccess_gateway.v1.MxaccessGateway.MxEvent.getDefaultInstance());
|
mxaccess_gateway.v1.MxaccessGateway.MxEvent.getDefaultInstance());
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder addEventsBuilder(
|
public mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder addEventsBuilder(
|
||||||
@@ -69773,6 +69962,13 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
index, mxaccess_gateway.v1.MxaccessGateway.MxEvent.getDefaultInstance());
|
index, mxaccess_gateway.v1.MxaccessGateway.MxEvent.getDefaultInstance());
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
* <pre>
|
||||||
|
* The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
* worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
* `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
* empty reply.
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
* <code>repeated .mxaccess_gateway.v1.MxEvent events = 1;</code>
|
||||||
*/
|
*/
|
||||||
public java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder>
|
public java.util.List<mxaccess_gateway.v1.MxaccessGateway.MxEvent.Builder>
|
||||||
@@ -75305,6 +75501,11 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
* StreamEventsRequest, which will cause the server to replay starting at
|
* StreamEventsRequest, which will cause the server to replay starting at
|
||||||
* oldest_available_sequence (the first retained event).
|
* oldest_available_sequence (the first retained event).
|
||||||
|
* When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
* that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
* formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
* follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
* passes. The interval evicted is unchanged.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint64 oldest_available_sequence = 2;</code>
|
* <code>uint64 oldest_available_sequence = 2;</code>
|
||||||
@@ -75386,6 +75587,11 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
* StreamEventsRequest, which will cause the server to replay starting at
|
* StreamEventsRequest, which will cause the server to replay starting at
|
||||||
* oldest_available_sequence (the first retained event).
|
* oldest_available_sequence (the first retained event).
|
||||||
|
* When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
* that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
* formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
* follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
* passes. The interval evicted is unchanged.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint64 oldest_available_sequence = 2;</code>
|
* <code>uint64 oldest_available_sequence = 2;</code>
|
||||||
@@ -75781,6 +75987,11 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
* StreamEventsRequest, which will cause the server to replay starting at
|
* StreamEventsRequest, which will cause the server to replay starting at
|
||||||
* oldest_available_sequence (the first retained event).
|
* oldest_available_sequence (the first retained event).
|
||||||
|
* When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
* that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
* formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
* follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
* passes. The interval evicted is unchanged.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint64 oldest_available_sequence = 2;</code>
|
* <code>uint64 oldest_available_sequence = 2;</code>
|
||||||
@@ -75800,6 +76011,11 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
* StreamEventsRequest, which will cause the server to replay starting at
|
* StreamEventsRequest, which will cause the server to replay starting at
|
||||||
* oldest_available_sequence (the first retained event).
|
* oldest_available_sequence (the first retained event).
|
||||||
|
* When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
* that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
* formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
* follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
* passes. The interval evicted is unchanged.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint64 oldest_available_sequence = 2;</code>
|
* <code>uint64 oldest_available_sequence = 2;</code>
|
||||||
@@ -75823,6 +76039,11 @@ public final class MxaccessGateway extends com.google.protobuf.GeneratedFile {
|
|||||||
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
* after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
* StreamEventsRequest, which will cause the server to replay starting at
|
* StreamEventsRequest, which will cause the server to replay starting at
|
||||||
* oldest_available_sequence (the first retained event).
|
* oldest_available_sequence (the first retained event).
|
||||||
|
* When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
* that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
* formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
* follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
* passes. The interval evicted is unchanged.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint64 oldest_available_sequence = 2;</code>
|
* <code>uint64 oldest_available_sequence = 2;</code>
|
||||||
|
|||||||
@@ -3797,6 +3797,9 @@ public final class MxaccessWorker extends com.google.protobuf.GeneratedFile {
|
|||||||
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
* Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
* including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
* to fit rather than emit an oversized frame.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint32 max_frame_bytes = 4;</code>
|
* <code>uint32 max_frame_bytes = 4;</code>
|
||||||
@@ -3941,6 +3944,9 @@ public final class MxaccessWorker extends com.google.protobuf.GeneratedFile {
|
|||||||
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
* Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
* including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
* to fit rather than emit an oversized frame.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint32 max_frame_bytes = 4;</code>
|
* <code>uint32 max_frame_bytes = 4;</code>
|
||||||
@@ -4499,6 +4505,9 @@ public final class MxaccessWorker extends com.google.protobuf.GeneratedFile {
|
|||||||
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
* Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
* including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
* to fit rather than emit an oversized frame.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint32 max_frame_bytes = 4;</code>
|
* <code>uint32 max_frame_bytes = 4;</code>
|
||||||
@@ -4515,6 +4524,9 @@ public final class MxaccessWorker extends com.google.protobuf.GeneratedFile {
|
|||||||
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
* Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
* including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
* to fit rather than emit an oversized frame.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint32 max_frame_bytes = 4;</code>
|
* <code>uint32 max_frame_bytes = 4;</code>
|
||||||
@@ -4535,6 +4547,9 @@ public final class MxaccessWorker extends com.google.protobuf.GeneratedFile {
|
|||||||
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
* instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
* "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
* envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
* Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
* including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
* to fit rather than emit an oversized frame.
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* <code>uint32 max_frame_bytes = 4;</code>
|
* <code>uint32 max_frame_bytes = 4;</code>
|
||||||
|
|||||||
+2
-2
@@ -59,7 +59,7 @@ final class MxGatewayCliTests {
|
|||||||
|
|
||||||
assertEquals(0, run.exitCode());
|
assertEquals(0, run.exitCode());
|
||||||
assertEquals("", run.errors());
|
assertEquals("", run.errors());
|
||||||
assertTrue(run.output().contains("mxgateway-java 0.2.0"));
|
assertTrue(run.output().contains("mxgateway-java 0.2.1"));
|
||||||
assertTrue(run.output().contains("gatewayProtocolVersion=3"));
|
assertTrue(run.output().contains("gatewayProtocolVersion=3"));
|
||||||
assertTrue(run.output().contains("workerProtocolVersion=1"));
|
assertTrue(run.output().contains("workerProtocolVersion=1"));
|
||||||
}
|
}
|
||||||
@@ -89,7 +89,7 @@ final class MxGatewayCliTests {
|
|||||||
CliRun run = execute(new FakeClientFactory(), "version", "--json");
|
CliRun run = execute(new FakeClientFactory(), "version", "--json");
|
||||||
|
|
||||||
assertEquals(0, run.exitCode());
|
assertEquals(0, run.exitCode());
|
||||||
assertTrue(run.output().contains("\"clientVersion\":\"0.2.0\""));
|
assertTrue(run.output().contains("\"clientVersion\":\"0.2.1\""));
|
||||||
assertTrue(run.output().contains("\"gatewayProtocolVersion\":3"));
|
assertTrue(run.output().contains("\"gatewayProtocolVersion\":3"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -63,10 +63,11 @@ protobuf {
|
|||||||
// or a plugin/protobuf version bump, silently drifts the committed output. checkGeneratedClean
|
// or a plugin/protobuf version bump, silently drifts the committed output. checkGeneratedClean
|
||||||
// fails when the regenerated tree differs from what is committed.
|
// fails when the regenerated tree differs from what is committed.
|
||||||
//
|
//
|
||||||
// Caveat (repo memory project_java_generated_churn): the protobuf gradle plugin also rewrites
|
// The grpc/protobuf toolchain is pinned (build.gradle: grpcVersion / protobufVersion), so a
|
||||||
// MxaccessGateway.java with a spurious protobuf-runtime-version delta on every build even when no
|
// regeneration is byte-identical to the committed single-file aggregates modulo real .proto
|
||||||
// .proto changed. CI reverts that one file (git checkout) before invoking this task; locally, do the
|
// changes — no spurious protobuf-runtime-version churn (IPC-24 verified this and deleted the old
|
||||||
// same when you did not touch a .proto. See docs/GatewayTesting.md "Continuous Integration".
|
// unconditional CI churn-revert step, which masked message-level drift). Regenerate and commit
|
||||||
|
// after any .proto change. See docs/GatewayTesting.md "Continuous Integration".
|
||||||
tasks.register('checkGeneratedClean') {
|
tasks.register('checkGeneratedClean') {
|
||||||
group = 'verification'
|
group = 'verification'
|
||||||
description = 'Fails if the committed generated Java tree differs from a fresh regeneration.'
|
description = 'Fails if the committed generated Java tree differs from a fresh regeneration.'
|
||||||
@@ -83,9 +84,9 @@ tasks.register('checkGeneratedClean') {
|
|||||||
def dirty = stdout.toString().trim()
|
def dirty = stdout.toString().trim()
|
||||||
if (!dirty.isEmpty()) {
|
if (!dirty.isEmpty()) {
|
||||||
throw new GradleException(
|
throw new GradleException(
|
||||||
"Generated Java is stale or churned:\n${dirty}\n" +
|
"Generated Java is stale:\n${dirty}\n" +
|
||||||
"Regenerate and commit after a .proto change, or 'git checkout' the spurious " +
|
"Regenerate and commit the Java client after a .proto change " +
|
||||||
"MxaccessGateway.java protobuf-version churn when no .proto changed.")
|
"(gradle :zb-mom-ww-mxgateway-client:generateProto).")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -9,7 +9,7 @@ package com.zb.mom.ww.mxgateway.client;
|
|||||||
public final class MxGatewayClientVersion {
|
public final class MxGatewayClientVersion {
|
||||||
private static final int GATEWAY_PROTOCOL_VERSION = 3;
|
private static final int GATEWAY_PROTOCOL_VERSION = 3;
|
||||||
private static final int WORKER_PROTOCOL_VERSION = 1;
|
private static final int WORKER_PROTOCOL_VERSION = 1;
|
||||||
private static final String CLIENT_VERSION = "0.2.0";
|
private static final String CLIENT_VERSION = "0.2.1";
|
||||||
|
|
||||||
private MxGatewayClientVersion() {
|
private MxGatewayClientVersion() {
|
||||||
}
|
}
|
||||||
|
|||||||
Binary file not shown.
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "zb-mom-ww-mxaccess-gateway-client"
|
name = "zb-mom-ww-mxaccess-gateway-client"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
description = "Async Python client for MXAccess Gateway."
|
description = "Async Python client for MXAccess Gateway."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.12"
|
requires-python = ">=3.12"
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
|
|||||||
import mxaccess_gateway_pb2 as mxaccess__gateway__pb2
|
import mxaccess_gateway_pb2 as mxaccess__gateway__pb2
|
||||||
|
|
||||||
|
|
||||||
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15mxaccess_worker.proto\x12\x12mxaccess_worker.v1\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x16mxaccess_gateway.proto\"\x95\x06\n\x0eWorkerEnvelope\x12\x18\n\x10protocol_version\x18\x01 \x01(\r\x12\x12\n\nsession_id\x18\x02 \x01(\t\x12\x10\n\x08sequence\x18\x03 \x01(\x04\x12\x16\n\x0e\x63orrelation_id\x18\x04 \x01(\t\x12\x39\n\rgateway_hello\x18\n \x01(\x0b\x32 .mxaccess_worker.v1.GatewayHelloH\x00\x12\x37\n\x0cworker_hello\x18\x0b \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerHelloH\x00\x12\x37\n\x0cworker_ready\x18\x0c \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerReadyH\x00\x12;\n\x0eworker_command\x18\r \x01(\x0b\x32!.mxaccess_worker.v1.WorkerCommandH\x00\x12\x46\n\x14worker_command_reply\x18\x0e \x01(\x0b\x32&.mxaccess_worker.v1.WorkerCommandReplyH\x00\x12\x39\n\rworker_cancel\x18\x0f \x01(\x0b\x32 .mxaccess_worker.v1.WorkerCancelH\x00\x12=\n\x0fworker_shutdown\x18\x10 \x01(\x0b\x32\".mxaccess_worker.v1.WorkerShutdownH\x00\x12\x44\n\x13worker_shutdown_ack\x18\x11 \x01(\x0b\x32%.mxaccess_worker.v1.WorkerShutdownAckH\x00\x12\x37\n\x0cworker_event\x18\x12 \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerEventH\x00\x12?\n\x10worker_heartbeat\x18\x13 \x01(\x0b\x32#.mxaccess_worker.v1.WorkerHeartbeatH\x00\x12\x37\n\x0cworker_fault\x18\x14 \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerFaultH\x00\x42\x06\n\x04\x62ody\"Z\n\x0cGatewayHello\x12\"\n\x1asupported_protocol_version\x18\x01 \x01(\r\x12\r\n\x05nonce\x18\x02 \x01(\t\x12\x17\n\x0fgateway_version\x18\x03 \x01(\t\"i\n\x0bWorkerHello\x12\x18\n\x10protocol_version\x18\x01 \x01(\r\x12\r\n\x05nonce\x18\x02 \x01(\t\x12\x19\n\x11worker_process_id\x18\x03 \x01(\x05\x12\x16\n\x0eworker_version\x18\x04 \x01(\t\"\x8e\x01\n\x0bWorkerReady\x12\x19\n\x11worker_process_id\x18\x01 \x01(\x05\x12\x17\n\x0fmxaccess_progid\x18\x02 \x01(\t\x12\x16\n\x0emxaccess_clsid\x18\x03 \x01(\t\x12\x33\n\x0fready_timestamp\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"w\n\rWorkerCommand\x12/\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x1e.mxaccess_gateway.v1.MxCommand\x12\x35\n\x11\x65nqueue_timestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x81\x01\n\x12WorkerCommandReply\x12\x32\n\x05reply\x18\x01 \x01(\x0b\x32#.mxaccess_gateway.v1.MxCommandReply\x12\x37\n\x13\x63ompleted_timestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x1e\n\x0cWorkerCancel\x12\x0e\n\x06reason\x18\x01 \x01(\t\"Q\n\x0eWorkerShutdown\x12/\n\x0cgrace_period\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x0e\n\x06reason\x18\x02 \x01(\t\"H\n\x11WorkerShutdownAck\x12\x33\n\x06status\x18\x01 \x01(\x0b\x32#.mxaccess_gateway.v1.ProtocolStatus\":\n\x0bWorkerEvent\x12+\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x1c.mxaccess_gateway.v1.MxEvent\"\xa5\x02\n\x0fWorkerHeartbeat\x12\x19\n\x11worker_process_id\x18\x01 \x01(\x05\x12.\n\x05state\x18\x02 \x01(\x0e\x32\x1f.mxaccess_worker.v1.WorkerState\x12?\n\x1blast_sta_activity_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1d\n\x15pending_command_count\x18\x04 \x01(\r\x12\"\n\x1aoutbound_event_queue_depth\x18\x05 \x01(\r\x12\x1b\n\x13last_event_sequence\x18\x06 \x01(\x04\x12&\n\x1e\x63urrent_command_correlation_id\x18\x07 \x01(\t\"\xf4\x01\n\x0bWorkerFault\x12\x39\n\x08\x63\x61tegory\x18\x01 \x01(\x0e\x32\'.mxaccess_worker.v1.WorkerFaultCategory\x12\x16\n\x0e\x63ommand_method\x18\x02 \x01(\t\x12\x14\n\x07hresult\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x16\n\x0e\x65xception_type\x18\x04 \x01(\t\x12\x1a\n\x12\x64iagnostic_message\x18\x05 \x01(\t\x12<\n\x0fprotocol_status\x18\x06 \x01(\x0b\x32#.mxaccess_gateway.v1.ProtocolStatusB\n\n\x08_hresult*\x97\x02\n\x0bWorkerState\x12\x1c\n\x18WORKER_STATE_UNSPECIFIED\x10\x00\x12\x19\n\x15WORKER_STATE_STARTING\x10\x01\x12\x1c\n\x18WORKER_STATE_HANDSHAKING\x10\x02\x12!\n\x1dWORKER_STATE_INITIALIZING_STA\x10\x03\x12\x16\n\x12WORKER_STATE_READY\x10\x04\x12\"\n\x1eWORKER_STATE_EXECUTING_COMMAND\x10\x05\x12\x1e\n\x1aWORKER_STATE_SHUTTING_DOWN\x10\x06\x12\x18\n\x14WORKER_STATE_STOPPED\x10\x07\x12\x18\n\x14WORKER_STATE_FAULTED\x10\x08*\xc7\x04\n\x13WorkerFaultCategory\x12%\n!WORKER_FAULT_CATEGORY_UNSPECIFIED\x10\x00\x12+\n\'WORKER_FAULT_CATEGORY_INVALID_ARGUMENTS\x10\x01\x12\x37\n3WORKER_FAULT_CATEGORY_GATEWAY_AUTHENTICATION_FAILED\x10\x02\x12+\n\'WORKER_FAULT_CATEGORY_PROTOCOL_MISMATCH\x10\x03\x12,\n(WORKER_FAULT_CATEGORY_PROTOCOL_VIOLATION\x10\x04\x12+\n\'WORKER_FAULT_CATEGORY_PIPE_DISCONNECTED\x10\x05\x12\x32\n.WORKER_FAULT_CATEGORY_MXACCESS_CREATION_FAILED\x10\x06\x12\x31\n-WORKER_FAULT_CATEGORY_MXACCESS_COMMAND_FAILED\x10\x07\x12:\n6WORKER_FAULT_CATEGORY_MXACCESS_EVENT_CONVERSION_FAILED\x10\x08\x12\"\n\x1eWORKER_FAULT_CATEGORY_STA_HUNG\x10\t\x12(\n$WORKER_FAULT_CATEGORY_QUEUE_OVERFLOW\x10\n\x12*\n&WORKER_FAULT_CATEGORY_SHUTDOWN_TIMEOUT\x10\x0b\x42&\xaa\x02#ZB.MOM.WW.MxGateway.Contracts.Protob\x06proto3')
|
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x15mxaccess_worker.proto\x12\x12mxaccess_worker.v1\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x16mxaccess_gateway.proto\"\x95\x06\n\x0eWorkerEnvelope\x12\x18\n\x10protocol_version\x18\x01 \x01(\r\x12\x12\n\nsession_id\x18\x02 \x01(\t\x12\x10\n\x08sequence\x18\x03 \x01(\x04\x12\x16\n\x0e\x63orrelation_id\x18\x04 \x01(\t\x12\x39\n\rgateway_hello\x18\n \x01(\x0b\x32 .mxaccess_worker.v1.GatewayHelloH\x00\x12\x37\n\x0cworker_hello\x18\x0b \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerHelloH\x00\x12\x37\n\x0cworker_ready\x18\x0c \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerReadyH\x00\x12;\n\x0eworker_command\x18\r \x01(\x0b\x32!.mxaccess_worker.v1.WorkerCommandH\x00\x12\x46\n\x14worker_command_reply\x18\x0e \x01(\x0b\x32&.mxaccess_worker.v1.WorkerCommandReplyH\x00\x12\x39\n\rworker_cancel\x18\x0f \x01(\x0b\x32 .mxaccess_worker.v1.WorkerCancelH\x00\x12=\n\x0fworker_shutdown\x18\x10 \x01(\x0b\x32\".mxaccess_worker.v1.WorkerShutdownH\x00\x12\x44\n\x13worker_shutdown_ack\x18\x11 \x01(\x0b\x32%.mxaccess_worker.v1.WorkerShutdownAckH\x00\x12\x37\n\x0cworker_event\x18\x12 \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerEventH\x00\x12?\n\x10worker_heartbeat\x18\x13 \x01(\x0b\x32#.mxaccess_worker.v1.WorkerHeartbeatH\x00\x12\x37\n\x0cworker_fault\x18\x14 \x01(\x0b\x32\x1f.mxaccess_worker.v1.WorkerFaultH\x00\x42\x06\n\x04\x62ody\"s\n\x0cGatewayHello\x12\"\n\x1asupported_protocol_version\x18\x01 \x01(\r\x12\r\n\x05nonce\x18\x02 \x01(\t\x12\x17\n\x0fgateway_version\x18\x03 \x01(\t\x12\x17\n\x0fmax_frame_bytes\x18\x04 \x01(\r\"i\n\x0bWorkerHello\x12\x18\n\x10protocol_version\x18\x01 \x01(\r\x12\r\n\x05nonce\x18\x02 \x01(\t\x12\x19\n\x11worker_process_id\x18\x03 \x01(\x05\x12\x16\n\x0eworker_version\x18\x04 \x01(\t\"\x8e\x01\n\x0bWorkerReady\x12\x19\n\x11worker_process_id\x18\x01 \x01(\x05\x12\x17\n\x0fmxaccess_progid\x18\x02 \x01(\t\x12\x16\n\x0emxaccess_clsid\x18\x03 \x01(\t\x12\x33\n\x0fready_timestamp\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"w\n\rWorkerCommand\x12/\n\x07\x63ommand\x18\x01 \x01(\x0b\x32\x1e.mxaccess_gateway.v1.MxCommand\x12\x35\n\x11\x65nqueue_timestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x81\x01\n\x12WorkerCommandReply\x12\x32\n\x05reply\x18\x01 \x01(\x0b\x32#.mxaccess_gateway.v1.MxCommandReply\x12\x37\n\x13\x63ompleted_timestamp\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\x1e\n\x0cWorkerCancel\x12\x0e\n\x06reason\x18\x01 \x01(\t\"Q\n\x0eWorkerShutdown\x12/\n\x0cgrace_period\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x0e\n\x06reason\x18\x02 \x01(\t\"H\n\x11WorkerShutdownAck\x12\x33\n\x06status\x18\x01 \x01(\x0b\x32#.mxaccess_gateway.v1.ProtocolStatus\":\n\x0bWorkerEvent\x12+\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x1c.mxaccess_gateway.v1.MxEvent\"\xa5\x02\n\x0fWorkerHeartbeat\x12\x19\n\x11worker_process_id\x18\x01 \x01(\x05\x12.\n\x05state\x18\x02 \x01(\x0e\x32\x1f.mxaccess_worker.v1.WorkerState\x12?\n\x1blast_sta_activity_timestamp\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x1d\n\x15pending_command_count\x18\x04 \x01(\r\x12\"\n\x1aoutbound_event_queue_depth\x18\x05 \x01(\r\x12\x1b\n\x13last_event_sequence\x18\x06 \x01(\x04\x12&\n\x1e\x63urrent_command_correlation_id\x18\x07 \x01(\t\"\xf4\x01\n\x0bWorkerFault\x12\x39\n\x08\x63\x61tegory\x18\x01 \x01(\x0e\x32\'.mxaccess_worker.v1.WorkerFaultCategory\x12\x16\n\x0e\x63ommand_method\x18\x02 \x01(\t\x12\x14\n\x07hresult\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x16\n\x0e\x65xception_type\x18\x04 \x01(\t\x12\x1a\n\x12\x64iagnostic_message\x18\x05 \x01(\t\x12<\n\x0fprotocol_status\x18\x06 \x01(\x0b\x32#.mxaccess_gateway.v1.ProtocolStatusB\n\n\x08_hresult*\x97\x02\n\x0bWorkerState\x12\x1c\n\x18WORKER_STATE_UNSPECIFIED\x10\x00\x12\x19\n\x15WORKER_STATE_STARTING\x10\x01\x12\x1c\n\x18WORKER_STATE_HANDSHAKING\x10\x02\x12!\n\x1dWORKER_STATE_INITIALIZING_STA\x10\x03\x12\x16\n\x12WORKER_STATE_READY\x10\x04\x12\"\n\x1eWORKER_STATE_EXECUTING_COMMAND\x10\x05\x12\x1e\n\x1aWORKER_STATE_SHUTTING_DOWN\x10\x06\x12\x18\n\x14WORKER_STATE_STOPPED\x10\x07\x12\x18\n\x14WORKER_STATE_FAULTED\x10\x08*\xc7\x04\n\x13WorkerFaultCategory\x12%\n!WORKER_FAULT_CATEGORY_UNSPECIFIED\x10\x00\x12+\n\'WORKER_FAULT_CATEGORY_INVALID_ARGUMENTS\x10\x01\x12\x37\n3WORKER_FAULT_CATEGORY_GATEWAY_AUTHENTICATION_FAILED\x10\x02\x12+\n\'WORKER_FAULT_CATEGORY_PROTOCOL_MISMATCH\x10\x03\x12,\n(WORKER_FAULT_CATEGORY_PROTOCOL_VIOLATION\x10\x04\x12+\n\'WORKER_FAULT_CATEGORY_PIPE_DISCONNECTED\x10\x05\x12\x32\n.WORKER_FAULT_CATEGORY_MXACCESS_CREATION_FAILED\x10\x06\x12\x31\n-WORKER_FAULT_CATEGORY_MXACCESS_COMMAND_FAILED\x10\x07\x12:\n6WORKER_FAULT_CATEGORY_MXACCESS_EVENT_CONVERSION_FAILED\x10\x08\x12\"\n\x1eWORKER_FAULT_CATEGORY_STA_HUNG\x10\t\x12(\n$WORKER_FAULT_CATEGORY_QUEUE_OVERFLOW\x10\n\x12*\n&WORKER_FAULT_CATEGORY_SHUTDOWN_TIMEOUT\x10\x0b\x42&\xaa\x02#ZB.MOM.WW.MxGateway.Contracts.Protob\x06proto3')
|
||||||
|
|
||||||
_globals = globals()
|
_globals = globals()
|
||||||
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
||||||
@@ -35,32 +35,32 @@ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'mxaccess_worker_pb2', _glob
|
|||||||
if not _descriptor._USE_C_DESCRIPTORS:
|
if not _descriptor._USE_C_DESCRIPTORS:
|
||||||
_globals['DESCRIPTOR']._loaded_options = None
|
_globals['DESCRIPTOR']._loaded_options = None
|
||||||
_globals['DESCRIPTOR']._serialized_options = b'\252\002#ZB.MOM.WW.MxGateway.Contracts.Proto'
|
_globals['DESCRIPTOR']._serialized_options = b'\252\002#ZB.MOM.WW.MxGateway.Contracts.Proto'
|
||||||
_globals['_WORKERSTATE']._serialized_start=2316
|
_globals['_WORKERSTATE']._serialized_start=2341
|
||||||
_globals['_WORKERSTATE']._serialized_end=2595
|
_globals['_WORKERSTATE']._serialized_end=2620
|
||||||
_globals['_WORKERFAULTCATEGORY']._serialized_start=2598
|
_globals['_WORKERFAULTCATEGORY']._serialized_start=2623
|
||||||
_globals['_WORKERFAULTCATEGORY']._serialized_end=3181
|
_globals['_WORKERFAULTCATEGORY']._serialized_end=3206
|
||||||
_globals['_WORKERENVELOPE']._serialized_start=135
|
_globals['_WORKERENVELOPE']._serialized_start=135
|
||||||
_globals['_WORKERENVELOPE']._serialized_end=924
|
_globals['_WORKERENVELOPE']._serialized_end=924
|
||||||
_globals['_GATEWAYHELLO']._serialized_start=926
|
_globals['_GATEWAYHELLO']._serialized_start=926
|
||||||
_globals['_GATEWAYHELLO']._serialized_end=1016
|
_globals['_GATEWAYHELLO']._serialized_end=1041
|
||||||
_globals['_WORKERHELLO']._serialized_start=1018
|
_globals['_WORKERHELLO']._serialized_start=1043
|
||||||
_globals['_WORKERHELLO']._serialized_end=1123
|
_globals['_WORKERHELLO']._serialized_end=1148
|
||||||
_globals['_WORKERREADY']._serialized_start=1126
|
_globals['_WORKERREADY']._serialized_start=1151
|
||||||
_globals['_WORKERREADY']._serialized_end=1268
|
_globals['_WORKERREADY']._serialized_end=1293
|
||||||
_globals['_WORKERCOMMAND']._serialized_start=1270
|
_globals['_WORKERCOMMAND']._serialized_start=1295
|
||||||
_globals['_WORKERCOMMAND']._serialized_end=1389
|
_globals['_WORKERCOMMAND']._serialized_end=1414
|
||||||
_globals['_WORKERCOMMANDREPLY']._serialized_start=1392
|
_globals['_WORKERCOMMANDREPLY']._serialized_start=1417
|
||||||
_globals['_WORKERCOMMANDREPLY']._serialized_end=1521
|
_globals['_WORKERCOMMANDREPLY']._serialized_end=1546
|
||||||
_globals['_WORKERCANCEL']._serialized_start=1523
|
_globals['_WORKERCANCEL']._serialized_start=1548
|
||||||
_globals['_WORKERCANCEL']._serialized_end=1553
|
_globals['_WORKERCANCEL']._serialized_end=1578
|
||||||
_globals['_WORKERSHUTDOWN']._serialized_start=1555
|
_globals['_WORKERSHUTDOWN']._serialized_start=1580
|
||||||
_globals['_WORKERSHUTDOWN']._serialized_end=1636
|
_globals['_WORKERSHUTDOWN']._serialized_end=1661
|
||||||
_globals['_WORKERSHUTDOWNACK']._serialized_start=1638
|
_globals['_WORKERSHUTDOWNACK']._serialized_start=1663
|
||||||
_globals['_WORKERSHUTDOWNACK']._serialized_end=1710
|
_globals['_WORKERSHUTDOWNACK']._serialized_end=1735
|
||||||
_globals['_WORKEREVENT']._serialized_start=1712
|
_globals['_WORKEREVENT']._serialized_start=1737
|
||||||
_globals['_WORKEREVENT']._serialized_end=1770
|
_globals['_WORKEREVENT']._serialized_end=1795
|
||||||
_globals['_WORKERHEARTBEAT']._serialized_start=1773
|
_globals['_WORKERHEARTBEAT']._serialized_start=1798
|
||||||
_globals['_WORKERHEARTBEAT']._serialized_end=2066
|
_globals['_WORKERHEARTBEAT']._serialized_end=2091
|
||||||
_globals['_WORKERFAULT']._serialized_start=2069
|
_globals['_WORKERFAULT']._serialized_start=2094
|
||||||
_globals['_WORKERFAULT']._serialized_end=2313
|
_globals['_WORKERFAULT']._serialized_end=2338
|
||||||
# @@protoc_insertion_point(module_scope)
|
# @@protoc_insertion_point(module_scope)
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
"""Package version information."""
|
"""Package version information."""
|
||||||
|
|
||||||
__version__ = "0.1.2"
|
__version__ = "0.2.0"
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
"""Tests for the Python CLI."""
|
"""Tests for the Python CLI."""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
|
import tomllib
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from click.testing import CliRunner
|
from click.testing import CliRunner
|
||||||
@@ -12,6 +14,21 @@ from zb_mom_ww_mxgateway_cli.commands import main
|
|||||||
_BATCH_EOR = "__MXGW_BATCH_EOR__"
|
_BATCH_EOR = "__MXGW_BATCH_EOR__"
|
||||||
|
|
||||||
|
|
||||||
|
def test_version_matches_pyproject_toml() -> None:
|
||||||
|
"""`__version__` must track `pyproject.toml`'s `[project].version`.
|
||||||
|
|
||||||
|
The existing `version` command tests only assert self-consistency against
|
||||||
|
`__version__` (the two hardcoded literals could still drift from each
|
||||||
|
other without either test catching it — the CLI-26 residual drift mode).
|
||||||
|
This test pins `__version__` to the single source of truth instead.
|
||||||
|
"""
|
||||||
|
pyproject_path = Path(__file__).resolve().parent.parent / "pyproject.toml"
|
||||||
|
with pyproject_path.open("rb") as handle:
|
||||||
|
pyproject = tomllib.load(handle)
|
||||||
|
|
||||||
|
assert __version__ == pyproject["project"]["version"]
|
||||||
|
|
||||||
|
|
||||||
def test_require_certificate_validation_flag_flows_through_connect(
|
def test_require_certificate_validation_flag_flows_through_connect(
|
||||||
monkeypatch: pytest.MonkeyPatch,
|
monkeypatch: pytest.MonkeyPatch,
|
||||||
) -> None:
|
) -> None:
|
||||||
|
|||||||
Generated
+2
-2
@@ -590,7 +590,7 @@ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mxgw-cli"
|
name = "mxgw-cli"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
@@ -1490,7 +1490,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "zb-mom-ww-mxgateway-client"
|
name = "zb-mom-ww-mxgateway-client"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"futures-core",
|
"futures-core",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "zb-mom-ww-mxgateway-client"
|
name = "zb-mom-ww-mxgateway-client"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["Joseph Doherty"]
|
authors = ["Joseph Doherty"]
|
||||||
description = "Async Rust client for the MxAccessGateway gRPC service, including a lazy-browse walker over the Galaxy Repository hierarchy."
|
description = "Async Rust client for the MxAccessGateway gRPC service, including a lazy-browse walker over the Galaxy Repository hierarchy."
|
||||||
@@ -25,7 +25,7 @@ resolver = "2"
|
|||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
version = "0.1.2"
|
version = "0.2.0"
|
||||||
authors = ["Joseph Doherty"]
|
authors = ["Joseph Doherty"]
|
||||||
license = "Proprietary"
|
license = "Proprietary"
|
||||||
repository = "https://gitea.dohertylan.com/dohertj2/mxaccessgw"
|
repository = "https://gitea.dohertylan.com/dohertj2/mxaccessgw"
|
||||||
|
|||||||
@@ -436,5 +436,5 @@ Then add the dependency:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zb-mom-ww-mxgateway-client = { version = "0.1.1", registry = "dohertj2-gitea" }
|
zb-mom-ww-mxgateway-client = { version = "0.2.0", registry = "dohertj2-gitea" }
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -676,6 +676,10 @@ message WorkerInfoReply {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message DrainEventsReply {
|
message DrainEventsReply {
|
||||||
|
// The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
// worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
// `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
// empty reply.
|
||||||
repeated MxEvent events = 1;
|
repeated MxEvent events = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -760,6 +764,11 @@ message ReplayGap {
|
|||||||
// after_worker_sequence = oldest_available_sequence - 1 in the next
|
// after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
// StreamEventsRequest, which will cause the server to replay starting at
|
// StreamEventsRequest, which will cause the server to replay starting at
|
||||||
// oldest_available_sequence (the first retained event).
|
// oldest_available_sequence (the first retained event).
|
||||||
|
// When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
// that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
// formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
// follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
// passes. The interval evicted is unchanged.
|
||||||
uint64 oldest_available_sequence = 2;
|
uint64 oldest_available_sequence = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,9 @@ message GatewayHello {
|
|||||||
// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
// "use the worker's built-in default". Sits above the public gRPC cap by an
|
// "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
// Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
// including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
// to fit rather than emit an oversized frame.
|
||||||
uint32 max_frame_bytes = 4;
|
uint32 max_frame_bytes = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,73 @@ $env:MXGATEWAY_TEST_ITEM = 'TestObject.TestInt'
|
|||||||
Use plaintext only for a local gateway. Use TLS when the gateway crosses a
|
Use plaintext only for a local gateway. Use TLS when the gateway crosses a
|
||||||
machine boundary or uses a production certificate.
|
machine boundary or uses a production certificate.
|
||||||
|
|
||||||
|
## Versioning
|
||||||
|
|
||||||
|
Every client's version lives in its own manifest: `clients/rust/Cargo.toml`
|
||||||
|
(`[package]` and `[workspace.package]`, both must match — `crates/mxgw-cli`
|
||||||
|
inherits via `version.workspace = true`), `clients/python/pyproject.toml`
|
||||||
|
(`[project].version`) and `clients/python/src/zb_mom_ww_mxgateway/version.py`
|
||||||
|
(`__version__`, must match `pyproject.toml`), `clients/go/mxgateway/version.go`
|
||||||
|
(`ClientVersion`), `clients/dotnet/ZB.MOM.WW.MxGateway.Client/ZB.MOM.WW.MxGateway.Client.csproj`
|
||||||
|
(`<Version>`), and `clients/java/build.gradle` (`subprojects { version = ... }`,
|
||||||
|
mirrored by the hand-maintained `MxGatewayClientVersion.CLIENT_VERSION`
|
||||||
|
constant — the two have drifted before and there is no build-time link
|
||||||
|
between them, so bump both together).
|
||||||
|
|
||||||
|
`src/ZB.MOM.WW.MxGateway.Contracts/ZB.MOM.WW.MxGateway.Contracts.csproj`
|
||||||
|
(`<Version>`) is a fifth, easy-to-miss manifest: it is not itself a
|
||||||
|
language client, but `Invoke-PackDotnet` in `scripts/pack-clients.ps1`
|
||||||
|
packs and publishes it in lockstep with the .NET Client (both
|
||||||
|
`ZB.MOM.WW.MxGateway.*` nupkgs go through the same `-Publish` loop), and
|
||||||
|
Contracts and the .NET Client have always released at the same version.
|
||||||
|
Bump Contracts' `<Version>` alongside the .NET Client's — leaving it behind
|
||||||
|
means the next `-Publish` packs a stale Contracts version, the collision
|
||||||
|
guard below correctly refuses to re-publish it, and the loop aborts
|
||||||
|
mid-way with the Client possibly already pushed (nupkgs are enumerated
|
||||||
|
alphabetically, and `Client` sorts before `Contracts`). This is distinct
|
||||||
|
from `src/Directory.Build.props`'s repo-wide `<Version>` default, which
|
||||||
|
stamps the Server/Worker/test assemblies and is not part of the published
|
||||||
|
client package set — see the comment there.
|
||||||
|
|
||||||
|
**Bump the version before every publish, never after.** A Gitea package feed
|
||||||
|
rejects re-uploading an existing name+version, and `scripts/pack-clients.ps1`
|
||||||
|
enforces this before it ever attempts a push: each per-language `-Publish`
|
||||||
|
step queries the Gitea package API
|
||||||
|
(`GET /api/v1/packages/dohertj2/{type}/{name}/{version}`) for the version
|
||||||
|
about to be published and aborts with a clear error if it already exists —
|
||||||
|
the script never force-overwrites a published artifact. `scripts/tag-go-module.ps1`
|
||||||
|
carries the equivalent guard for the Go module: it refuses to create a
|
||||||
|
`clients/go/vX.Y.Z` tag unless `clients/go/mxgateway/version.go`'s
|
||||||
|
`ClientVersion` already equals `X.Y.Z` (CLI-21/CLI-39), so a forgotten
|
||||||
|
version bump fails the tag instead of shipping a mismatched module.
|
||||||
|
|
||||||
|
As of 2026-08-07 (CLI-39) all five clients — plus `ZB.MOM.WW.MxGateway.Contracts`,
|
||||||
|
which releases in lockstep with the .NET Client — moved to **0.2.0**,
|
||||||
|
converging on one number after four of the five had drifted onto the
|
||||||
|
*already-published* 0.1.2/0.1.1 while their public APIs kept changing
|
||||||
|
underneath it (see `archreview/2026-07-12/remediation/50-clients.md` CLI-39).
|
||||||
|
A code-review follow-up on the same branch caught that the initial CLI-39
|
||||||
|
pass bumped the .NET Client but left `Contracts.csproj` at 0.1.2 — since
|
||||||
|
both publish through the same `Invoke-PackDotnet` `-Publish` loop, that
|
||||||
|
would have made the very next `.NET` publish abort on the new collision
|
||||||
|
guard partway through (Client already pushed, Contracts refused as a
|
||||||
|
re-publish of the already-published 0.1.2). Fixed in the same branch.
|
||||||
|
Verified against the live Gitea package API at that time: `nuget` had
|
||||||
|
`ZB.MOM.WW.MxGateway.Client` and `.Contracts` published through 0.1.2; `pypi` (`zb-mom-ww-mxaccess-gateway-client`)
|
||||||
|
and `cargo` (`zb-mom-ww-mxgateway-client`) had only reached 0.1.1 despite their
|
||||||
|
source pinning 0.1.2; **`maven`
|
||||||
|
(`com.zb.mom.ww.mxgateway:zb-mom-ww-mxgateway-client`) had already published
|
||||||
|
0.2.0 on 2026-06-26** — before the CLI-37/38/40/41 conformance fixes changed
|
||||||
|
the client's observable behavior (`category`-based status validation,
|
||||||
|
`hresult < 0`, exact-secret redaction, typed malformed-reply errors). Reusing
|
||||||
|
0.2.0 for the conformant Java build would have labeled two different APIs
|
||||||
|
with the same coordinate, so **Java is the one exception: it shipped as
|
||||||
|
0.2.1**, not 0.2.0. Operators publishing a future release must re-check the
|
||||||
|
target version against the live registry before assuming any of these
|
||||||
|
numbers are still unclaimed — the guards above do this automatically at
|
||||||
|
publish time, but a version bump in the source is still a manual step per
|
||||||
|
client.
|
||||||
|
|
||||||
## .NET
|
## .NET
|
||||||
|
|
||||||
The .NET client uses .NET 10 and references
|
The .NET client uses .NET 10 and references
|
||||||
|
|||||||
@@ -74,10 +74,12 @@ protoc-version encoding drift and does not false-fail across protoc releases
|
|||||||
(it warns, rather than fails, when protoc is off the pin).
|
(it warns, rather than fails, when protoc is off the pin).
|
||||||
|
|
||||||
The gateway test project carries an independent, protoc-free freshness guard:
|
The gateway test project carries an independent, protoc-free freshness guard:
|
||||||
`ClientProtoInputTests.Descriptor_ContainsEveryContractMessageAndField` reflects
|
`ClientProtoInputTests.Descriptor_ContainsEveryContractSymbol` reflects over the
|
||||||
over the in-process contract descriptors and fails if any contract message or
|
in-process contract descriptors — `mxaccess_gateway.proto`, `mxaccess_worker.proto`,
|
||||||
field is missing from the committed protoset. This is the primary CI gate for
|
and `galaxy_repository.proto` — and fails if any contract message, field, enum,
|
||||||
descriptor staleness; a red test means "regenerate and commit the protoset."
|
enum value, service, or method is missing from the committed protoset. This is
|
||||||
|
the primary CI gate for descriptor staleness; a red test means "regenerate and
|
||||||
|
commit the protoset."
|
||||||
|
|
||||||
### Pinned generator versions
|
### Pinned generator versions
|
||||||
|
|
||||||
@@ -88,15 +90,23 @@ scripts assert the pin and resolve tools from `PATH`:
|
|||||||
| Generator | Pinned version | Guard |
|
| Generator | Pinned version | Guard |
|
||||||
|-----------|----------------|-------|
|
|-----------|----------------|-------|
|
||||||
| protoc (descriptor set) | 34.1 | version assertion in `scripts/publish-client-proto-inputs.ps1` |
|
| protoc (descriptor set) | 34.1 | version assertion in `scripts/publish-client-proto-inputs.ps1` |
|
||||||
| `Grpc.Tools` (C# `Generated/`) | 2.80.0 (contracts csproj) | `scripts/check-codegen.ps1` git-diff of `Generated/` |
|
| `Grpc.Tools` (C# `Generated/`) | 2.80.0 (contracts csproj) | `scripts/check-codegen.ps1` git-diff of `Generated/` (Check 2) |
|
||||||
| `grpcio-tools` (Python) | 1.80.0 (protobuf runtime 6.31.1) | version assertion in `clients/python/generate-proto.ps1` |
|
| `protoc-gen-go` (Go) | v1.36.11 | version assertion in `clients/go/generate-proto.ps1`; `check-codegen.ps1` Check 4 |
|
||||||
| protobuf / grpc-java (Java) | `protobufVersion` / `grpcVersion` in `clients/java/build.gradle` | `checkGeneratedClean` gradle task |
|
| `protoc-gen-go-grpc` (Go) | 1.6.2 | version assertion in `clients/go/generate-proto.ps1`; `check-codegen.ps1` Check 4 |
|
||||||
|
| `grpcio-tools` (Python) | 1.80.0 (protobuf runtime 6.31.1) | version assertion in `clients/python/generate-proto.ps1`; `check-codegen.ps1` Check 4 |
|
||||||
|
| protobuf / grpc-java (Java) | `protobufVersion` / `grpcVersion` in `clients/java/build.gradle` | CI `git diff --exit-code` over `clients/java/src/main/generated` after `gradle test` (the `checkGeneratedClean` gradle task is the equivalent local check) |
|
||||||
|
|
||||||
A newer `grpcio-tools` stamps a `GRPC_GENERATED_VERSION` above the pinned grpcio
|
A newer `grpcio-tools` stamps a `GRPC_GENERATED_VERSION` above the pinned grpcio
|
||||||
runtime and breaks Python `pytest`; the Java protobuf plugin rewrites
|
runtime and breaks Python `pytest`, so the Python and Go scripts assert their
|
||||||
`MxaccessGateway.java` with spurious protobuf-runtime-version churn on every build
|
generator pins before regenerating. Under the pinned grpc/protobuf toolchain the
|
||||||
(revert that one file when no `.proto` changed — see
|
Java protobuf plugin regenerates byte-identical output (modulo real `.proto`
|
||||||
[Gateway Testing](./GatewayTesting.md) "Continuous Integration").
|
changes), so CI enforces Java freshness with a direct `git diff --exit-code -- clients/java/src/main/generated`
|
||||||
|
step after `gradle test` (which transitively regenerates via `generateProto`); the
|
||||||
|
`checkGeneratedClean` gradle task is the equivalent check for local/manual use. The
|
||||||
|
old unconditional churn-revert CI step (which masked message-level drift in the
|
||||||
|
single-file Java aggregates) was deleted (IPC-24). Go and Python committed
|
||||||
|
bindings are guarded by `check-codegen.ps1` **Check 4**, which regenerates both
|
||||||
|
and fails on any diff.
|
||||||
|
|
||||||
## Output Directories
|
## Output Directories
|
||||||
|
|
||||||
|
|||||||
+10
-5
@@ -114,7 +114,11 @@ dotnet build src/ZB.MOM.WW.MxGateway.Contracts/ZB.MOM.WW.MxGateway.Contracts.csp
|
|||||||
`scripts/check-codegen.ps1` enforces this in CI (it force-regenerates and fails on any
|
`scripts/check-codegen.ps1` enforces this in CI (it force-regenerates and fails on any
|
||||||
`git diff` against the committed `Generated/`) — that regeneration diff in the `portable`
|
`git diff` against the committed `Generated/`) — that regeneration diff in the `portable`
|
||||||
job is the primary guard. The SSH-driven `windows-x86` job's net48 worker build is the
|
job is the primary guard. The SSH-driven `windows-x86` job's net48 worker build is the
|
||||||
secondary guard (a stale `Generated/` also breaks the x86 build with `CS0246`).
|
secondary guard (a stale `Generated/` also breaks the x86 build with `CS0246`). The same
|
||||||
|
script runs four checks in total: the committed client descriptor set (Check 1), the C#
|
||||||
|
`Generated/` (Check 2), the Rust vendored protos (Check 3), and the Go/Python client bindings
|
||||||
|
(Check 4) each regenerate and fail on any diff. See
|
||||||
|
[Client Proto Generation](./ClientProtoGeneration.md) for the pinned generator versions.
|
||||||
|
|
||||||
Client generation inputs are published through
|
Client generation inputs are published through
|
||||||
`clients/proto/proto-inputs.json` and the descriptor set under
|
`clients/proto/proto-inputs.json` and the descriptor set under
|
||||||
@@ -152,10 +156,11 @@ pwsh -File scripts/publish-client-proto-inputs.ps1
|
|||||||
|
|
||||||
Freshness is guarded two ways so a skipped regeneration cannot ship silently:
|
Freshness is guarded two ways so a skipped regeneration cannot ship silently:
|
||||||
|
|
||||||
- `ClientProtoInputTests.Descriptor_ContainsEveryContractMessageAndField` (gateway test project)
|
- `ClientProtoInputTests.Descriptor_ContainsEveryContractSymbol` (gateway test project)
|
||||||
reflects over the in-process contract descriptors and fails if any message or field is missing
|
reflects over the in-process contract descriptors — including `galaxy_repository.proto` — and
|
||||||
from the committed protoset. It is semantic (symbol presence), needs no protoc, and runs in the
|
fails if any message, field, enum, enum value, service, or method is missing from the committed
|
||||||
Linux CI. A red test means "regenerate and commit the protoset."
|
protoset. It is semantic (symbol presence), needs no protoc, and runs in the Linux CI. A red
|
||||||
|
test means "regenerate and commit the protoset."
|
||||||
- `pwsh -File scripts/publish-client-proto-inputs.ps1 -Check` rebuilds the descriptor and compares
|
- `pwsh -File scripts/publish-client-proto-inputs.ps1 -Check` rebuilds the descriptor and compares
|
||||||
it to the committed one. The comparison normalizes both sides through the same protoc with
|
it to the committed one. The comparison normalizes both sides through the same protoc with
|
||||||
`source_code_info` stripped, so it does not false-fail across protoc releases.
|
`source_code_info` stripped, so it does not false-fail across protoc releases.
|
||||||
|
|||||||
@@ -249,7 +249,7 @@ dev/test GLAuth posture (`glauth.md`), not a production posture.
|
|||||||
| `MxGateway:Ldap:AllowInsecure` | `true` | Permits a plaintext bind. Must be `true` when `Transport` is `None`; set `false` (with `Ldaps`/`StartTls`) in production. |
|
| `MxGateway:Ldap:AllowInsecure` | `true` | Permits a plaintext bind. Must be `true` when `Transport` is `None`; set `false` (with `Ldaps`/`StartTls`) in production. |
|
||||||
| `MxGateway:Ldap:SearchBase` | `dc=zb,dc=local` | Search base DN. |
|
| `MxGateway:Ldap:SearchBase` | `dc=zb,dc=local` | Search base DN. |
|
||||||
| `MxGateway:Ldap:ServiceAccountDn` | `cn=serviceaccount,dc=zb,dc=local` | Bind DN for the search account. |
|
| `MxGateway:Ldap:ServiceAccountDn` | `cn=serviceaccount,dc=zb,dc=local` | Bind DN for the search account. |
|
||||||
| `MxGateway:Ldap:ServiceAccountPassword` | `${secret:ldap/mxgateway/bind}` | Search-account password. **No longer a committed plaintext value:** `appsettings.json` ships the reference `${secret:ldap/mxgateway/bind}`, which the pre-host `${secret:}` expander resolves at startup from the encrypted secrets store (the code-side design default is now blank, so a missing/unresolved value fails closed rather than falling back to a leaked credential). Seed the value once with `secret set ldap/mxgateway/bind <value>` (the store's master key must be present via `ZB_SECRETS_MASTER_KEY`); startup aborts with `SecretNotFoundException` if the secret is absent. An operator may instead override it directly with the env var `MxGateway__Ldap__ServiceAccountPassword` (double-underscore form) — a plain literal there is used as-is and the secret lookup is skipped. |
|
| `MxGateway:Ldap:ServiceAccountPassword` | `${secret:ldap/mxgateway/bind}` | Search-account password. **Never a committed plaintext value (SEC-36):** the shared GLAuth bind credential is supplied out-of-band through one of three channels, all binding to this key. **(1) Encrypted secrets store (shipped default):** `appsettings.json` ships the reference `${secret:ldap/mxgateway/bind}`, which the pre-host `${secret:}` expander resolves at startup from the encrypted secrets store (the code-side design default is blank, so a missing/unresolved value fails closed rather than falling back to a leaked credential). Seed it once with `secret set ldap/mxgateway/bind <value>` (the store's master key must be present via `ZB_SECRETS_MASTER_KEY`); startup aborts with `SecretNotFoundException` if the secret is absent. **(2) Deployed hosts — env var:** override directly with `MxGateway__Ldap__ServiceAccountPassword` (double-underscore form) in the NSSM service environment — a plain literal there is used as-is and the store lookup is skipped. **(3) Dev boxes — user-secrets:** `dotnet user-secrets set "MxGateway:Ldap:ServiceAccountPassword" <value>` (the server carries `<UserSecretsId>mxaccessgw-server</UserSecretsId>`; user-secrets load automatically in the Development environment and live under the user profile, outside the tree). The value comes from the GLAuth source of truth `scadaproj/infra/glauth/`, never from a repo file. **Rotation:** because the credential was historically committed, rotating it in `scadaproj/infra/glauth/` (and redeploying the shared GLAuth on `10.100.0.35`) is required — see `docs/runbooks/SEC-36-ldap-credential-rotation.md` for the cutover order. A blank/unresolved value fails startup validation with a message naming the two supported channels. |
|
||||||
| `MxGateway:Ldap:UserNameAttribute` | `cn` | LDAP attribute holding the login user name. |
|
| `MxGateway:Ldap:UserNameAttribute` | `cn` | LDAP attribute holding the login user name. |
|
||||||
| `MxGateway:Ldap:DisplayNameAttribute` | `cn` | LDAP attribute holding the display name. |
|
| `MxGateway:Ldap:DisplayNameAttribute` | `cn` | LDAP attribute holding the display name. |
|
||||||
| `MxGateway:Ldap:GroupAttribute` | `memberOf` | LDAP attribute enumerating group membership (mapped to dashboard roles via `MxGateway:Dashboard:GroupToRole`). |
|
| `MxGateway:Ldap:GroupAttribute` | `memberOf` | LDAP attribute enumerating group membership (mapped to dashboard roles via `MxGateway:Dashboard:GroupToRole`). |
|
||||||
|
|||||||
+52
-16
@@ -241,14 +241,15 @@ an unreachable LDAP server is absorbed into a failed result rather than throwing
|
|||||||
pre-host secrets expander, which this suite's bare `ConfigurationBuilder`
|
pre-host secrets expander, which this suite's bare `ConfigurationBuilder`
|
||||||
does not run). Before running the live LDAP suite, set
|
does not run). Before running the live LDAP suite, set
|
||||||
`MxGateway__Ldap__ServiceAccountPassword` to the real GLAuth service-account
|
`MxGateway__Ldap__ServiceAccountPassword` to the real GLAuth service-account
|
||||||
password (dev value `serviceaccount123` for the shared GLAuth) so the suite
|
password so the suite binds with the real password instead of the literal
|
||||||
binds with the real password instead of the literal token.
|
token. Obtain the current value from the GLAuth source of truth
|
||||||
|
`scadaproj/infra/glauth/` (per `glauth.md`); it is not committed here.
|
||||||
|
|
||||||
Run the LDAP live tests explicitly:
|
Run the LDAP live tests explicitly:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$env:MXGATEWAY_RUN_LIVE_LDAP_TESTS = "1"
|
$env:MXGATEWAY_RUN_LIVE_LDAP_TESTS = "1"
|
||||||
$env:MxGateway__Ldap__ServiceAccountPassword = "serviceaccount123"
|
$env:MxGateway__Ldap__ServiceAccountPassword = "<service-account-password>"
|
||||||
dotnet test src/ZB.MOM.WW.MxGateway.IntegrationTests/ZB.MOM.WW.MxGateway.IntegrationTests.csproj --filter FullyQualifiedName~DashboardLdapLiveTests
|
dotnet test src/ZB.MOM.WW.MxGateway.IntegrationTests/ZB.MOM.WW.MxGateway.IntegrationTests.csproj --filter FullyQualifiedName~DashboardLdapLiveTests
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -428,10 +429,13 @@ runtime because the x86 Worker cannot build on Linux:
|
|||||||
gateway fake-worker tests, and builds/tests the clients that run on Linux: .NET client
|
gateway fake-worker tests, and builds/tests the clients that run on Linux: .NET client
|
||||||
build, Go (`gofmt` + `go build` + `go test`), Rust (`cargo fmt --check` + `cargo test`
|
build, Go (`gofmt` + `go build` + `go test`), Rust (`cargo fmt --check` + `cargo test`
|
||||||
+ `cargo clippy -D warnings`), and Python (`pytest`).
|
+ `cargo clippy -D warnings`), and Python (`pytest`).
|
||||||
- **`java`** (Linux, JDK 17) — `gradle test`. The protobuf gradle plugin rewrites
|
- **`java`** (Linux, JDK 17) — `gradle test`, then `git diff --exit-code` over the generated
|
||||||
`MxaccessGateway.java` with spurious protobuf-runtime-version churn on every build, so
|
tree. The grpc/protobuf toolchain is pinned (`clients/java/build.gradle`), so a regeneration
|
||||||
when no `.proto` changed the job reverts that one file (`git checkout`) before asserting
|
is byte-identical to the committed single-file aggregates modulo real `.proto` changes; the
|
||||||
the generated tree is clean. The dev Mac has no JRE, so Java verification is CI-only.
|
git-diff is therefore a true drift gate that now catches message-level proto drift in the Java
|
||||||
|
client (IPC-24 deleted the old unconditional churn-revert step, which masked exactly that
|
||||||
|
class). The dev Mac has a Homebrew JDK 17, so `gradle generateProto` can be run there to refresh
|
||||||
|
the Java aggregates when a `.proto` changes.
|
||||||
- **`windows-x86`** (Linux runner, per push/PR) — builds the **x86 / net48 Worker and
|
- **`windows-x86`** (Linux runner, per push/PR) — builds the **x86 / net48 Worker and
|
||||||
Worker.Tests**, which are Windows-only and out of scope for the Linux jobs. It runs on a
|
Worker.Tests**, which are Windows-only and out of scope for the Linux jobs. It runs on a
|
||||||
Linux runner that always schedules and SSHes to windev (`10.100.0.48`), where
|
Linux runner that always schedules and SSHes to windev (`10.100.0.48`), where
|
||||||
@@ -449,21 +453,53 @@ runtime because the x86 Worker cannot build on Linux:
|
|||||||
`xUnit1030`). Gated `if: github.event_name == 'schedule'`, so it never gates a push. On
|
`xUnit1030`). Gated `if: github.event_name == 'schedule'`, so it never gates a push. On
|
||||||
failure it opens a Gitea issue via the Actions token, since nobody watches the Actions page.
|
failure it opens a Gitea issue via the Actions token, since nobody watches the Actions page.
|
||||||
|
|
||||||
The freshness guard `scripts/check-codegen.ps1` fails the build when the committed
|
### Runner capacity is shared and finite
|
||||||
client descriptor set or the C# `Generated/` no longer matches the current `.proto`
|
|
||||||
sources — the codegen drift class this repo has hit repeatedly (stale client
|
All CI runs on a co-located `gitea-runner` container on docker host `10.100.0.35` with
|
||||||
descriptors, net48 `CS0246` on unregenerated protos). The **primary** guard for the
|
`maxParallel=1`, and that runner instance is **shared across repos** — it interleaves
|
||||||
|
`dohertj2/mxaccessgw` and `dohertj2/lmxopcua` jobs on the single slot rather than being
|
||||||
|
scoped to this repo (`GET /repos/dohertj2/mxaccessgw/actions/runners` returns
|
||||||
|
`total_count: 0`; the runner is registered at the instance level). Every job in a run
|
||||||
|
(`portable`, `java`, `windows-x86`) executes serially, so queue latency is additive within
|
||||||
|
a run and an active `lmxopcua` run blocks `mxaccessgw` entirely — expect ~20–30 minutes of
|
||||||
|
queue depth under cross-repo contention, not a stuck pipeline. This Gitea version (1.26)
|
||||||
|
also exposes **no run cancel or delete via the API** (`POST .../actions/runs/{id}/cancel`
|
||||||
|
returns 404, `DELETE .../actions/runs/{id}` returns 400), so a superseded or hung run cannot
|
||||||
|
be cleared and holds the slot until it finishes or times out. See
|
||||||
|
`docs/runbooks/TST-30-second-ci-runner.md` for the operator runbook that registers a second
|
||||||
|
runner to relieve this; until that lands, treat single-runner contention as expected, not a
|
||||||
|
CI outage.
|
||||||
|
|
||||||
|
When queue depth (or the missing-cancel reality) makes waiting impractical, verify a
|
||||||
|
specific commit out of band instead of waiting behind the queue: run
|
||||||
|
`CI_SHA=<sha> scripts/ci/run-windev-ci.sh <build|test|live>` from a machine with SSH access
|
||||||
|
to windev (the same script the SSH-driven `windows-x86`/`nightly-windev` jobs use — see
|
||||||
|
`scripts/ci/README.md`), or fall back to the manual windev worktree procedure below. This is
|
||||||
|
the same escape hatch used when the windev tier itself is down — TST-30 generalizes it from
|
||||||
|
"tier down" to "runner contended": either way, a stuck or slow shared runner should not
|
||||||
|
block verifying a commit.
|
||||||
|
|
||||||
|
The freshness guard `scripts/check-codegen.ps1` runs four checks and fails the build when the
|
||||||
|
committed client descriptor set (Check 1), the C# `Generated/` (Check 2), the Rust vendored
|
||||||
|
protos (Check 3), or the Go/Python client bindings (Check 4, IPC-25) no longer match the current
|
||||||
|
`.proto` sources — the codegen drift class this repo has hit repeatedly (stale client
|
||||||
|
descriptors, net48 `CS0246` on unregenerated protos, silently stale Go/Python worker bindings).
|
||||||
|
Check 4 regenerates the Go and Python bindings with their pinned generators (`protoc-gen-go`
|
||||||
|
v1.36.11 / `protoc-gen-go-grpc` 1.6.2, `grpcio-tools` 1.80.0) and fails on any diff; a missing
|
||||||
|
generator fails the check rather than skipping it. The **primary** guard for the
|
||||||
"regenerate and commit `Generated/`" rule is that regeneration diff in the `portable` job;
|
"regenerate and commit `Generated/`" rule is that regeneration diff in the `portable` job;
|
||||||
the `windows-x86` net48 compile is the **secondary** guard (a stale `Generated/` also breaks
|
the `windows-x86` net48 compile is the **secondary** guard (a stale `Generated/` also breaks
|
||||||
the x86 build with `CS0246`). See [Client Proto Generation](./ClientProtoGeneration.md) and
|
the x86 build with `CS0246`). See [Client Proto Generation](./ClientProtoGeneration.md) and
|
||||||
[Contracts](./Contracts.md).
|
[Contracts](./Contracts.md).
|
||||||
|
|
||||||
If the SSH-driven Windows tier is unavailable for infrastructure reasons (windev down, CI
|
If the SSH-driven Windows tier is unavailable for infrastructure reasons (windev down, CI
|
||||||
key/secret rotation in flight), fall back to the manual windev worktree procedure as a
|
key/secret rotation in flight) **or** the shared Gitea runner is contended and the queue is
|
||||||
degraded mode: on windev, fast-forward an isolated `origin/main` worktree under `C:\build`
|
impractical to wait behind (see "Runner capacity is shared and finite" above), fall back to
|
||||||
(never the dirty Desktop checkout), then run the x86 Worker build and `Worker.Tests`
|
the manual windev worktree procedure as a degraded mode: on windev, fast-forward an isolated
|
||||||
(`-p:Platform=x86`) there by hand. Do this per merge for worker-touching changes until the
|
`origin/main` worktree under `C:\build` (never the dirty Desktop checkout), then run the x86
|
||||||
`windows-x86` job is green again.
|
Worker build and `Worker.Tests` (`-p:Platform=x86`) there by hand. Do this per merge for
|
||||||
|
worker-touching changes until the `windows-x86` job is green again (tier-down case) or the
|
||||||
|
queue clears (contention case).
|
||||||
|
|
||||||
## Related Documentation
|
## Related Documentation
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,119 @@
|
|||||||
|
# SEC-36 — LDAP Service-Account Credential Rotation (Operator Runbook)
|
||||||
|
|
||||||
|
Operator steps to rotate the shared GLAuth service-account password after the repo-side
|
||||||
|
removal landed (SEC-36). The repo change (removal of the committed value, the two supported
|
||||||
|
secret channels, and this runbook) is already merged; the live rotation below is the
|
||||||
|
load-bearing half and is yours to execute.
|
||||||
|
|
||||||
|
> **Never put the old or new password in this repo, in a commit, in a chat, or in this file.**
|
||||||
|
> The value lives only in the GLAuth source of truth and in each host's out-of-band channel.
|
||||||
|
|
||||||
|
## Why
|
||||||
|
|
||||||
|
The dev GLAuth service-account password (`cn=serviceaccount,dc=zb,dc=local`) was historically
|
||||||
|
committed to this repo. Removal alone is insufficient — the old value is permanently recoverable
|
||||||
|
from git history — so **rotation is required**. Until the shared GLAuth on `10.100.0.35:3893`
|
||||||
|
stops honoring the old value, the repo history discloses a live directory account with LDAP
|
||||||
|
search capability over `dc=zb,dc=local`.
|
||||||
|
|
||||||
|
## Where the credential lives now (three channels, all bind `MxGateway:Ldap:ServiceAccountPassword`)
|
||||||
|
|
||||||
|
- **Source of truth:** `scadaproj/infra/glauth/config.toml` on host `10.100.0.35` (the `serviceaccount`
|
||||||
|
user's `passsha256`). `scadaproj` is a shared monorepo — stage only the explicit glauth paths.
|
||||||
|
- **Encrypted secrets store (gateway default):** `appsettings.json` ships `${secret:ldap/mxgateway/bind}`,
|
||||||
|
resolved from the local encrypted store (seed with `secret set ldap/mxgateway/bind <value>`).
|
||||||
|
- **Deployed hosts:** env var `MxGateway__Ldap__ServiceAccountPassword` in the NSSM service environment.
|
||||||
|
- **Dev boxes:** `dotnet user-secrets set "MxGateway:Ldap:ServiceAccountPassword" <value>`
|
||||||
|
(the server carries `<UserSecretsId>mxaccessgw-server</UserSecretsId>`).
|
||||||
|
|
||||||
|
See `docs/GatewayConfiguration.md` (the `ServiceAccountPassword` row) and `glauth.md`.
|
||||||
|
|
||||||
|
## Preconditions
|
||||||
|
|
||||||
|
- SSH access to the GLAuth docker host `10.100.0.35` and to the deployed gateway host(s).
|
||||||
|
- Write access to `scadaproj/infra/glauth/`.
|
||||||
|
- Know which deployed hosts run LDAP-backed dashboard login:
|
||||||
|
- **`10.100.0.48`** (`windev`) — primary; verify here.
|
||||||
|
- **`wonder-app-vd03`** — its dashboard is disabled. **Check `MxGateway:Ldap:Enabled` there first.**
|
||||||
|
If LDAP is disabled (`Enabled=false`), it has nothing to bind and needs no env var — skip it.
|
||||||
|
- A generated replacement secret (see step 1). Generate the `passsha256` per `glauth.md`
|
||||||
|
("Generate `passsha256` from a plaintext password").
|
||||||
|
|
||||||
|
## Cutover order
|
||||||
|
|
||||||
|
Follow this order so no window opens where the deployed dashboard cannot bind. **Do not rotate
|
||||||
|
GLAuth before the deployed hosts already carry the new value.**
|
||||||
|
|
||||||
|
1. **Generate the new secret in `scadaproj/infra/glauth/`.** Pick a new password, compute its
|
||||||
|
`passsha256`, and stage the change to the `serviceaccount` user in `config.toml` (do not
|
||||||
|
`docker compose up` yet — the directory must keep honoring the OLD value until the deployed
|
||||||
|
hosts carry the NEW one).
|
||||||
|
|
||||||
|
2. **Pre-stage the NEW value on every LDAP-enabled deployed host** via the env-var channel, so the
|
||||||
|
host is ready the instant GLAuth flips:
|
||||||
|
```powershell
|
||||||
|
nssm get MxAccessGw AppEnvironmentExtra
|
||||||
|
nssm set MxAccessGw AppEnvironmentExtra MxGateway__Ldap__ServiceAccountPassword=<new-value>
|
||||||
|
# restart the service so the new environment is picked up
|
||||||
|
nssm restart MxAccessGw
|
||||||
|
```
|
||||||
|
Do this on `10.100.0.48`, and on `wonder-app-vd03` **only if** `MxGateway:Ldap:Enabled=true` there.
|
||||||
|
(Alternatively seed the encrypted store with `secret set ldap/mxgateway/bind <new-value>`; the
|
||||||
|
env var overrides the store and is the simplest per-host mechanism.)
|
||||||
|
At this moment the deployed host holds the NEW value but GLAuth still honors the OLD one — binds
|
||||||
|
still fail closed against the old directory, which is expected and brief; proceed immediately.
|
||||||
|
|
||||||
|
3. **Rotate GLAuth on `10.100.0.35`** to honor the new value:
|
||||||
|
```bash
|
||||||
|
ssh 10.100.0.35
|
||||||
|
cd ~/Desktop/scadaproj/infra/glauth
|
||||||
|
docker compose up -d --force-recreate
|
||||||
|
docker compose logs -f # confirm clean startup, no TOML parse error
|
||||||
|
```
|
||||||
|
|
||||||
|
4. **Verify dashboard login on the deployed host(s).** Browse to the gateway dashboard on
|
||||||
|
`10.100.0.48` and log in as `multi-role` / `password` (Administrator) — a successful login proves
|
||||||
|
the search bind used the new service-account credential end-to-end. If `wonder-app-vd03` runs
|
||||||
|
LDAP, verify it too; if its dashboard/LDAP is disabled, no check is needed.
|
||||||
|
|
||||||
|
5. **The repo change is already landed** (removal of the committed value, `<UserSecretsId>`, the
|
||||||
|
validator message naming the two channels, and doc/scrub updates). Nothing more to commit for
|
||||||
|
the cutover.
|
||||||
|
|
||||||
|
6. **Developers set user-secrets on next pull.** After pulling, a dev box with no secret configured
|
||||||
|
will fail startup with a validation message naming the exact command. One-time per machine:
|
||||||
|
```bash
|
||||||
|
dotnet user-secrets set "MxGateway:Ldap:ServiceAccountPassword" <new-value>
|
||||||
|
```
|
||||||
|
(value from `scadaproj/infra/glauth/`, never from a repo file).
|
||||||
|
|
||||||
|
## Verifying the rotation
|
||||||
|
|
||||||
|
- **Primary:** dashboard `/login` as `multi-role` on `10.100.0.48` succeeds (step 4).
|
||||||
|
- **`wonder-app-vd03`:** only if `MxGateway:Ldap:Enabled=true`; otherwise no action.
|
||||||
|
- **Live-LDAP integration tests** (opt-in, only where the GLAuth instance is reachable):
|
||||||
|
```bash
|
||||||
|
$env:MXGATEWAY_RUN_LIVE_LDAP_TESTS = "1"
|
||||||
|
$env:MxGateway__Ldap__ServiceAccountPassword = "<new-value>" # shell env only, never committed
|
||||||
|
dotnet test src/ZB.MOM.WW.MxGateway.IntegrationTests/ZB.MOM.WW.MxGateway.IntegrationTests.csproj `
|
||||||
|
--filter FullyQualifiedName~DashboardLdapLiveTests
|
||||||
|
```
|
||||||
|
A green `DashboardLdapLiveTests` run confirms the new credential binds and searches. Where GLAuth
|
||||||
|
is unreachable, document the suite as skipped per the `docs/GatewayTesting.md` opt-in matrix.
|
||||||
|
- **Old value is dead:** after step 3, a bind with the old password must fail. Do not test this from
|
||||||
|
a shared-NAT box — GLAuth's 3-fail / 10-minute per-IP lockout can lock the whole office.
|
||||||
|
|
||||||
|
## Rollback
|
||||||
|
|
||||||
|
If dashboard login breaks after step 3, restore the previous `passsha256` in
|
||||||
|
`scadaproj/infra/glauth/config.toml`, `docker compose up -d --force-recreate`, and re-point the
|
||||||
|
deployed hosts' env var / store back to the previous value. Because the deployed hosts were
|
||||||
|
pre-staged in step 2, the exposure window is only steps 2→4.
|
||||||
|
|
||||||
|
## Done criteria
|
||||||
|
|
||||||
|
- GLAuth on `10.100.0.35` honors only the new value.
|
||||||
|
- Every LDAP-enabled deployed host binds with the new value (dashboard login verified).
|
||||||
|
- The source of truth `scadaproj/infra/glauth/config.toml` carries the new `passsha256`.
|
||||||
|
- No repo file (this one included) contains the old or new value.
|
||||||
|
- The SEC-36 tracker rows are `Done` with this runbook cited for the operator action.
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
# TST-30 — Register A Second CI Runner (Operator Runbook)
|
||||||
|
|
||||||
|
Operator steps to relieve the single shared Gitea Actions runner that CI depends on. The
|
||||||
|
repo-side half of TST-30 (documenting the shared-runner/no-cancel reality and the
|
||||||
|
`run-windev-ci.sh` bypass) is already landed in `docs/GatewayTesting.md`; registering the
|
||||||
|
second runner below is infrastructure work outside this repo's tree and is yours to execute.
|
||||||
|
|
||||||
|
## Why
|
||||||
|
|
||||||
|
All CI for this repo runs on one co-located `gitea-runner` container on docker host
|
||||||
|
`10.100.0.35` with `maxParallel=1`. That runner is registered at the **instance** level, not
|
||||||
|
scoped to this repo (`GET /repos/dohertj2/mxaccessgw/actions/runners` returns
|
||||||
|
`total_count: 0`), so it is shared with `dohertj2/lmxopcua` and every job in every run across
|
||||||
|
both repos executes serially on the single slot. A `mxaccessgw` push fans out to `portable`,
|
||||||
|
`java`, `windows-x86`, and an active `lmxopcua` run blocks all of them — queue depth of
|
||||||
|
~20–30 minutes was observed during TST-25 acceptance under cross-repo contention. Gitea 1.26
|
||||||
|
also exposes **no run cancel or delete via the API**
|
||||||
|
(`POST .../actions/runs/{id}/cancel` → 404, `DELETE .../actions/runs/{id}` → 400), so a
|
||||||
|
superseded or hung run cannot be cleared and holds the slot until it finishes or times out.
|
||||||
|
This is not a correctness problem — every job still reports accurately — but it undercuts the
|
||||||
|
fast-feedback purpose of the TST-25 Windows tier and makes CI fragile to a single host: if
|
||||||
|
`10.100.0.35` wedges or goes down, CI for both repos stops with no failover.
|
||||||
|
|
||||||
|
## Options (cheapest first)
|
||||||
|
|
||||||
|
- **(a) Register a second `act_runner` instance on `10.100.0.35` — recommended.** The host
|
||||||
|
already runs `gitea-runner`; add a second `act_runner` container (or raise the existing
|
||||||
|
runner's `maxParallel` where the docker-in-docker/resource budget allows) so at least two
|
||||||
|
jobs run concurrently. Cheapest change, and it keeps the runner co-located on the
|
||||||
|
`container.network: traefik` network that resolves `gitea:3000` — the property TST-03
|
||||||
|
depended on. **Use the same `container.network: traefik` config as the existing runner.**
|
||||||
|
- **(b) Dedicate a labelled runner to `mxaccessgw`.** Cleaner isolation — `lmxopcua` load
|
||||||
|
never blocks this repo — but needs label wiring: register the new runner with a distinct
|
||||||
|
label (e.g. `mxgw`) and change `.gitea/workflows/ci.yml`'s `runs-on:` for this repo's jobs
|
||||||
|
to gate on that label (e.g. `runs-on: [ubuntu-latest, mxgw]`). Only do this if (a) proves
|
||||||
|
insufficient — it is more moving parts for the same throughput gain, and it means `ci.yml`
|
||||||
|
changes, which is out of scope for the doc-only half of TST-30.
|
||||||
|
- **(c) Put the runner on windev / a second host — rejected as the primary fix.** windev is
|
||||||
|
the Windows build target (`10.100.0.48`), not a CI host, and co-locating a Linux runner
|
||||||
|
there loses the `gitea:3000` name resolution TST-03 relies on. Only consider if
|
||||||
|
`10.100.0.35` genuinely runs out of capacity for a second instance.
|
||||||
|
|
||||||
|
Default to **(a)**. Escalate to (b) only if `lmxopcua` contention persists after a second
|
||||||
|
instance is online (i.e., (a) is not sufficient because the two repos' combined load exceeds
|
||||||
|
two slots).
|
||||||
|
|
||||||
|
## Preconditions
|
||||||
|
|
||||||
|
- SSH/docker access to `10.100.0.35`.
|
||||||
|
- The existing `gitea-runner` container's compose/run config, to copy its
|
||||||
|
`container.network: traefik` setting and registration token flow (repo memory
|
||||||
|
`project_gitea_ci` records this configuration).
|
||||||
|
- Admin access to Gitea (`gitea.dohertylan.com`) to mint a new runner registration token.
|
||||||
|
|
||||||
|
## Steps — option (a): second runner instance
|
||||||
|
|
||||||
|
1. On `10.100.0.35`, locate the existing `gitea-runner` container/compose definition and copy
|
||||||
|
its configuration for a new instance (same `container.network: traefik`, same Docker
|
||||||
|
socket mount if it uses docker-in-docker, a distinct container name/data volume).
|
||||||
|
2. In Gitea, generate a new runner registration token (instance-level, since the existing
|
||||||
|
runner is registered at the instance level too — Admin → Actions → Runners, or
|
||||||
|
`POST /admin/actions/runners/registration-token`).
|
||||||
|
3. Register and start the second `act_runner` instance with that token, pointed at the same
|
||||||
|
Gitea origin.
|
||||||
|
4. Confirm both runners show online: instance runner list in the Gitea admin UI, or the
|
||||||
|
equivalent API listing.
|
||||||
|
|
||||||
|
## Verification
|
||||||
|
|
||||||
|
- Push two branches to `mxaccessgw` back-to-back (or trigger one `mxaccessgw` push while an
|
||||||
|
`lmxopcua` run is in flight) and confirm both runs execute **concurrently**, not serially —
|
||||||
|
the second run's jobs should start before the first finishes, not queue behind it.
|
||||||
|
- `GET /repos/dohertj2/mxaccessgw/actions/runners` (or the instance runner listing) shows
|
||||||
|
**≥2** runners online.
|
||||||
|
- Re-run the TST-25 acceptance push (a plain push to a scratch branch) and confirm queue depth
|
||||||
|
is materially lower than the ~20–30 minute baseline observed under a concurrent `lmxopcua`
|
||||||
|
run.
|
||||||
|
- Confirm `windows-x86` still resolves `gitea:3000` correctly from a job scheduled on the new
|
||||||
|
runner instance (the `traefik` network property must hold for both instances).
|
||||||
|
|
||||||
|
## The no-cancel reality does not go away
|
||||||
|
|
||||||
|
A second runner relieves contention; it does not add a cancel/delete API — Gitea 1.26 still
|
||||||
|
returns 404/400 for both. A stale or hung run on either runner still holds its slot until it
|
||||||
|
finishes or times out. Two runners just means one stale run blocks at most half the capacity
|
||||||
|
instead of all of it. Do not treat the second runner as a substitute for the escape hatch: a
|
||||||
|
specific commit can still be verified out of band without waiting on either runner via
|
||||||
|
`CI_SHA=<sha> scripts/ci/run-windev-ci.sh <build|test|live>` (Linux, needs SSH access to
|
||||||
|
windev) or the manual windev worktree flow — see the "Runner capacity is shared and finite"
|
||||||
|
section in `docs/GatewayTesting.md`.
|
||||||
|
|
||||||
|
## Optional: workflow-level `concurrency` group
|
||||||
|
|
||||||
|
As belt-and-suspenders against the missing cancel API, `.gitea/workflows/ci.yml` could add a
|
||||||
|
top-level `concurrency` group (e.g. keyed on `${{ github.ref }}`) so a newer push to the same
|
||||||
|
branch automatically supersedes an in-flight run instead of both running to completion.
|
||||||
|
**Verify this Gitea deployment actually honors `concurrency` and cancels the superseded run
|
||||||
|
before relying on it** — Gitea Actions' YAML surface does not track GitHub Actions feature
|
||||||
|
parity release-for-release, and a `concurrency` block that is silently ignored would look like
|
||||||
|
a working safeguard while doing nothing. If verified working, this is a `ci.yml` change (not
|
||||||
|
covered by this runbook) and should land as its own small change with its own verification
|
||||||
|
(push twice to the same branch quickly, confirm the first run's jobs cancel).
|
||||||
|
|
||||||
|
## Done criteria
|
||||||
|
|
||||||
|
- A second `act_runner` instance (or raised `maxParallel`) is online on `10.100.0.35` with the
|
||||||
|
same `container.network: traefik` configuration as the existing runner.
|
||||||
|
- `GET /repos/dohertj2/mxaccessgw/actions/runners` (or the instance listing) shows ≥2 runners.
|
||||||
|
- Two concurrent runs (one `mxaccessgw`, one `lmxopcua`, or two `mxaccessgw` pushes) execute
|
||||||
|
in parallel rather than serially.
|
||||||
|
- `docs/GatewayTesting.md`'s shared-runner/no-cancel prose and the `run-windev-ci.sh` bypass
|
||||||
|
remain accurate (they describe the bypass as still valid, which it is regardless of runner
|
||||||
|
count).
|
||||||
@@ -30,10 +30,19 @@ gw-specific role.
|
|||||||
| LDAPS | disabled in dev (`Transport=None`, `AllowInsecure=true`) |
|
| LDAPS | disabled in dev (`Transport=None`, `AllowInsecure=true`) |
|
||||||
| Base DN | `dc=zb,dc=local` |
|
| Base DN | `dc=zb,dc=local` |
|
||||||
| Bind DN format | `cn={username},dc=zb,dc=local` |
|
| Bind DN format | `cn={username},dc=zb,dc=local` |
|
||||||
| Service account DN | `cn=serviceaccount,dc=zb,dc=local` / `serviceaccount123` |
|
| Service account DN | `cn=serviceaccount,dc=zb,dc=local` (password: `<service-account-password>`) |
|
||||||
| Group OU | `ou=<groupname>,ou=groups,dc=zb,dc=local` |
|
| Group OU | `ou=<groupname>,ou=groups,dc=zb,dc=local` |
|
||||||
| Failed-bind throttle | 3 fails → 10-minute IP lockout (per `[behaviors]`) |
|
| Failed-bind throttle | 3 fails → 10-minute IP lockout (per `[behaviors]`) |
|
||||||
|
|
||||||
|
> **Service-account password is not committed (SEC-36).** The samples below show
|
||||||
|
> `<service-account-password>` as a placeholder, not the real value. The single source of
|
||||||
|
> truth is **`scadaproj/infra/glauth/config.toml`** on host `10.100.0.35`; the gateway consumes
|
||||||
|
> it out-of-band (encrypted secrets store reference `${secret:ldap/mxgateway/bind}`, the
|
||||||
|
> `MxGateway__Ldap__ServiceAccountPassword` env var on deployed hosts, or `dotnet user-secrets`
|
||||||
|
> on dev boxes — see `docs/GatewayConfiguration.md`). The credential was historically committed
|
||||||
|
> to this repo (and remains recoverable from git history), so **rotation is required**; the
|
||||||
|
> operator runbook is `docs/runbooks/SEC-36-ldap-credential-rotation.md`.
|
||||||
|
|
||||||
## Pre-existing groups (LmxOpcUa role taxonomy)
|
## Pre-existing groups (LmxOpcUa role taxonomy)
|
||||||
|
|
||||||
These map cleanly onto MxAccess capability boundaries — mxaccessgw
|
These map cleanly onto MxAccess capability boundaries — mxaccessgw
|
||||||
@@ -62,7 +71,7 @@ group below).
|
|||||||
| `writeconfig` | `writeconfig123` | 5006 | WriteConfigure | — | + WriteSecured (Configure) |
|
| `writeconfig` | `writeconfig123` | 5006 | WriteConfigure | — | + WriteSecured (Configure) |
|
||||||
| `alarmack` | `alarmack123` | 5003 | AlarmAck | — | Alarm acknowledgment |
|
| `alarmack` | `alarmack123` | 5003 | AlarmAck | — | Alarm acknowledgment |
|
||||||
| `admin` | `admin123` | 5004 | ReadOnly | WriteOperate, AlarmAck, WriteTune, WriteConfigure | All roles |
|
| `admin` | `admin123` | 5004 | ReadOnly | WriteOperate, AlarmAck, WriteTune, WriteConfigure | All roles |
|
||||||
| `serviceaccount` | `serviceaccount123` | 5999 | ReadOnly | — | LDAP search capability (for bind-then-search) |
|
| `serviceaccount` | `<service-account-password>` | 5999 | ReadOnly | — | LDAP search capability (for bind-then-search) |
|
||||||
|
|
||||||
For mxaccessgw dev, `admin` covers every gw-side capability test;
|
For mxaccessgw dev, `admin` covers every gw-side capability test;
|
||||||
`readonly` is the right "negative" case for proving Browse-OK /
|
`readonly` is the right "negative" case for proving Browse-OK /
|
||||||
@@ -100,7 +109,7 @@ by `sAMAccountName`, not `cn`. Use this only for dev convenience.
|
|||||||
|
|
||||||
```
|
```
|
||||||
1. Bind as the service account (cn=serviceaccount,dc=zb,dc=local
|
1. Bind as the service account (cn=serviceaccount,dc=zb,dc=local
|
||||||
/ serviceaccount123).
|
/ <service-account-password>).
|
||||||
2. Search under dc=zb,dc=local with filter
|
2. Search under dc=zb,dc=local with filter
|
||||||
(uid=<entered-username>) — or any attribute the deployment
|
(uid=<entered-username>) — or any attribute the deployment
|
||||||
identifies users by. GLAuth populates uid + cn.
|
identifies users by. GLAuth populates uid + cn.
|
||||||
@@ -133,7 +142,7 @@ ldap:
|
|||||||
allowInsecureLdap: true # dev only
|
allowInsecureLdap: true # dev only
|
||||||
searchBase: "dc=zb,dc=local"
|
searchBase: "dc=zb,dc=local"
|
||||||
serviceAccountDn: "cn=serviceaccount,dc=zb,dc=local"
|
serviceAccountDn: "cn=serviceaccount,dc=zb,dc=local"
|
||||||
serviceAccountPassword: "serviceaccount123"
|
serviceAccountPassword: "<service-account-password>" # not committed; see source-of-truth note
|
||||||
userNameAttribute: "uid" # GLAuth populates this; AD uses sAMAccountName
|
userNameAttribute: "uid" # GLAuth populates this; AD uses sAMAccountName
|
||||||
displayNameAttribute: "cn"
|
displayNameAttribute: "cn"
|
||||||
groupAttribute: "memberOf"
|
groupAttribute: "memberOf"
|
||||||
@@ -242,7 +251,7 @@ Or via `ldapsearch` if you have OpenLDAP CLI tools:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
ldapsearch -x -H ldap://10.100.0.35:3893 \
|
ldapsearch -x -H ldap://10.100.0.35:3893 \
|
||||||
-D "cn=serviceaccount,dc=zb,dc=local" -w serviceaccount123 \
|
-D "cn=serviceaccount,dc=zb,dc=local" -w '<service-account-password>' \
|
||||||
-b "dc=zb,dc=local" "(uid=multi-role)"
|
-b "dc=zb,dc=local" "(uid=multi-role)"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env pwsh
|
#!/usr/bin/env pwsh
|
||||||
# Codegen freshness guard for CI (IPC-01, IPC-19, IPC-20, CLI-02).
|
# Codegen freshness guard for CI (IPC-01, IPC-19, IPC-20, IPC-25, CLI-02).
|
||||||
#
|
#
|
||||||
# Three checks, all Linux/macOS-runnable (no Server build, no x86 worker):
|
# Four checks, all Linux/macOS-runnable (no Server build, no x86 worker):
|
||||||
# 1. Published client descriptor set matches the current .proto sources (delegates to
|
# 1. Published client descriptor set matches the current .proto sources (delegates to
|
||||||
# publish-client-proto-inputs.ps1 -Check, which normalizes source_code_info so it is
|
# publish-client-proto-inputs.ps1 -Check, which normalizes source_code_info so it is
|
||||||
# protoc-version tolerant).
|
# protoc-version tolerant).
|
||||||
@@ -13,6 +13,12 @@
|
|||||||
# crate buildable outside the repo, CLI-02) are byte-identical to the canonical Contracts
|
# crate buildable outside the repo, CLI-02) are byte-identical to the canonical Contracts
|
||||||
# protos. A drift means a .proto was edited without refreshing the vendored copies, which would
|
# protos. A drift means a .proto was edited without refreshing the vendored copies, which would
|
||||||
# publish a stale wire contract to crate consumers while the in-repo build stays correct.
|
# publish a stale wire contract to crate consumers while the in-repo build stays correct.
|
||||||
|
# 4. The committed Go and Python client bindings match a fresh regeneration (IPC-25). The two
|
||||||
|
# per-client generate-proto.ps1 scripts pin their generators (protoc-gen-go v1.36.11 /
|
||||||
|
# protoc-gen-go-grpc v1.6.2 for Go; grpcio-tools 1.80.0 for Python), so a clean checkout
|
||||||
|
# regenerates deterministic output; a non-empty git diff means a .proto was edited without
|
||||||
|
# regenerating and committing those bindings. A missing generator FAILS the check (a skipped
|
||||||
|
# guard is the exact silent-drift hole IPC-25 closes), never skips it.
|
||||||
#
|
#
|
||||||
# The x86 Worker + Worker.Tests are Windows-only and are guarded by the SSH-driven `windows-x86`
|
# The x86 Worker + Worker.Tests are Windows-only and are guarded by the SSH-driven `windows-x86`
|
||||||
# CI job (see docs/GatewayTesting.md, Continuous Integration), not here.
|
# CI job (see docs/GatewayTesting.md, Continuous Integration), not here.
|
||||||
@@ -28,7 +34,7 @@ $generatedDir = Join-Path $repoRoot 'src/ZB.MOM.WW.MxGateway.Contracts/Generated
|
|||||||
$contractsProject = Join-Path $repoRoot 'src/ZB.MOM.WW.MxGateway.Contracts/ZB.MOM.WW.MxGateway.Contracts.csproj'
|
$contractsProject = Join-Path $repoRoot 'src/ZB.MOM.WW.MxGateway.Contracts/ZB.MOM.WW.MxGateway.Contracts.csproj'
|
||||||
$failures = New-Object System.Collections.Generic.List[string]
|
$failures = New-Object System.Collections.Generic.List[string]
|
||||||
|
|
||||||
Write-Host '== Check 1/2: client descriptor set freshness =='
|
Write-Host '== Check 1/4: client descriptor set freshness =='
|
||||||
try {
|
try {
|
||||||
& (Join-Path $PSScriptRoot 'publish-client-proto-inputs.ps1') -Check
|
& (Join-Path $PSScriptRoot 'publish-client-proto-inputs.ps1') -Check
|
||||||
if ($LASTEXITCODE -ne 0) {
|
if ($LASTEXITCODE -ne 0) {
|
||||||
@@ -40,7 +46,7 @@ catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Write-Host ''
|
Write-Host ''
|
||||||
Write-Host '== Check 2/2: Contracts/Generated matches a fresh regeneration =='
|
Write-Host '== Check 2/4: Contracts/Generated matches a fresh regeneration =='
|
||||||
try {
|
try {
|
||||||
# Force a full regeneration: Grpc.Tools skips regen when the committed .cs look up to date, so
|
# Force a full regeneration: Grpc.Tools skips regen when the committed .cs look up to date, so
|
||||||
# remove them first (the documented "del Generated/*.cs to force regen" trick).
|
# remove them first (the documented "del Generated/*.cs to force regen" trick).
|
||||||
@@ -66,7 +72,7 @@ catch {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Write-Host ''
|
Write-Host ''
|
||||||
Write-Host '== Check 3/3: Rust vendored protos match canonical Contracts protos =='
|
Write-Host '== Check 3/4: Rust vendored protos match canonical Contracts protos =='
|
||||||
try {
|
try {
|
||||||
$canonicalProtoDir = Join-Path $repoRoot 'src/ZB.MOM.WW.MxGateway.Contracts/Protos'
|
$canonicalProtoDir = Join-Path $repoRoot 'src/ZB.MOM.WW.MxGateway.Contracts/Protos'
|
||||||
$vendoredProtoDir = Join-Path $repoRoot 'clients/rust/protos'
|
$vendoredProtoDir = Join-Path $repoRoot 'clients/rust/protos'
|
||||||
@@ -87,6 +93,28 @@ catch {
|
|||||||
$failures.Add("Rust vendored proto check failed: $($_.Exception.Message)")
|
$failures.Add("Rust vendored proto check failed: $($_.Exception.Message)")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Write-Host ''
|
||||||
|
Write-Host '== Check 4/4: Go and Python client bindings match a fresh regeneration =='
|
||||||
|
try {
|
||||||
|
# Regenerate both binding sets with their pinned generators, then diff. The per-client scripts
|
||||||
|
# throw on a missing or off-pin generator, so any failure here FAILS the check rather than
|
||||||
|
# skipping it (a skipped guard is exactly the silent-drift hole IPC-25 closes).
|
||||||
|
$goBindingDir = 'clients/go/internal/generated'
|
||||||
|
$pyBindingDir = 'clients/python/src/zb_mom_ww_mxgateway/generated'
|
||||||
|
|
||||||
|
& (Join-Path $repoRoot 'clients/go/generate-proto.ps1') | Out-Host
|
||||||
|
& (Join-Path $repoRoot 'clients/python/generate-proto.ps1') | Out-Host
|
||||||
|
|
||||||
|
$bindingDiff = (& git -C $repoRoot status --porcelain -- $goBindingDir $pyBindingDir | Out-String).Trim()
|
||||||
|
if (-not [string]::IsNullOrEmpty($bindingDiff)) {
|
||||||
|
Write-Host $bindingDiff
|
||||||
|
$failures.Add("Go/Python client bindings differ from a fresh regeneration. Run clients/go/generate-proto.ps1 and clients/python/generate-proto.ps1 with the pinned generators and commit $goBindingDir and $pyBindingDir.")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
$failures.Add("Go/Python codegen check failed (tool missing or regeneration error): $($_.Exception.Message)")
|
||||||
|
}
|
||||||
|
|
||||||
Write-Host ''
|
Write-Host ''
|
||||||
if ($failures.Count -gt 0) {
|
if ($failures.Count -gt 0) {
|
||||||
Write-Host 'Codegen freshness check FAILED:' -ForegroundColor Red
|
Write-Host 'Codegen freshness check FAILED:' -ForegroundColor Red
|
||||||
|
|||||||
@@ -87,6 +87,12 @@ $GiteaNugetFeed = 'https://gitea.dohertylan.com/api/packages/dohertj2/nuget/inde
|
|||||||
$GiteaPypiFeed = 'https://gitea.dohertylan.com/api/packages/dohertj2/pypi'
|
$GiteaPypiFeed = 'https://gitea.dohertylan.com/api/packages/dohertj2/pypi'
|
||||||
$JavaHome = '/Users/dohertj2/.local/jdks/jdk-21.0.11+10/Contents/Home'
|
$JavaHome = '/Users/dohertj2/.local/jdks/jdk-21.0.11+10/Contents/Home'
|
||||||
|
|
||||||
|
# Generic Gitea package registry API (https://gitea.dohertylan.com/api/v1/packages/{owner}/{type}/{name}/{version}):
|
||||||
|
# returns 200 when that exact name+version already exists in the given feed
|
||||||
|
# type, 404 when it does not. Used as a pre-publish collision guard (CLI-39)
|
||||||
|
# so a re-run of this script can never silently overwrite a published artifact.
|
||||||
|
$GiteaPackageApiBase = 'https://gitea.dohertylan.com/api/v1/packages/dohertj2'
|
||||||
|
|
||||||
function Write-Header {
|
function Write-Header {
|
||||||
param([string]$Text)
|
param([string]$Text)
|
||||||
Write-Host ''
|
Write-Host ''
|
||||||
@@ -94,6 +100,64 @@ function Write-Header {
|
|||||||
Write-Host $Text -ForegroundColor Cyan
|
Write-Host $Text -ForegroundColor Cyan
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Test-GiteaPackageExists {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Queries the Gitea package API for an existing name+version in a feed.
|
||||||
|
.OUTPUTS
|
||||||
|
$true if the package/version already exists, $false if it does not.
|
||||||
|
Throws if the registry cannot be reached or returns anything other
|
||||||
|
than 200/404 — callers must treat "cannot verify" as "do not publish".
|
||||||
|
#>
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory)][string]$Type,
|
||||||
|
[Parameter(Mandatory)][string]$Name,
|
||||||
|
[Parameter(Mandatory)][string]$Version
|
||||||
|
)
|
||||||
|
|
||||||
|
$uri = "$GiteaPackageApiBase/$Type/$Name/$Version"
|
||||||
|
$headers = @{}
|
||||||
|
if (-not [string]::IsNullOrEmpty($env:GITEA_TOKEN)) {
|
||||||
|
$user = if ([string]::IsNullOrEmpty($env:GITEA_USERNAME)) { 'dohertj2' } else { $env:GITEA_USERNAME }
|
||||||
|
$pair = "$($user):$($env:GITEA_TOKEN)"
|
||||||
|
$basic = [Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($pair))
|
||||||
|
$headers['Authorization'] = "Basic $basic"
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
$response = Invoke-WebRequest -Uri $uri -Headers $headers -Method Get -UseBasicParsing -ErrorAction Stop
|
||||||
|
return ($response.StatusCode -eq 200)
|
||||||
|
} catch {
|
||||||
|
$statusCode = $null
|
||||||
|
if ($_.Exception.PSObject.Properties['Response'] -and $_.Exception.Response) {
|
||||||
|
$statusCode = [int]$_.Exception.Response.StatusCode
|
||||||
|
}
|
||||||
|
if ($statusCode -eq 404) {
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
throw "Unable to query the Gitea package API for '$Type/$Name/$Version' ($uri): $($_.Exception.Message). Refusing to publish without a collision check — verify manually (or check GITEA_USERNAME/GITEA_TOKEN/network) and retry."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function Assert-GiteaPackageNotPublished {
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Aborts the script if $Name/$Version already exists in the $Type feed.
|
||||||
|
Never force-overwrites a published artifact (CLI-39).
|
||||||
|
#>
|
||||||
|
param(
|
||||||
|
[Parameter(Mandatory)][string]$Type,
|
||||||
|
[Parameter(Mandatory)][string]$Name,
|
||||||
|
[Parameter(Mandatory)][string]$Version
|
||||||
|
)
|
||||||
|
|
||||||
|
Write-Host "Checking Gitea '$Type' feed for existing '$Name' $Version..."
|
||||||
|
if (Test-GiteaPackageExists -Type $Type -Name $Name -Version $Version) {
|
||||||
|
throw "Gitea package '$Name' version '$Version' already exists in the '$Type' feed. Bump the client version before publishing — this script never force-overwrites a published artifact."
|
||||||
|
}
|
||||||
|
Write-Host " Not found in the '$Type' feed — safe to publish '$Name' $Version." -ForegroundColor Green
|
||||||
|
}
|
||||||
|
|
||||||
# -------- .NET --------
|
# -------- .NET --------
|
||||||
|
|
||||||
function Invoke-PackDotnet {
|
function Invoke-PackDotnet {
|
||||||
@@ -121,6 +185,15 @@ function Invoke-PackDotnet {
|
|||||||
if ($Publish) {
|
if ($Publish) {
|
||||||
Write-Host 'Publishing .NET packages to Gitea...' -ForegroundColor Yellow
|
Write-Host 'Publishing .NET packages to Gitea...' -ForegroundColor Yellow
|
||||||
Get-ChildItem $OutputDir -Filter 'ZB.MOM.WW.MxGateway.*.nupkg' | ForEach-Object {
|
Get-ChildItem $OutputDir -Filter 'ZB.MOM.WW.MxGateway.*.nupkg' | ForEach-Object {
|
||||||
|
# nupkg filenames are '<PackageId>.<Version>.nupkg'; the id itself contains
|
||||||
|
# dots (e.g. 'ZB.MOM.WW.MxGateway.Client'), so the id capture is lazy and the
|
||||||
|
# version capture anchors on the leading digit to split at the right dot.
|
||||||
|
$fileBaseName = [System.IO.Path]::GetFileNameWithoutExtension($_.Name)
|
||||||
|
if ($fileBaseName -notmatch '^(?<id>.+?)\.(?<version>\d+\.\d+\.\d+(?:[-+][0-9A-Za-z.-]+)?)$') {
|
||||||
|
throw "Could not parse a NuGet package id/version out of '$($_.Name)'."
|
||||||
|
}
|
||||||
|
Assert-GiteaPackageNotPublished -Type 'nuget' -Name $Matches.id -Version $Matches.version
|
||||||
|
|
||||||
& dotnet nuget push $_.FullName --source $GiteaNugetFeed --api-key $env:GITEA_TOKEN
|
& dotnet nuget push $_.FullName --source $GiteaNugetFeed --api-key $env:GITEA_TOKEN
|
||||||
if ($LASTEXITCODE -ne 0) { throw "dotnet nuget push failed for '$($_.Name)'." }
|
if ($LASTEXITCODE -ne 0) { throw "dotnet nuget push failed for '$($_.Name)'." }
|
||||||
}
|
}
|
||||||
@@ -159,6 +232,20 @@ function Invoke-PackPython {
|
|||||||
Write-Host "Packed Python artifacts -> $OutputDir" -ForegroundColor Green
|
Write-Host "Packed Python artifacts -> $OutputDir" -ForegroundColor Green
|
||||||
|
|
||||||
if ($Publish) {
|
if ($Publish) {
|
||||||
|
$pyprojectPath = Join-Path $RepoRoot 'clients/python/pyproject.toml'
|
||||||
|
$pyprojectContent = Get-Content $pyprojectPath -Raw
|
||||||
|
# Scope to the [project] section (not just the first "version = ..." line
|
||||||
|
# in the file) — [build-system]/[tool.*] sections can carry their own
|
||||||
|
# version-shaped keys, and matching the file's first hit would be luck
|
||||||
|
# of ordering, not correctness.
|
||||||
|
if ($pyprojectContent -notmatch '(?ms)^\[project\](?<section>.*?)(?=^\[|\z)') {
|
||||||
|
throw "Could not find a [project] section in '$pyprojectPath'."
|
||||||
|
}
|
||||||
|
if ($Matches.section -notmatch '(?m)^\s*version\s*=\s*"([^"]+)"') {
|
||||||
|
throw "Could not find [project].version in '$pyprojectPath'."
|
||||||
|
}
|
||||||
|
Assert-GiteaPackageNotPublished -Type 'pypi' -Name 'zb-mom-ww-mxaccess-gateway-client' -Version $Matches[1]
|
||||||
|
|
||||||
Write-Host 'Publishing Python distribution to Gitea...' -ForegroundColor Yellow
|
Write-Host 'Publishing Python distribution to Gitea...' -ForegroundColor Yellow
|
||||||
$wheels = @(Get-ChildItem $OutputDir -Filter 'zb_mom_ww_mxaccess_gateway_client-*.whl')
|
$wheels = @(Get-ChildItem $OutputDir -Filter 'zb_mom_ww_mxaccess_gateway_client-*.whl')
|
||||||
$sdists = @(Get-ChildItem $OutputDir -Filter 'zb_mom_ww_mxaccess_gateway_client-*.tar.gz')
|
$sdists = @(Get-ChildItem $OutputDir -Filter 'zb_mom_ww_mxaccess_gateway_client-*.tar.gz')
|
||||||
@@ -206,6 +293,20 @@ function Invoke-PackRust {
|
|||||||
Write-Host "Packed Rust artifacts -> $OutputDir" -ForegroundColor Green
|
Write-Host "Packed Rust artifacts -> $OutputDir" -ForegroundColor Green
|
||||||
|
|
||||||
if ($Publish) {
|
if ($Publish) {
|
||||||
|
$cargoTomlPath = Join-Path $rustDir 'Cargo.toml'
|
||||||
|
$cargoTomlContent = Get-Content $cargoTomlPath -Raw
|
||||||
|
# Scope to the [package] section specifically — Cargo.toml also carries a
|
||||||
|
# [workspace.package] section with its own "version = ..." line (today
|
||||||
|
# identical, by convention, not by anything this regex can rely on), and
|
||||||
|
# matching whichever comes first in the file is luck of ordering.
|
||||||
|
if ($cargoTomlContent -notmatch '(?ms)^\[package\](?<section>.*?)(?=^\[|\z)') {
|
||||||
|
throw "Could not find a [package] section in '$cargoTomlPath'."
|
||||||
|
}
|
||||||
|
if ($Matches.section -notmatch '(?m)^\s*version\s*=\s*"([^"]+)"') {
|
||||||
|
throw "Could not find [package] version in '$cargoTomlPath'."
|
||||||
|
}
|
||||||
|
Assert-GiteaPackageNotPublished -Type 'cargo' -Name 'zb-mom-ww-mxgateway-client' -Version $Matches[1]
|
||||||
|
|
||||||
Write-Host 'Publishing Rust crate to Gitea...' -ForegroundColor Yellow
|
Write-Host 'Publishing Rust crate to Gitea...' -ForegroundColor Yellow
|
||||||
Push-Location (Join-Path $RepoRoot 'clients/rust')
|
Push-Location (Join-Path $RepoRoot 'clients/rust')
|
||||||
try {
|
try {
|
||||||
@@ -269,6 +370,21 @@ function Invoke-PackJava {
|
|||||||
Write-Host "Packed Java artifacts -> $OutputDir" -ForegroundColor Green
|
Write-Host "Packed Java artifacts -> $OutputDir" -ForegroundColor Green
|
||||||
|
|
||||||
if ($Publish) {
|
if ($Publish) {
|
||||||
|
$buildGradlePath = Join-Path $javaDir 'build.gradle'
|
||||||
|
$buildGradleContent = Get-Content $buildGradlePath -Raw
|
||||||
|
if ($buildGradleContent -notmatch "(?m)^\s*group\s*=\s*'([^']+)'") {
|
||||||
|
throw "Could not find subprojects { group = '...' } in '$buildGradlePath'."
|
||||||
|
}
|
||||||
|
$javaGroup = $Matches[1]
|
||||||
|
if ($buildGradleContent -notmatch "(?m)^\s*version\s*=\s*'([^']+)'") {
|
||||||
|
throw "Could not find subprojects { version = '...' } in '$buildGradlePath'."
|
||||||
|
}
|
||||||
|
$javaVersion = $Matches[1]
|
||||||
|
# Gitea's Maven package API identifies the package as "groupId:artifactId",
|
||||||
|
# not the bare artifact id — passing just the artifact id here would query
|
||||||
|
# a name that never exists and silently defeat the guard.
|
||||||
|
Assert-GiteaPackageNotPublished -Type 'maven' -Name "$javaGroup`:zb-mom-ww-mxgateway-client" -Version $javaVersion
|
||||||
|
|
||||||
Write-Host 'Publishing Java artifacts to Gitea Maven feed...' -ForegroundColor Yellow
|
Write-Host 'Publishing Java artifacts to Gitea Maven feed...' -ForegroundColor Yellow
|
||||||
Push-Location $javaDir
|
Push-Location $javaDir
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -36,6 +36,23 @@ if ($Version -notmatch '^v\d+\.\d+\.\d+(-[A-Za-z0-9.-]+)?$') {
|
|||||||
throw "Version '$Version' must match semver vX.Y.Z (optionally with -prerelease suffix)."
|
throw "Version '$Version' must match semver vX.Y.Z (optionally with -prerelease suffix)."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# CLI-21 guard: the tag must match what the module itself reports via
|
||||||
|
# ClientVersion, or `go get <module>@vX.Y.Z` resolves a tag whose module
|
||||||
|
# code disagrees with its own version constant.
|
||||||
|
$versionGoPath = Join-Path $PSScriptRoot '..' 'clients/go/mxgateway/version.go'
|
||||||
|
if (-not (Test-Path $versionGoPath)) {
|
||||||
|
throw "Could not find '$versionGoPath' to verify ClientVersion before tagging."
|
||||||
|
}
|
||||||
|
$versionGoContent = Get-Content $versionGoPath -Raw
|
||||||
|
if ($versionGoContent -notmatch 'ClientVersion\s*=\s*"([^"]+)"') {
|
||||||
|
throw "Could not find a ClientVersion = `"...`" constant in '$versionGoPath'."
|
||||||
|
}
|
||||||
|
$clientVersion = $Matches[1]
|
||||||
|
$tagVersion = $Version.TrimStart('v')
|
||||||
|
if ($clientVersion -ne $tagVersion) {
|
||||||
|
throw "clients/go/mxgateway/version.go ClientVersion is '$clientVersion' but the requested tag is '$tagVersion'. Update ClientVersion to match before tagging."
|
||||||
|
}
|
||||||
|
|
||||||
$tag = "clients/go/$Version"
|
$tag = "clients/go/$Version"
|
||||||
Write-Host "Creating Go-module tag: $tag" -ForegroundColor Cyan
|
Write-Host "Creating Go-module tag: $tag" -ForegroundColor Cyan
|
||||||
|
|
||||||
|
|||||||
@@ -11,10 +11,14 @@
|
|||||||
|
|
||||||
<!-- TST-11: single-source the .NET-side version for Server, Worker, Contracts, and tests
|
<!-- TST-11: single-source the .NET-side version for Server, Worker, Contracts, and tests
|
||||||
(they otherwise stamp the SDK default 1.0.0, so a deployed gateway cannot be correlated
|
(they otherwise stamp the SDK default 1.0.0, so a deployed gateway cannot be correlated
|
||||||
to a release). Kept at 0.1.2 to match the Contracts package and the aligned Python/Rust/
|
to a release). Server/Worker/Tests stay at this default. CLI-39 (2026-08-07) moved the
|
||||||
Go clients; the Java client leads at 0.2.0 after its JDK-17 retarget. The git short SHA is
|
published `ZB.MOM.WW.MxGateway.Contracts` and `.Client` nuget packages to 0.2.0 via an
|
||||||
appended to InformationalVersion (0.1.2+<sha>) so support can map a running binary to a
|
explicit <Version> override in Contracts.csproj (MSBuild property-last-write-wins over
|
||||||
commit; the query is guarded so a build outside a git checkout still succeeds. -->
|
this Directory.Build.props default) — Server/Worker assembly stamping and the published
|
||||||
|
client packages are deliberately decoupled; a broader 0.2.0 alignment for Server/Worker
|
||||||
|
is a separate, not-yet-made decision. The git short SHA is appended to
|
||||||
|
InformationalVersion (0.1.2+<sha>) so support can map a running binary to a commit; the
|
||||||
|
query is guarded so a build outside a git checkout still succeeds. -->
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>0.1.2</Version>
|
<Version>0.1.2</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|||||||
@@ -22796,6 +22796,12 @@ namespace ZB.MOM.WW.MxGateway.Contracts.Proto {
|
|||||||
private static readonly pb::FieldCodec<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent> _repeated_events_codec
|
private static readonly pb::FieldCodec<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent> _repeated_events_codec
|
||||||
= pb::FieldCodec.ForMessage(10, global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent.Parser);
|
= pb::FieldCodec.ForMessage(10, global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent.Parser);
|
||||||
private readonly pbc::RepeatedField<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent> events_ = new pbc::RepeatedField<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent>();
|
private readonly pbc::RepeatedField<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent> events_ = new pbc::RepeatedField<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent>();
|
||||||
|
/// <summary>
|
||||||
|
/// The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
/// worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
/// `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
/// empty reply.
|
||||||
|
/// </summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||||
public pbc::RepeatedField<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent> Events {
|
public pbc::RepeatedField<global::ZB.MOM.WW.MxGateway.Contracts.Proto.MxEvent> Events {
|
||||||
@@ -24510,6 +24516,11 @@ namespace ZB.MOM.WW.MxGateway.Contracts.Proto {
|
|||||||
/// after_worker_sequence = oldest_available_sequence - 1 in the next
|
/// after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
/// StreamEventsRequest, which will cause the server to replay starting at
|
/// StreamEventsRequest, which will cause the server to replay starting at
|
||||||
/// oldest_available_sequence (the first retained event).
|
/// oldest_available_sequence (the first retained event).
|
||||||
|
/// When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
/// that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
/// formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
/// follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
/// passes. The interval evicted is unchanged.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||||
|
|||||||
@@ -1164,6 +1164,9 @@ namespace ZB.MOM.WW.MxGateway.Contracts.Proto {
|
|||||||
/// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
/// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
/// "use the worker's built-in default". Sits above the public gRPC cap by an
|
/// "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
/// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
/// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
/// Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
/// including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
/// to fit rather than emit an oversized frame.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
|
||||||
|
|||||||
@@ -676,6 +676,10 @@ message WorkerInfoReply {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message DrainEventsReply {
|
message DrainEventsReply {
|
||||||
|
// The reply is bounded by both a server-side count cap and the negotiated
|
||||||
|
// worker-frame byte cap; a reply may therefore carry fewer events than
|
||||||
|
// `max_events` and fewer than are queued. Callers drain iteratively until an
|
||||||
|
// empty reply.
|
||||||
repeated MxEvent events = 1;
|
repeated MxEvent events = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -760,6 +764,11 @@ message ReplayGap {
|
|||||||
// after_worker_sequence = oldest_available_sequence - 1 in the next
|
// after_worker_sequence = oldest_available_sequence - 1 in the next
|
||||||
// StreamEventsRequest, which will cause the server to replay starting at
|
// StreamEventsRequest, which will cause the server to replay starting at
|
||||||
// oldest_available_sequence (the first retained event).
|
// oldest_available_sequence (the first retained event).
|
||||||
|
// When nothing is retained (the replay ring is empty), this is the next sequence
|
||||||
|
// that can be delivered — `highest observed + 1` — and the `oldest - 1` resume
|
||||||
|
// formula remains valid: it resolves to the highest sequence already seen, so the
|
||||||
|
// follow-up resume replays nothing, reports no gap, and every newer live event
|
||||||
|
// passes. The interval evicted is unchanged.
|
||||||
uint64 oldest_available_sequence = 2;
|
uint64 oldest_available_sequence = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,9 @@ message GatewayHello {
|
|||||||
// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
// instead of a hard-coded default; 0 (an older gateway that never set the field) means
|
||||||
// "use the worker's built-in default". Sits above the public gRPC cap by an
|
// "use the worker's built-in default". Sits above the public gRPC cap by an
|
||||||
// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
// envelope-overhead margin so an accepted gRPC payload always fits one worker frame.
|
||||||
|
// Every worker->gateway frame — events, heartbeats, faults, and control replies
|
||||||
|
// including DrainEvents — must serialize within this limit; reply builders truncate
|
||||||
|
// to fit rather than emit an oversized frame.
|
||||||
uint32 max_frame_bytes = 4;
|
uint32 max_frame_bytes = 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<IsPackable>true</IsPackable>
|
<IsPackable>true</IsPackable>
|
||||||
<PackageId>ZB.MOM.WW.MxGateway.Contracts</PackageId>
|
<PackageId>ZB.MOM.WW.MxGateway.Contracts</PackageId>
|
||||||
<Version>0.1.2</Version>
|
<Version>0.2.0</Version>
|
||||||
<Authors>Joseph Doherty</Authors>
|
<Authors>Joseph Doherty</Authors>
|
||||||
<Company>ZB MOM WW</Company>
|
<Company>ZB MOM WW</Company>
|
||||||
<Copyright>Copyright (c) ZB MOM WW. All rights reserved.</Copyright>
|
<Copyright>Copyright (c) ZB MOM WW. All rights reserved.</Copyright>
|
||||||
|
|||||||
@@ -145,7 +145,12 @@ public sealed class GatewayOptionsValidator : OptionsValidatorBase<GatewayOption
|
|||||||
builder);
|
builder);
|
||||||
AddIfBlank(
|
AddIfBlank(
|
||||||
options.ServiceAccountPassword,
|
options.ServiceAccountPassword,
|
||||||
"MxGateway:Ldap:ServiceAccountPassword is required when LDAP login is enabled.",
|
"MxGateway:Ldap:ServiceAccountPassword is required when LDAP login is enabled. "
|
||||||
|
+ "Never commit it: on dev boxes set user-secrets "
|
||||||
|
+ "(dotnet user-secrets set \"MxGateway:Ldap:ServiceAccountPassword\" <value>); "
|
||||||
|
+ "on deployed hosts set the environment variable "
|
||||||
|
+ "MxGateway__Ldap__ServiceAccountPassword. "
|
||||||
|
+ "(appsettings.json ships the ${secret:ldap/mxgateway/bind} store reference as the default.)",
|
||||||
builder);
|
builder);
|
||||||
AddIfBlank(
|
AddIfBlank(
|
||||||
options.UserNameAttribute,
|
options.UserNameAttribute,
|
||||||
|
|||||||
@@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net10.0</TargetFramework>
|
<TargetFramework>net10.0</TargetFramework>
|
||||||
|
<!-- Dev-box channel for MxGateway:Ldap:ServiceAccountPassword (SEC-36): user-secrets
|
||||||
|
are loaded automatically in the Development environment and live under the user
|
||||||
|
profile, outside the tree, so the shared GLAuth bind credential is never committed. -->
|
||||||
|
<UserSecretsId>mxaccessgw-server</UserSecretsId>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -757,9 +757,15 @@ public sealed class GatewayOptionsValidatorTests
|
|||||||
new LdapOptions { Enabled = true, ServiceAccountPassword = string.Empty });
|
new LdapOptions { Enabled = true, ServiceAccountPassword = string.Empty });
|
||||||
ValidateOptionsResult result = new GatewayOptionsValidator().Validate(null, options);
|
ValidateOptionsResult result = new GatewayOptionsValidator().Validate(null, options);
|
||||||
Assert.True(result.Failed);
|
Assert.True(result.Failed);
|
||||||
Assert.Contains(
|
string failure = Assert.Single(
|
||||||
result.Failures!,
|
result.Failures!,
|
||||||
f => f.Contains("MxGateway:Ldap:ServiceAccountPassword is required when LDAP login is enabled."));
|
f => f.Contains("MxGateway:Ldap:ServiceAccountPassword is required when LDAP login is enabled."));
|
||||||
|
|
||||||
|
// SEC-36: the message must steer the operator to the two supported out-of-band channels
|
||||||
|
// (dev user-secrets, deployed env var) so a blanked/unresolved credential never gets
|
||||||
|
// "fixed" by re-committing a value.
|
||||||
|
Assert.Contains("dotnet user-secrets set", failure);
|
||||||
|
Assert.Contains("MxGateway__Ldap__ServiceAccountPassword", failure);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static GatewayOptions WithSecurity(SecurityOptions security)
|
private static GatewayOptions WithSecurity(SecurityOptions security)
|
||||||
|
|||||||
@@ -72,18 +72,33 @@ public sealed class ClientBehaviorFixtureTests
|
|||||||
|
|
||||||
foreach (JsonElement fixture in fixtures)
|
foreach (JsonElement fixture in fixtures)
|
||||||
{
|
{
|
||||||
|
string fixtureId = GetFixtureId(fixture);
|
||||||
MxCommandReply reply = ParseFixture<MxCommandReply>(
|
MxCommandReply reply = ParseFixture<MxCommandReply>(
|
||||||
fixture,
|
fixture,
|
||||||
MxCommandReply.Parser);
|
MxCommandReply.Parser);
|
||||||
|
|
||||||
|
// Universal invariants: every command-reply fixture parses to a concrete
|
||||||
|
// command kind and a concrete protocol status, regardless of what MXAccess
|
||||||
|
// reply detail (if any) it carries.
|
||||||
Assert.NotEqual(MxCommandKind.Unspecified, reply.Kind);
|
Assert.NotEqual(MxCommandKind.Unspecified, reply.Kind);
|
||||||
Assert.NotEqual(ProtocolStatusCode.Unspecified, reply.ProtocolStatus.Code);
|
Assert.NotEqual(ProtocolStatusCode.Unspecified, reply.ProtocolStatus.Code);
|
||||||
Assert.True(reply.HasHresult, $"Fixture '{GetFixtureId(fixture)}' must carry an HRESULT.");
|
|
||||||
|
// The malformed-reply and credential-redaction fixtures
|
||||||
|
// (command-reply.authenticate-user.*) deliberately omit hresult, statuses,
|
||||||
|
// and/or return_value to exercise the "absent detail" contract paths — see
|
||||||
|
// docs/ClientBehaviorFixtures.md. The strict MXAccess-reply-detail
|
||||||
|
// invariants below apply only to fixtures that carry that detail.
|
||||||
|
if (fixtureId.StartsWith("command-reply.authenticate-user.", StringComparison.Ordinal))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Assert.True(reply.HasHresult, $"Fixture '{fixtureId}' must carry an HRESULT.");
|
||||||
Assert.NotEmpty(reply.Statuses);
|
Assert.NotEmpty(reply.Statuses);
|
||||||
Assert.NotEqual(MxDataType.Unspecified, reply.ReturnValue.DataType);
|
Assert.NotEqual(MxDataType.Unspecified, reply.ReturnValue.DataType);
|
||||||
Assert.True(
|
Assert.True(
|
||||||
reply.ReturnValue.KindCase != MxValue.KindOneofCase.None || reply.ReturnValue.IsNull,
|
reply.ReturnValue.KindCase != MxValue.KindOneofCase.None || reply.ReturnValue.IsNull,
|
||||||
$"Fixture '{GetFixtureId(fixture)}' must carry a typed value, raw value, or explicit null.");
|
$"Fixture '{fixtureId}' must carry a typed value, raw value, or explicit null.");
|
||||||
}
|
}
|
||||||
|
|
||||||
MxCommandReply failedWrite = ParseFixture<MxCommandReply>(
|
MxCommandReply failedWrite = ParseFixture<MxCommandReply>(
|
||||||
|
|||||||
@@ -3,22 +3,24 @@ using Google.Protobuf;
|
|||||||
using Google.Protobuf.Reflection;
|
using Google.Protobuf.Reflection;
|
||||||
using ZB.MOM.WW.MxGateway.Contracts;
|
using ZB.MOM.WW.MxGateway.Contracts;
|
||||||
using ZB.MOM.WW.MxGateway.Contracts.Proto;
|
using ZB.MOM.WW.MxGateway.Contracts.Proto;
|
||||||
|
using ZB.MOM.WW.MxGateway.Contracts.Proto.Galaxy;
|
||||||
|
|
||||||
namespace ZB.MOM.WW.MxGateway.Tests.Contracts;
|
namespace ZB.MOM.WW.MxGateway.Tests.Contracts;
|
||||||
|
|
||||||
public sealed class ClientProtoInputTests
|
public sealed class ClientProtoInputTests
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Guards the published client descriptor set against silent staleness. Every message
|
/// Guards the published client descriptor set against silent staleness. Every message,
|
||||||
/// and field compiled into the in-process contract (which the build regenerates from the current
|
/// field, enum, enum value, service, and method compiled into the in-process contract
|
||||||
/// <c>.proto</c> sources) must appear in the committed protoset. A missing symbol means the
|
/// (which the build regenerates from the current <c>.proto</c> sources) must appear in the
|
||||||
/// descriptor was not regenerated after a proto change; run
|
/// committed protoset. A missing symbol means the descriptor was not regenerated after a
|
||||||
/// <c>scripts/publish-client-proto-inputs.ps1</c> and commit the refreshed protoset.
|
/// proto change; run <c>scripts/publish-client-proto-inputs.ps1</c> and commit the
|
||||||
|
/// refreshed protoset.
|
||||||
/// The check is semantic (symbol presence) rather than byte-wise, so it is independent of protoc
|
/// The check is semantic (symbol presence) rather than byte-wise, so it is independent of protoc
|
||||||
/// version and does not require protoc on the test runner.
|
/// version and does not require protoc on the test runner.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Fact]
|
[Fact]
|
||||||
public void Descriptor_ContainsEveryContractMessageAndField()
|
public void Descriptor_ContainsEveryContractSymbol()
|
||||||
{
|
{
|
||||||
DirectoryInfo repositoryRoot = FindRepositoryRoot();
|
DirectoryInfo repositoryRoot = FindRepositoryRoot();
|
||||||
string descriptorPath = Path.Combine(
|
string descriptorPath = Path.Combine(
|
||||||
@@ -34,20 +36,65 @@ public sealed class ClientProtoInputTests
|
|||||||
|
|
||||||
HashSet<string> publishedMessages = new(StringComparer.Ordinal);
|
HashSet<string> publishedMessages = new(StringComparer.Ordinal);
|
||||||
HashSet<string> publishedFields = new(StringComparer.Ordinal);
|
HashSet<string> publishedFields = new(StringComparer.Ordinal);
|
||||||
|
HashSet<string> publishedEnums = new(StringComparer.Ordinal);
|
||||||
|
HashSet<string> publishedServices = new(StringComparer.Ordinal);
|
||||||
foreach (FileDescriptorProto file in descriptorSet.File)
|
foreach (FileDescriptorProto file in descriptorSet.File)
|
||||||
{
|
{
|
||||||
foreach (DescriptorProto message in file.MessageType)
|
foreach (DescriptorProto message in file.MessageType)
|
||||||
{
|
{
|
||||||
CollectPublishedSymbols(file.Package, message, publishedMessages, publishedFields);
|
CollectPublishedSymbols(file.Package, message, publishedMessages, publishedFields, publishedEnums);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (EnumDescriptorProto enumType in file.EnumType)
|
||||||
|
{
|
||||||
|
CollectPublishedEnumSymbols(file.Package, enumType, publishedEnums);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (ServiceDescriptorProto service in file.Service)
|
||||||
|
{
|
||||||
|
string serviceFullName = string.IsNullOrEmpty(file.Package) ? service.Name : file.Package + "." + service.Name;
|
||||||
|
publishedServices.Add(serviceFullName);
|
||||||
|
foreach (MethodDescriptorProto method in service.Method)
|
||||||
|
{
|
||||||
|
publishedServices.Add(serviceFullName + "/" + method.Name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
List<string> missing = [];
|
List<string> missing = [];
|
||||||
foreach (FileDescriptor file in new[] { MxaccessGatewayReflection.Descriptor, MxaccessWorkerReflection.Descriptor })
|
FileDescriptor[] contractFiles =
|
||||||
|
[
|
||||||
|
MxaccessGatewayReflection.Descriptor,
|
||||||
|
MxaccessWorkerReflection.Descriptor,
|
||||||
|
GalaxyRepositoryReflection.Descriptor,
|
||||||
|
];
|
||||||
|
foreach (FileDescriptor file in contractFiles)
|
||||||
{
|
{
|
||||||
foreach (MessageDescriptor message in file.MessageTypes)
|
foreach (MessageDescriptor message in file.MessageTypes)
|
||||||
{
|
{
|
||||||
CollectMissingContractSymbols(message, publishedMessages, publishedFields, missing);
|
CollectMissingContractSymbols(message, publishedMessages, publishedFields, publishedEnums, missing);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (EnumDescriptor enumType in file.EnumTypes)
|
||||||
|
{
|
||||||
|
CollectMissingEnumSymbols(enumType, publishedEnums, missing);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (ServiceDescriptor service in file.Services)
|
||||||
|
{
|
||||||
|
if (!publishedServices.Contains(service.FullName))
|
||||||
|
{
|
||||||
|
missing.Add(service.FullName);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (MethodDescriptor method in service.Methods)
|
||||||
|
{
|
||||||
|
string key = service.FullName + "/" + method.Name;
|
||||||
|
if (!publishedServices.Contains(key))
|
||||||
|
{
|
||||||
|
missing.Add(key);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,7 +109,8 @@ public sealed class ClientProtoInputTests
|
|||||||
string package,
|
string package,
|
||||||
DescriptorProto message,
|
DescriptorProto message,
|
||||||
HashSet<string> messages,
|
HashSet<string> messages,
|
||||||
HashSet<string> fields)
|
HashSet<string> fields,
|
||||||
|
HashSet<string> enums)
|
||||||
{
|
{
|
||||||
string fullName = string.IsNullOrEmpty(package) ? message.Name : package + "." + message.Name;
|
string fullName = string.IsNullOrEmpty(package) ? message.Name : package + "." + message.Name;
|
||||||
messages.Add(fullName);
|
messages.Add(fullName);
|
||||||
@@ -74,7 +122,26 @@ public sealed class ClientProtoInputTests
|
|||||||
|
|
||||||
foreach (DescriptorProto nested in message.NestedType)
|
foreach (DescriptorProto nested in message.NestedType)
|
||||||
{
|
{
|
||||||
CollectPublishedSymbols(fullName, nested, messages, fields);
|
CollectPublishedSymbols(fullName, nested, messages, fields, enums);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (EnumDescriptorProto enumType in message.EnumType)
|
||||||
|
{
|
||||||
|
CollectPublishedEnumSymbols(fullName, enumType, enums);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CollectPublishedEnumSymbols(
|
||||||
|
string containingScope,
|
||||||
|
EnumDescriptorProto enumType,
|
||||||
|
HashSet<string> enums)
|
||||||
|
{
|
||||||
|
string enumFullName = string.IsNullOrEmpty(containingScope) ? enumType.Name : containingScope + "." + enumType.Name;
|
||||||
|
enums.Add(enumFullName);
|
||||||
|
|
||||||
|
foreach (EnumValueDescriptorProto value in enumType.Value)
|
||||||
|
{
|
||||||
|
enums.Add(enumFullName + "/" + value.Name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,6 +149,7 @@ public sealed class ClientProtoInputTests
|
|||||||
MessageDescriptor message,
|
MessageDescriptor message,
|
||||||
HashSet<string> publishedMessages,
|
HashSet<string> publishedMessages,
|
||||||
HashSet<string> publishedFields,
|
HashSet<string> publishedFields,
|
||||||
|
HashSet<string> publishedEnums,
|
||||||
List<string> missing)
|
List<string> missing)
|
||||||
{
|
{
|
||||||
if (!publishedMessages.Contains(message.FullName))
|
if (!publishedMessages.Contains(message.FullName))
|
||||||
@@ -100,7 +168,32 @@ public sealed class ClientProtoInputTests
|
|||||||
|
|
||||||
foreach (MessageDescriptor nested in message.NestedTypes)
|
foreach (MessageDescriptor nested in message.NestedTypes)
|
||||||
{
|
{
|
||||||
CollectMissingContractSymbols(nested, publishedMessages, publishedFields, missing);
|
CollectMissingContractSymbols(nested, publishedMessages, publishedFields, publishedEnums, missing);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (EnumDescriptor enumType in message.EnumTypes)
|
||||||
|
{
|
||||||
|
CollectMissingEnumSymbols(enumType, publishedEnums, missing);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void CollectMissingEnumSymbols(
|
||||||
|
EnumDescriptor enumType,
|
||||||
|
HashSet<string> publishedEnums,
|
||||||
|
List<string> missing)
|
||||||
|
{
|
||||||
|
if (!publishedEnums.Contains(enumType.FullName))
|
||||||
|
{
|
||||||
|
missing.Add(enumType.FullName);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (EnumValueDescriptor value in enumType.Values)
|
||||||
|
{
|
||||||
|
string key = enumType.FullName + "/" + value.Name;
|
||||||
|
if (!publishedEnums.Contains(key))
|
||||||
|
{
|
||||||
|
missing.Add(key);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user