mirror of https://github.com/mongodb/mongo
82 lines
1.9 KiB
JavaScript
82 lines
1.9 KiB
JavaScript
/**
|
|
* Verify the KMS support handles a buggy Key Store
|
|
*/
|
|
import {CA_CERT, SERVER_CERT} from "jstests/ssl/libs/ssl_helpers.js";
|
|
|
|
const x509_options = {
|
|
sslMode: "requireSSL",
|
|
sslPEMKeyFile: SERVER_CERT,
|
|
sslCAFile: CA_CERT,
|
|
};
|
|
|
|
const conn = MongoRunner.runMongod(x509_options);
|
|
const test = conn.getDB("test");
|
|
const collection = test.coll;
|
|
|
|
let localKMS = {
|
|
key: BinData(
|
|
0,
|
|
"tu9jUCBqZdwCelwE/EAm/4WqdxrSMi04B8e9uAV+m30rI1J2nhKZZtQjdvsSCwuI4erR6IEcEK+5eGUAODv43NDNIR9QheT2edWFewUfHKsl9cnzTc86meIzOmYl6drp",
|
|
),
|
|
};
|
|
|
|
const clientSideFLEOptions = {
|
|
kmsProviders: {
|
|
local: localKMS,
|
|
},
|
|
keyVaultNamespace: "test.coll",
|
|
schemaMap: {},
|
|
};
|
|
|
|
function testFault(kmsType, func) {
|
|
collection.drop();
|
|
|
|
const shell = Mongo(conn.host, clientSideFLEOptions);
|
|
const keyVault = shell.getKeyVault();
|
|
|
|
keyVault.createKey(kmsType, "arn:aws:kms:us-east-1:fake:fake:fake", ["mongoKey"]);
|
|
const keyId = keyVault.getKeyByAltName("mongoKey").toArray()[0]._id;
|
|
|
|
func(keyId, shell);
|
|
}
|
|
|
|
function testFaults(func) {
|
|
const kmsTypes = ["local"];
|
|
|
|
for (const kmsType of kmsTypes) {
|
|
testFault(kmsType, func);
|
|
}
|
|
}
|
|
|
|
// Negative - drop the key vault collection
|
|
testFaults((keyId, shell) => {
|
|
collection.drop();
|
|
|
|
const str = "mongo";
|
|
assert.throws(() => {
|
|
shell.getClientEncryption().encrypt(keyId, str);
|
|
});
|
|
});
|
|
|
|
// Negative - delete the keys
|
|
testFaults((keyId, shell) => {
|
|
collection.deleteMany({});
|
|
|
|
const str = "mongo";
|
|
assert.throws(() => {
|
|
shell.getClientEncryption().encrypt(keyId, str);
|
|
});
|
|
});
|
|
|
|
// Negative - corrupt the master key with an unkown provider
|
|
testFaults((keyId, shell) => {
|
|
collection.updateMany({}, {$set: {"masterKey.provider": "fake"}});
|
|
|
|
const str = "mongo";
|
|
assert.throws(() => {
|
|
shell.getClientEncryption().encrypt(keyId, str);
|
|
});
|
|
});
|
|
|
|
MongoRunner.stopMongod(conn);
|