2015-04-09 18:05:24 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2015-04-09 18:05:24 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package cephfs
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
2015-10-12 12:28:03 +00:00
|
|
|
"path"
|
2015-04-09 18:05:24 +00:00
|
|
|
"testing"
|
|
|
|
|
2017-06-22 18:24:23 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2017-01-11 14:09:48 +00:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2017-01-23 18:37:22 +00:00
|
|
|
utiltesting "k8s.io/client-go/util/testing"
|
2015-04-09 18:05:24 +00:00
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2016-02-29 21:31:42 +00:00
|
|
|
volumetest "k8s.io/kubernetes/pkg/volume/testing"
|
2015-04-09 18:05:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCanSupport(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("cephTest")
|
2015-10-12 12:28:03 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("can't make a temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
2015-04-09 18:05:24 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-04-09 18:05:24 +00:00
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/cephfs")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
2016-05-30 02:22:22 +00:00
|
|
|
if plug.GetPluginName() != "kubernetes.io/cephfs" {
|
|
|
|
t.Errorf("Wrong name: %s", plug.GetPluginName())
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
2016-11-18 20:58:56 +00:00
|
|
|
if plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{}}}) {
|
2015-04-09 18:05:24 +00:00
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
2016-11-18 20:58:56 +00:00
|
|
|
if !plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{CephFS: &v1.CephFSVolumeSource{}}}}) {
|
2015-04-09 18:05:24 +00:00
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPlugin(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("cephTest")
|
2015-10-12 12:28:03 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("can't make a temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
2015-04-09 18:05:24 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-04-09 18:05:24 +00:00
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/cephfs")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
2016-11-18 20:58:56 +00:00
|
|
|
spec := &v1.Volume{
|
2015-04-09 18:05:24 +00:00
|
|
|
Name: "vol1",
|
2016-11-18 20:58:56 +00:00
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
CephFS: &v1.CephFSVolumeSource{
|
2015-04-09 18:05:24 +00:00
|
|
|
Monitors: []string{"a", "b"},
|
|
|
|
User: "user",
|
|
|
|
SecretRef: nil,
|
|
|
|
SecretFile: "/etc/ceph/user.secret",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
mounter, err := plug.(*cephfsPlugin).newMounterInternal(volume.NewSpecFromVolume(spec), types.UID("poduid"), &mount.FakeMounter{}, "secrets")
|
2015-04-09 18:05:24 +00:00
|
|
|
if err != nil {
|
2016-03-23 05:12:21 +00:00
|
|
|
t.Errorf("Failed to make a new Mounter: %v", err)
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if mounter == nil {
|
|
|
|
t.Errorf("Got a nil Mounter")
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
2018-02-06 10:28:07 +00:00
|
|
|
volumePath := mounter.GetPath()
|
2015-10-12 12:28:03 +00:00
|
|
|
volpath := path.Join(tmpDir, "pods/poduid/volumes/kubernetes.io~cephfs/vol1")
|
2017-10-12 06:55:08 +00:00
|
|
|
if volumePath != volpath {
|
|
|
|
t.Errorf("Got unexpected path: %s", volumePath)
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if err := mounter.SetUp(nil); err != nil {
|
2015-04-09 18:05:24 +00:00
|
|
|
t.Errorf("Expected success, got: %v", err)
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(volumePath); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
t.Errorf("SetUp() failed, volume path not created: %s", volumePath)
|
|
|
|
} else {
|
|
|
|
t.Errorf("SetUp() failed: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
unmounter, err := plug.(*cephfsPlugin).newUnmounterInternal("vol1", types.UID("poduid"), &mount.FakeMounter{})
|
2015-04-09 18:05:24 +00:00
|
|
|
if err != nil {
|
2016-03-23 05:12:21 +00:00
|
|
|
t.Errorf("Failed to make a new Unmounter: %v", err)
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if unmounter == nil {
|
|
|
|
t.Errorf("Got a nil Unmounter")
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if err := unmounter.TearDown(); err != nil {
|
2015-04-09 18:05:24 +00:00
|
|
|
t.Errorf("Expected success, got: %v", err)
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(volumePath); err == nil {
|
|
|
|
t.Errorf("TearDown() failed, volume path still exists: %s", volumePath)
|
|
|
|
} else if !os.IsNotExist(err) {
|
2017-10-25 17:30:33 +00:00
|
|
|
t.Errorf("TearDown() failed: %v", err)
|
2015-04-09 18:05:24 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-21 09:26:11 +00:00
|
|
|
|
|
|
|
func TestConstructVolumeSpec(t *testing.T) {
|
|
|
|
tmpDir, err := utiltesting.MkTmpdir("cephTest")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't make a temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2016-11-21 09:26:11 +00:00
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/cephfs")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("can't find cephfs plugin by name")
|
|
|
|
}
|
|
|
|
|
|
|
|
cephfsSpec, err := plug.(*cephfsPlugin).ConstructVolumeSpec("cephfsVolume", "/cephfsVolume/")
|
|
|
|
|
|
|
|
if cephfsSpec.Name() != "cephfsVolume" {
|
|
|
|
t.Errorf("Get wrong cephfs spec name, got: %s", cephfsSpec.Name())
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 14:53:49 +00:00
|
|
|
|
|
|
|
type testcase struct {
|
|
|
|
name string
|
|
|
|
defaultNs string
|
|
|
|
spec *volume.Spec
|
|
|
|
// Expected return of the test
|
|
|
|
expectedName string
|
|
|
|
expectedNs string
|
|
|
|
expectedError error
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetSecretNameAndNamespaceForPV(t *testing.T) {
|
|
|
|
tests := []testcase{
|
|
|
|
{
|
|
|
|
name: "persistent volume source",
|
|
|
|
defaultNs: "default",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
PersistentVolume: &v1.PersistentVolume{
|
|
|
|
Spec: v1.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
|
|
|
CephFS: &v1.CephFSPersistentVolumeSource{
|
|
|
|
Monitors: []string{"a", "b"},
|
|
|
|
User: "user",
|
|
|
|
SecretRef: &v1.SecretReference{
|
|
|
|
Name: "name",
|
|
|
|
Namespace: "ns",
|
|
|
|
},
|
|
|
|
SecretFile: "/etc/ceph/user.secret",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedName: "name",
|
|
|
|
expectedNs: "ns",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "persistent volume source without namespace",
|
|
|
|
defaultNs: "default",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
PersistentVolume: &v1.PersistentVolume{
|
|
|
|
Spec: v1.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
|
|
|
CephFS: &v1.CephFSPersistentVolumeSource{
|
|
|
|
Monitors: []string{"a", "b"},
|
|
|
|
User: "user",
|
|
|
|
SecretRef: &v1.SecretReference{
|
|
|
|
Name: "name",
|
|
|
|
},
|
|
|
|
SecretFile: "/etc/ceph/user.secret",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedName: "name",
|
|
|
|
expectedNs: "default",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "pod volume source",
|
|
|
|
defaultNs: "default",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
Volume: &v1.Volume{
|
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
CephFS: &v1.CephFSVolumeSource{
|
|
|
|
Monitors: []string{"a", "b"},
|
|
|
|
User: "user",
|
|
|
|
SecretRef: &v1.LocalObjectReference{
|
|
|
|
Name: "name",
|
|
|
|
},
|
|
|
|
SecretFile: "/etc/ceph/user.secret",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedName: "name",
|
|
|
|
expectedNs: "default",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testcase := range tests {
|
|
|
|
resultName, resultNs, err := getSecretNameAndNamespace(testcase.spec, testcase.defaultNs)
|
|
|
|
if err != testcase.expectedError || resultName != testcase.expectedName || resultNs != testcase.expectedNs {
|
|
|
|
t.Errorf("%s failed: expected err=%v ns=%q name=%q, got %v/%q/%q", testcase.name, testcase.expectedError, testcase.expectedNs, testcase.expectedName,
|
|
|
|
err, resultNs, resultName)
|
|
|
|
}
|
|
|
|
}
|
2018-07-19 09:40:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetAccessModes(t *testing.T) {
|
|
|
|
tmpDir, err := utiltesting.MkTmpdir("cephfs_test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error creating temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
|
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2017-07-24 14:53:49 +00:00
|
|
|
|
2018-07-19 09:40:19 +00:00
|
|
|
plug, err := plugMgr.FindPersistentPluginByName("kubernetes.io/cephfs")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
|
|
|
modes := plug.GetAccessModes()
|
|
|
|
for _, v := range modes {
|
|
|
|
if !volumetest.ContainsAccessMode(modes, v) {
|
|
|
|
t.Errorf("Expected AccessModeTypes: %s", v)
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 14:53:49 +00:00
|
|
|
}
|