| 255 | }; |
| 256 | |
| 257 | TEST_F(TestEncryptionKeyManagement, WrapLocally) { |
| 258 | this->SetupCryptoFactory(true); |
| 259 | |
| 260 | for (const bool internal_key_material : {false, true}) { |
| 261 | for (const bool double_wrapping : {false, true}) { |
| 262 | for (int encryption_no = 0; encryption_no < 4; encryption_no++) { |
| 263 | this->WriteEncryptedParquetFile(double_wrapping, internal_key_material, |
| 264 | encryption_no); |
| 265 | this->ReadEncryptedParquetFile(double_wrapping, internal_key_material, |
| 266 | encryption_no); |
| 267 | } |
| 268 | } |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | TEST_F(TestEncryptionKeyManagement, WrapOnServer) { |
| 273 | this->SetupCryptoFactory(false); |
nothing calls this directly
no test coverage detected