@@ -5,22 +5,23 @@ import (
5
5
"os"
6
6
"testing"
7
7
8
+ "github.com/IBM/ibm-object-csi-driver/pkg/constants"
8
9
mounterUtils "github.com/IBM/ibm-object-csi-driver/pkg/mounter/utils"
9
10
"github.com/stretchr/testify/assert"
10
11
)
11
12
12
13
var (
13
14
secretMap = map [string ]string {
14
- "cosEndpoint" : "test-endpoint" ,
15
- "locationConstraint" : "test-loc-constraint" ,
16
- "bucketName" : "test-bucket-name" ,
17
- "objPath" : "test-obj-path" ,
18
- "accessKey" : "test-access-key" ,
19
- "secretKey" : "test-secret-key" ,
20
- "apiKey" : "test-api-key" ,
21
- "kpRootKeyCRN" : "test-kp-root-key-crn" ,
22
- "uid" : "test-uid" ,
23
- "cipher_suites" : "default" ,
15
+ "cosEndpoint" : "test-endpoint" ,
16
+ "locationConstraint" : "test-loc-constraint" ,
17
+ "bucketName" : "test-bucket-name" ,
18
+ "objPath" : "test-obj-path" ,
19
+ "accessKey" : "test-access-key" ,
20
+ "secretKey" : "test-secret-key" ,
21
+ "apiKey" : "test-api-key" ,
22
+ "kpRootKeyCRN" : "test-kp-root-key-crn" ,
23
+ "uid" : "test-uid" ,
24
+ constants . CipherSuitesMO : "default" ,
24
25
}
25
26
26
27
mountOptions = []string {"opt1=val1" , "opt2=val2" , "opt3" }
0 commit comments