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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
// Copyright (C) MongoDB, Inc. 2017-present.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
// +build cse
package integration
import (
"os"
"path"
"testing"
)
const (
encryptionSpecName = "client-side-encryption"
)
func verifyClientSideEncryptionVarsSet(t *testing.T) {
t.Helper()
// Existence of temporary AWS credentials (awsTempAccessKeyID, awsTempSessionToken and
// awsTempSessionToken) is verified when the variables are used in json_helpers_test
// because temporary AWS credentials are not always set.
if awsAccessKeyID == "" {
t.Fatal("AWS access key ID not set")
}
if awsSecretAccessKey == "" {
t.Fatal("AWS secret access key not set")
}
if azureTenantID == "" {
t.Fatal("azure tenant ID not set")
}
if azureClientID == "" {
t.Fatal("azure client ID not set")
}
if azureClientSecret == "" {
t.Fatal("azure client secret not set")
}
if gcpEmail == "" {
t.Fatal("GCP email not set")
}
if gcpPrivateKey == "" {
t.Fatal("GCP private key not set")
}
}
func TestClientSideEncryptionSpec(t *testing.T) {
verifyClientSideEncryptionVarsSet(t)
for _, fileName := range jsonFilesInDir(t, path.Join(dataPath, encryptionSpecName)) {
t.Run(fileName, func(t *testing.T) {
if fileName == "kmipKMS.json" && "" == os.Getenv("KMS_MOCK_SERVERS_RUNNING") {
t.Skipf("Skipping test as KMS_MOCK_SERVERS_RUNNING is not set")
}
runSpecTestFile(t, encryptionSpecName, fileName)
})
}
}
|