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
|
# frozen_string_literal: true
# rubocop:todo all
require 'spec_helper'
require 'runners/crud'
require 'runners/transactions'
SPECS_IGNORING_BSON_TYPES = %w[ fle2v2-CreateCollection.yml ]
# expect bson types for all specs EXCEPT those mentioned in
# SPECS_IGNORING_BSON_TYPES
EXPECTATIONS_BSON_TYPES = -> (test) { !SPECS_IGNORING_BSON_TYPES.include?(test.spec.description) }
describe 'Client-Side Encryption' do
require_libmongocrypt
require_enterprise
min_libmongocrypt_version '1.8.0'
context 'with mongocryptd' do
SpecConfig.instance.without_crypt_shared_lib_path do
define_transactions_spec_tests(CLIENT_SIDE_ENCRYPTION_TESTS, expectations_bson_types: EXPECTATIONS_BSON_TYPES)
end
end
context 'with crypt_shared' do
# Under JRuby+Evergreen, these specs complain about the crypt_shared
# library not loading; however, crypt_shared appears to load for other
# specs that require it (see the client_side_encryption_unified_spec and
# mongocryptd_prose_spec tests).
fails_on_jruby
SpecConfig.instance.require_crypt_shared do
define_transactions_spec_tests(CLIENT_SIDE_ENCRYPTION_TESTS, expectations_bson_types: EXPECTATIONS_BSON_TYPES)
end
end
end
|