(self)
| 1435 | class TestGCPEncryption(AzureGCPEncryptionTestMixin, EncryptionIntegrationTest): |
| 1436 | @unittest.skipUnless(any(GCP_CREDS.values()), "GCP environment credentials are not set") |
| 1437 | def setUp(self): |
| 1438 | self.KMS_PROVIDER_MAP = {"gcp": GCP_CREDS} |
| 1439 | self.DEK = json_data(BASE, "custom", "gcp-dek.json") |
| 1440 | self.SCHEMA_MAP = json_data(BASE, "custom", "azure-gcp-schema.json") |
| 1441 | super().setUp() |
| 1442 | |
| 1443 | def test_explicit(self): |
| 1444 | return self._test_explicit( |