1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
describe 'Client-Side Encryption' do
describe 'Prose tests: Data key and double encryption' do
require_libmongocrypt
require_enterprise
min_server_fcv '4.2'
include_context 'define shared FLE helpers'
let(:subscriber) { Mrss::EventSubscriber.new }
let(:client) do
new_local_client(
SpecConfig.instance.addresses,
SpecConfig.instance.test_options
).tap do |client|
client.subscribe(Mongo::Monitoring::COMMAND, subscriber)
end
end
let(:test_schema_map) do
{
"db.coll": {
"bsonType": "object",
"properties": {
"encrypted_placeholder": {
"encrypt": {
"keyId": "/placeholder",
"bsonType": "string",
"algorithm": "AEAD_AES_256_CBC_HMAC_SHA_512-Random"
}
}
}
}
}
end
let(:client_encrypted) do
new_local_client(
SpecConfig.instance.addresses,
SpecConfig.instance.test_options.merge(
auto_encryption_options: {
kms_providers: {
local: { key: local_master_key },
aws: {
access_key_id: SpecConfig.instance.fle_aws_key,
secret_access_key: SpecConfig.instance.fle_aws_secret,
},
azure: {
tenant_id: SpecConfig.instance.fle_azure_tenant_id,
client_id: SpecConfig.instance.fle_azure_client_id,
client_secret: SpecConfig.instance.fle_azure_client_secret,
},
gcp: {
email: SpecConfig.instance.fle_gcp_email,
private_key: SpecConfig.instance.fle_gcp_private_key,
},
kmip: {
endpoint: SpecConfig.instance.fle_kmip_endpoint
}
},
kms_tls_options: {
kmip: {
ssl_ca_cert: SpecConfig.instance.fle_kmip_tls_ca_file,
ssl_cert: SpecConfig.instance.fle_kmip_tls_certificate_key_file,
ssl_key: SpecConfig.instance.fle_kmip_tls_certificate_key_file,
}
},
key_vault_namespace: 'keyvault.datakeys',
schema_map: test_schema_map,
# Spawn mongocryptd on non-default port for sharded cluster tests
extra_options: extra_options,
},
database: 'db',
)
)
end
let(:client_encryption) do
Mongo::ClientEncryption.new(
client,
{
kms_providers: {
local: { key: local_master_key },
aws: {
access_key_id: SpecConfig.instance.fle_aws_key,
secret_access_key: SpecConfig.instance.fle_aws_secret,
},
azure: {
tenant_id: SpecConfig.instance.fle_azure_tenant_id,
client_id: SpecConfig.instance.fle_azure_client_id,
client_secret: SpecConfig.instance.fle_azure_client_secret,
},
gcp: {
email: SpecConfig.instance.fle_gcp_email,
private_key: SpecConfig.instance.fle_gcp_private_key,
},
kmip: {
endpoint: SpecConfig.instance.fle_kmip_endpoint
}
},
kms_tls_options: {
kmip: {
ssl_ca_cert: SpecConfig.instance.fle_kmip_tls_ca_file,
ssl_cert: SpecConfig.instance.fle_kmip_tls_certificate_key_file,
ssl_key: SpecConfig.instance.fle_kmip_tls_certificate_key_file,
}
},
key_vault_namespace: 'keyvault.datakeys',
},
)
end
before do
client.use('keyvault')['datakeys'].drop
client.use('db')['coll'].drop
end
shared_examples 'can create and use a data key' do
it 'creates a data key and uses it for encryption' do
data_key_id = client_encryption.create_data_key(
kms_provider_name,
data_key_options.merge(key_alt_names: [key_alt_name])
)
expect(data_key_id).to be_uuid
keys = client.use('keyvault')['datakeys'].find(_id: data_key_id)
expect(keys.count).to eq(1)
expect(keys.first['masterKey']['provider']).to eq(kms_provider_name)
command_started_event = subscriber.started_events.find do |event|
event.command_name == 'find'
end
expect(command_started_event).not_to be_nil
encrypted = client_encryption.encrypt(
value_to_encrypt,
{
key_id: data_key_id,
algorithm: 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'
}
)
expect(encrypted).to be_ciphertext
client_encrypted['coll'].insert_one(
_id: kms_provider_name,
value: encrypted,
)
document = client_encrypted['coll'].find(_id: kms_provider_name).first
expect(document['value']).to eq(value_to_encrypt)
encrypted_with_alt_name = client_encryption.encrypt(
value_to_encrypt,
{
key_alt_name: key_alt_name,
algorithm: 'AEAD_AES_256_CBC_HMAC_SHA_512-Deterministic'
}
)
expect(encrypted_with_alt_name).to be_ciphertext
expect(encrypted_with_alt_name).to eq(encrypted)
expect do
client_encrypted['coll'].insert_one(encrypted_placeholder: encrypted)
end.to raise_error(Mongo::Error::OperationFailure, /Cannot encrypt element of type(: encrypted binary data| binData)/)
end
end
context 'with local KMS options' do
include_context 'with local kms_providers'
let(:key_alt_name) { 'local_altname' }
let(:data_key_options) { {} }
let(:value_to_encrypt) { 'hello local' }
it_behaves_like 'can create and use a data key'
end
context 'with AWS KMS options' do
include_context 'with AWS kms_providers'
let(:key_alt_name) { 'aws_altname' }
let(:value_to_encrypt) { 'hello aws' }
let(:data_key_options) do
{
master_key: {
region: SpecConfig.instance.fle_aws_region,
key: SpecConfig.instance.fle_aws_arn,
}
}
end
it_behaves_like 'can create and use a data key'
end
context 'with Azure KMS options' do
include_context 'with Azure kms_providers'
let(:key_alt_name) { 'azure_altname' }
let(:value_to_encrypt) { 'hello azure' }
let(:data_key_options) do
{
master_key: {
key_vault_endpoint: SpecConfig.instance.fle_azure_key_vault_endpoint,
key_name: SpecConfig.instance.fle_azure_key_name,
}
}
end
it_behaves_like 'can create and use a data key'
end
context 'with GCP KMS options' do
include_context 'with GCP kms_providers'
let(:key_alt_name) { 'gcp_altname' }
let(:value_to_encrypt) { 'hello gcp' }
let(:data_key_options) do
{
master_key: {
project_id: SpecConfig.instance.fle_gcp_project_id,
location: SpecConfig.instance.fle_gcp_location,
key_ring: SpecConfig.instance.fle_gcp_key_ring,
key_name: SpecConfig.instance.fle_gcp_key_name,
}
}
end
it_behaves_like 'can create and use a data key'
end
context 'with KMIP KMS options' do
include_context 'with KMIP kms_providers'
let(:key_alt_name) { 'kmip_altname' }
let(:value_to_encrypt) { 'hello kmip' }
let(:data_key_options) do
{
master_key: {
key_id: "1"
}
}
end
it_behaves_like 'can create and use a data key'
end
end
end
|