--TEST-- MongoDB\Driver\ClientEncryption::rewrapManyDataKey() when filter matches no keys --SKIPIF-- createClientEncryption([ 'keyVaultNamespace' => CSFLE_KEY_VAULT_NS, 'kmsProviders' => ['local' => ['key' => new MongoDB\BSON\Binary(CSFLE_LOCAL_KEY, 0)]], ]); $keyId = $clientEncryption->createDataKey('local'); $orignalKey = $clientEncryption->getKey($keyId); var_dump($clientEncryption->rewrapManyDataKey(['_id' => 'no-matching-key'])); $modifiedKey = $clientEncryption->getKey($keyId); var_dump($orignalKey->creationDate == $modifiedKey->creationDate); var_dump($orignalKey->updateDate == $modifiedKey->updateDate); var_dump($orignalKey->keyMaterial == $modifiedKey->keyMaterial); ?> ===DONE=== --EXPECTF-- object(stdClass)#%d (%d) { ["bulkWriteResult"]=> NULL } bool(true) bool(true) bool(true) ===DONE===