mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
39 lines
712 B
Go
39 lines
712 B
Go
package cephfs
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func init() {
|
|
}
|
|
|
|
func TestMountOneCacheEntry(t *testing.T) {
|
|
}
|
|
|
|
func TestRemountHisMountedPath(t *testing.T) {
|
|
}
|
|
|
|
func TestNodeStageVolume(t *testing.T) {
|
|
}
|
|
|
|
func TestNodeUnStageVolume(t *testing.T) {
|
|
}
|
|
|
|
func TestNodePublishVolume(t *testing.T) {
|
|
}
|
|
|
|
func TestNodeUnpublishVolume(t *testing.T) {
|
|
}
|
|
|
|
func TestEncodeDecodeCredentials(t *testing.T) {
|
|
secrets := make(map[string]string)
|
|
secrets["user_1"] = "value_1"
|
|
enSecrets := encodeCredentials(secrets)
|
|
deSecrets := decodeCredentials(enSecrets)
|
|
for key, value := range secrets {
|
|
if deSecrets[key] != value {
|
|
t.Errorf("key %s of credentials's value %s change after decode %s ", key, value, deSecrets[key])
|
|
}
|
|
}
|
|
}
|