From c0a854e661cf3348e49723d4dc4724f83ba32be8 Mon Sep 17 00:00:00 2001 From: Kess Plasmeier Date: Tue, 4 Aug 2026 20:48:01 +0000 Subject: [PATCH] chore(esdk): split server/feature/bug config into separate files --- test-server/bug-config.json | 6 ++++++ .../{commons-configuration.json => feature-config.json} | 6 ------ test-server/server-config.json | 8 ++++++++ 3 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 test-server/bug-config.json rename test-server/{commons-configuration.json => feature-config.json} (65%) create mode 100644 test-server/server-config.json diff --git a/test-server/bug-config.json b/test-server/bug-config.json new file mode 100644 index 000000000..0dd86cbba --- /dev/null +++ b/test-server/bug-config.json @@ -0,0 +1,6 @@ +[ + "decrypt-accepts-trailing-bytes-commit-key", + "create-client-accepts-reserved-aws-kms-namespace", + "encrypt-accepts-reserved-prefix-encryption-context-key", + "encrypt-mishandles-proto-encryption-context-key" +] diff --git a/test-server/commons-configuration.json b/test-server/feature-config.json similarity index 65% rename from test-server/commons-configuration.json rename to test-server/feature-config.json index c17455c06..d32c5f0bc 100644 --- a/test-server/commons-configuration.json +++ b/test-server/feature-config.json @@ -1,10 +1,4 @@ { - "commonsRepository": { - "name": "aws-crypto-tools-commons", - "url": "git@github.com:aws/aws-crypto-tools-commons.git", - "branch": "lucmcdon/esdk-test-server-all-languages" - }, - "product": "esdk", "supportedFeatures": [ "streaming", "hierarchical", diff --git a/test-server/server-config.json b/test-server/server-config.json new file mode 100644 index 000000000..180128721 --- /dev/null +++ b/test-server/server-config.json @@ -0,0 +1,8 @@ +{ + "commonsRepository": { + "name": "aws-crypto-tools-commons", + "url": "git@github.com:aws/aws-crypto-tools-commons.git", + "branch": "lucmcdon/esdk-test-server-all-languages" + }, + "product": "esdk" +}