|
34 | 34 | "coverage": "run-s coverage-*", |
35 | 35 | "report-coverage": "nyc report --extension .ts --check-coverage -r html", |
36 | 36 | "test": "npm run build && npm run coverage", |
37 | | - "integration-browser-decrypt": "npm run build; integration-browser decrypt -v aws-encryption-sdk-test-vectors/vectors/awses-decrypt/python-2.3.0.zip --karma -c cpu", |
38 | | - "integration-browser-encrypt": "npm run build; integration-browser encrypt -m https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0003-awses-message-encryption.v1.json -k https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0002-keys.v1.json -o https://xi1mwx3ttb.execute-api.us-west-2.amazonaws.com/api/v0/decrypt --karma -c cpu", |
| 37 | + "integration-browser-decrypt": "npm run build; . util/integration-test-vectors.sh && integration-browser decrypt -v $LOCAL_TEST_VECTORS --karma -c cpu", |
| 38 | + "integration-browser-encrypt": "npm run build; . util/integration-test-vectors.sh && integration-browser encrypt -m $ENCRYPT_MANIFEST_LIST -k $ENCRYPT_KEY_MANIFEST -o $DECRYPT_ORACLE --karma -c cpu", |
39 | 39 | "browser-integration": "run-s integration-browser-*", |
40 | | - "integration-node-decrypt": "npm run build; integration-node decrypt -v aws-encryption-sdk-test-vectors/vectors/awses-decrypt/python-2.3.0.zip -c cpu", |
41 | | - "integration-node-decrypt-legacy": "node --security-revert=CVE-2023-46809 ./modules/integration-node/build/main/src/cli.js decrypt -v aws-encryption-sdk-test-vectors/vectors/awses-decrypt/python-2.3.0.zip -c cpu --CVE-2023-46809", |
42 | | - "integration-node-encrypt": "npm run build; integration-node encrypt -m https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0003-awses-message-encryption.v1.json -k https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0002-keys.v1.json -o https://xi1mwx3ttb.execute-api.us-west-2.amazonaws.com/api/v0/decrypt -c cpu", |
| 40 | + "integration-node-decrypt": "npm run build; . util/integration-test-vectors.sh && integration-node decrypt -v $LOCAL_TEST_VECTORS -c cpu", |
| 41 | + "integration-node-decrypt-legacy": ". util/integration-test-vectors.sh && node --security-revert=CVE-2023-46809 ./modules/integration-node/build/main/src/cli.js decrypt -v $LOCAL_TEST_VECTORS -c cpu --CVE-2023-46809", |
| 42 | + "integration-node-encrypt": "npm run build; . util/integration-test-vectors.sh && integration-node encrypt -m $ENCRYPT_MANIFEST_LIST -k $ENCRYPT_KEY_MANIFEST -o $DECRYPT_ORACLE -c cpu", |
43 | 43 | "node-integration": "run-s integration-node-*", |
44 | 44 | "integration": "run-s integration-*", |
45 | 45 | "verdaccio": "run-s verdaccio-*", |
46 | 46 | "verdaccio-publish": "./util/local_verdaccio_publish", |
47 | | - "verdaccio-browser-decrypt": "./util/npx_verdaccio @aws-crypto/integration-browser decrypt -v $PWD/aws-encryption-sdk-test-vectors/vectors/awses-decrypt/python-2.3.0.zip --karma -c cpu", |
48 | | - "verdaccio-browser-encrypt": "./util/npx_verdaccio @aws-crypto/integration-browser encrypt -m https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0003-awses-message-encryption.v1.json -k https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0002-keys.v1.json -o https://xi1mwx3ttb.execute-api.us-west-2.amazonaws.com/api/v0/decrypt --karma -c cpu", |
49 | | - "verdaccio-node-decrypt": "./util/npx_verdaccio @aws-crypto/integration-node decrypt -v $PWD/aws-encryption-sdk-test-vectors/vectors/awses-decrypt/python-2.3.0.zip -c cpu", |
50 | | - "verdaccio-node-encrypt": "./util/npx_verdaccio @aws-crypto/integration-node encrypt -m https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0003-awses-message-encryption.v1.json -k https://raw.githubusercontent.com/awslabs/aws-crypto-tools-test-vector-framework/master/features/CANONICAL-GENERATED-MANIFESTS/0002-keys.v1.json -o https://xi1mwx3ttb.execute-api.us-west-2.amazonaws.com/api/v0/decrypt -c cpu", |
| 47 | + "verdaccio-browser-decrypt": ". util/integration-test-vectors.sh && ./util/npx_verdaccio @aws-crypto/integration-browser decrypt -v $PWD/$LOCAL_TEST_VECTORS --karma -c cpu", |
| 48 | + "verdaccio-browser-encrypt": ". util/integration-test-vectors.sh && ./util/npx_verdaccio @aws-crypto/integration-browser encrypt -m $ENCRYPT_MANIFEST_LIST -k $ENCRYPT_KEY_MANIFEST -o $DECRYPT_ORACLE --karma -c cpu", |
| 49 | + "verdaccio-node-decrypt": ". util/integration-test-vectors.sh && ./util/npx_verdaccio @aws-crypto/integration-node decrypt -v $PWD/$LOCAL_TEST_VECTORS -c cpu", |
| 50 | + "verdaccio-node-encrypt": ". util/integration-test-vectors.sh && ./util/npx_verdaccio @aws-crypto/integration-node encrypt -m $ENCRYPT_MANIFEST_LIST -k $ENCRYPT_KEY_MANIFEST -o $DECRYPT_ORACLE -c cpu", |
51 | 51 | "test_conditions": "./aws-encryption-sdk-specification/util/test_conditions -s 'modules/**/src/*.ts' -t 'modules/**/test/*.ts' -s 'compliance_exceptions/*.ts'", |
52 | 52 | "duvet-report": "aws-encryption-sdk-specification/util/report.js modules/**/src/**/*.ts modules/**/test/**/*.ts compliance_exceptions/*.ts" |
53 | 53 | }, |
|
0 commit comments