(self)
| 1878 | class TestKmsTLSProse(EncryptionIntegrationTest): |
| 1879 | @unittest.skipUnless(any(AWS_CREDS.values()), "AWS environment credentials are not set") |
| 1880 | def setUp(self): |
| 1881 | super().setUp() |
| 1882 | self.patch_system_certs(CA_PEM) |
| 1883 | self.client_encrypted = self.create_client_encryption( |
| 1884 | {"aws": AWS_CREDS}, "keyvault.datakeys", self.client, OPTS |
| 1885 | ) |
| 1886 | |
| 1887 | def test_invalid_kms_certificate_expired(self): |
| 1888 | key = { |
nothing calls this directly
no test coverage detected