From 6ed04685882c56736b69d337e66ecab5fd93f101 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Wed, 3 Jun 2026 16:24:24 -0400 Subject: [PATCH] fix(fixtures): correct Java Gradle task name in cross-language smoke matrix The smoke-matrix Java commands used 'gradle :mxgateway-cli:run', but the subproject is ':zb-mom-ww-mxgateway-cli' (settings.gradle). Verbatim execution would fail; CrossLanguageSmokeMatrixTests validates shape only, so CI did not catch it. Resolves audit finding F-10-2. --- .../smoke/cross-language-smoke-matrix.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/clients/proto/fixtures/smoke/cross-language-smoke-matrix.json b/clients/proto/fixtures/smoke/cross-language-smoke-matrix.json index 65cdc11..09eaa92 100644 --- a/clients/proto/fixtures/smoke/cross-language-smoke-matrix.json +++ b/clients/proto/fixtures/smoke/cross-language-smoke-matrix.json @@ -250,31 +250,31 @@ "commands": [ { "operation": "open-session", - "command": "gradle :mxgateway-cli:run --args=\"open-session --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --client-session-name mxgw-java-smoke --json\"" + "command": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"open-session --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --client-session-name mxgw-java-smoke --json\"" }, { "operation": "register", - "command": "gradle :mxgateway-cli:run --args=\"register --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --client-name mxgw-java-smoke --json\"" + "command": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"register --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --client-name mxgw-java-smoke --json\"" }, { "operation": "add-item", - "command": "gradle :mxgateway-cli:run --args=\"add-item --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --server-handle --item TestChildObject.TestInt --json\"" + "command": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"add-item --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --server-handle --item TestChildObject.TestInt --json\"" }, { "operation": "advise", - "command": "gradle :mxgateway-cli:run --args=\"advise --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --server-handle --item-handle --json\"" + "command": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"advise --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --server-handle --item-handle --json\"" }, { "operation": "stream-events", - "command": "gradle :mxgateway-cli:run --args=\"stream-events --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --limit 1 --json\"" + "command": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"stream-events --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --limit 1 --json\"" }, { "operation": "close-session", - "command": "gradle :mxgateway-cli:run --args=\"close-session --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --json\"" + "command": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"close-session --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --json\"" } ], - "optionalWriteCommand": "gradle :mxgateway-cli:run --args=\"write --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --server-handle --item-handle --type int32 --value --json\"", - "bundledSmokeCommand": "gradle :mxgateway-cli:run --args=\"smoke --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --item TestChildObject.TestInt --json\"" + "optionalWriteCommand": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"write --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --session-id --server-handle --item-handle --type int32 --value --json\"", + "bundledSmokeCommand": "gradle :zb-mom-ww-mxgateway-cli:run --args=\"smoke --endpoint localhost:5000 --api-key-env MXGATEWAY_API_KEY --plaintext --item TestChildObject.TestInt --json\"" } ] }