2015-03-13 21:31:13 +00:00
|
|
|
/*
|
2016-06-03 00:25:58 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2015-03-13 21:31:13 +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 iscsi
|
|
|
|
|
|
|
|
import (
|
2016-01-25 21:57:42 +00:00
|
|
|
"fmt"
|
2015-03-13 21:31:13 +00:00
|
|
|
"os"
|
2017-10-28 19:28:52 +00:00
|
|
|
"strings"
|
2015-03-13 21:31:13 +00:00
|
|
|
"testing"
|
|
|
|
|
2017-06-22 18:24:23 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2017-01-17 03:38:19 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2017-01-11 14:09:48 +00:00
|
|
|
"k8s.io/apimachinery/pkg/types"
|
2017-06-23 20:56:37 +00:00
|
|
|
"k8s.io/client-go/kubernetes/fake"
|
2017-01-23 18:37:22 +00:00
|
|
|
utiltesting "k8s.io/client-go/util/testing"
|
2015-08-05 22:03:47 +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-03-13 21:31:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCanSupport(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("iscsi_test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error creating temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
|
2015-03-13 21:31:13 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-03-13 21:31:13 +00:00
|
|
|
|
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/iscsi")
|
|
|
|
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/iscsi" {
|
|
|
|
t.Errorf("Wrong name: %s", plug.GetPluginName())
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
2016-11-18 20:58:56 +00:00
|
|
|
if plug.CanSupport(&volume.Spec{Volume: &v1.Volume{VolumeSource: v1.VolumeSource{}}}) {
|
2015-05-23 13:53:33 +00:00
|
|
|
t.Errorf("Expected false")
|
|
|
|
}
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
|
|
|
|
2015-05-12 20:40:31 +00:00
|
|
|
func TestGetAccessModes(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("iscsi_test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error creating temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
|
2015-05-12 20:40:31 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-05-12 20:40:31 +00:00
|
|
|
|
|
|
|
plug, err := plugMgr.FindPersistentPluginByName("kubernetes.io/iscsi")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
2017-10-20 16:35:47 +00:00
|
|
|
if !volumetest.ContainsAccessMode(plug.GetAccessModes(), v1.ReadWriteOnce) || !volumetest.ContainsAccessMode(plug.GetAccessModes(), v1.ReadOnlyMany) {
|
2016-11-18 20:58:56 +00:00
|
|
|
t.Errorf("Expected two AccessModeTypes: %s and %s", v1.ReadWriteOnce, v1.ReadOnlyMany)
|
2015-05-12 20:40:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 14:30:47 +00:00
|
|
|
type fakeDiskManager struct {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir string
|
2015-04-21 14:30:47 +00:00
|
|
|
attachCalled bool
|
|
|
|
detachCalled bool
|
|
|
|
}
|
2015-03-13 21:31:13 +00:00
|
|
|
|
2016-01-25 21:57:42 +00:00
|
|
|
func NewFakeDiskManager() *fakeDiskManager {
|
|
|
|
return &fakeDiskManager{
|
2017-10-28 19:28:52 +00:00
|
|
|
tmpDir: utiltesting.MkTmpdirOrDie("iscsi_test"),
|
2016-01-25 21:57:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fake *fakeDiskManager) Cleanup() {
|
|
|
|
os.RemoveAll(fake.tmpDir)
|
|
|
|
}
|
|
|
|
|
2015-03-13 21:31:13 +00:00
|
|
|
func (fake *fakeDiskManager) MakeGlobalPDName(disk iscsiDisk) string {
|
2016-01-25 21:57:42 +00:00
|
|
|
return fake.tmpDir
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
2017-10-28 19:28:52 +00:00
|
|
|
|
|
|
|
func (fake *fakeDiskManager) MakeGlobalVDPDName(disk iscsiDisk) string {
|
|
|
|
return fake.tmpDir
|
|
|
|
}
|
|
|
|
|
2017-08-09 15:13:58 +00:00
|
|
|
func (fake *fakeDiskManager) AttachDisk(b iscsiDiskMounter) (string, error) {
|
2015-07-24 08:55:56 +00:00
|
|
|
globalPath := b.manager.MakeGlobalPDName(*b.iscsiDisk)
|
2015-03-13 21:31:13 +00:00
|
|
|
err := os.MkdirAll(globalPath, 0750)
|
|
|
|
if err != nil {
|
2017-08-09 15:13:58 +00:00
|
|
|
return "", err
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
2015-04-21 14:30:47 +00:00
|
|
|
// Simulate the global mount so that the fakeMounter returns the
|
|
|
|
// expected number of mounts for the attached disk.
|
2015-07-24 08:55:56 +00:00
|
|
|
b.mounter.Mount(globalPath, globalPath, b.fsType, nil)
|
2015-04-21 14:30:47 +00:00
|
|
|
|
2017-08-09 15:13:58 +00:00
|
|
|
return "/dev/sdb", nil
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
func (fake *fakeDiskManager) DetachDisk(c iscsiDiskUnmounter, mntPath string) error {
|
2015-07-24 08:55:56 +00:00
|
|
|
globalPath := c.manager.MakeGlobalPDName(*c.iscsiDisk)
|
2015-03-13 21:31:13 +00:00
|
|
|
err := os.RemoveAll(globalPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-10-28 19:28:52 +00:00
|
|
|
func (fake *fakeDiskManager) DetachBlockISCSIDisk(c iscsiDiskUnmapper, mntPath string) error {
|
|
|
|
globalPath := c.manager.MakeGlobalVDPDName(*c.iscsiDisk)
|
|
|
|
err := os.RemoveAll(globalPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-06-01 14:34:40 +00:00
|
|
|
func doTestPlugin(t *testing.T, spec *volume.Spec) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("iscsi_test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error creating temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
|
2015-03-13 21:31:13 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-03-13 21:31:13 +00:00
|
|
|
|
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/iscsi")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
2016-01-25 21:57:42 +00:00
|
|
|
fakeManager := NewFakeDiskManager()
|
|
|
|
defer fakeManager.Cleanup()
|
2015-04-21 14:30:47 +00:00
|
|
|
fakeMounter := &mount.FakeMounter{}
|
2017-08-14 10:16:27 +00:00
|
|
|
fakeExec := mount.NewFakeExec(nil)
|
|
|
|
mounter, err := plug.(*iscsiPlugin).newMounterInternal(spec, types.UID("poduid"), fakeManager, fakeMounter, fakeExec, nil)
|
2015-03-13 21:31:13 +00:00
|
|
|
if err != nil {
|
2016-03-23 05:12:21 +00:00
|
|
|
t.Errorf("Failed to make a new Mounter: %v", err)
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if mounter == nil {
|
|
|
|
t.Error("Got a nil Mounter")
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
path := mounter.GetPath()
|
2016-01-25 21:57:42 +00:00
|
|
|
expectedPath := fmt.Sprintf("%s/pods/poduid/volumes/kubernetes.io~iscsi/vol1", tmpDir)
|
|
|
|
if path != expectedPath {
|
|
|
|
t.Errorf("Unexpected path, expected %q, got: %q", expectedPath, path)
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
if err := mounter.SetUp(nil); err != nil {
|
2015-03-13 21:31:13 +00:00
|
|
|
t.Errorf("Expected success, got: %v", err)
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(path); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
t.Errorf("SetUp() failed, volume path not created: %s", path)
|
|
|
|
} else {
|
|
|
|
t.Errorf("SetUp() failed: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(path); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
t.Errorf("SetUp() failed, volume path not created: %s", path)
|
|
|
|
} else {
|
|
|
|
t.Errorf("SetUp() failed: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-25 21:57:42 +00:00
|
|
|
fakeManager2 := NewFakeDiskManager()
|
|
|
|
defer fakeManager2.Cleanup()
|
2017-08-14 10:16:27 +00:00
|
|
|
unmounter, err := plug.(*iscsiPlugin).newUnmounterInternal("vol1", types.UID("poduid"), fakeManager2, fakeMounter, fakeExec)
|
2015-03-13 21:31:13 +00:00
|
|
|
if err != nil {
|
2016-03-23 05:12:21 +00:00
|
|
|
t.Errorf("Failed to make a new Unmounter: %v", err)
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if unmounter == nil {
|
|
|
|
t.Error("Got a nil Unmounter")
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
if err := unmounter.TearDown(); err != nil {
|
2015-03-13 21:31:13 +00:00
|
|
|
t.Errorf("Expected success, got: %v", err)
|
|
|
|
}
|
|
|
|
if _, err := os.Stat(path); err == nil {
|
|
|
|
t.Errorf("TearDown() failed, volume path still exists: %s", path)
|
|
|
|
} else if !os.IsNotExist(err) {
|
2017-10-25 17:30:33 +00:00
|
|
|
t.Errorf("TearDown() failed: %v", err)
|
2015-03-13 21:31:13 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-01 14:34:40 +00:00
|
|
|
|
|
|
|
func TestPluginVolume(t *testing.T) {
|
2016-11-18 20:58:56 +00:00
|
|
|
vol := &v1.Volume{
|
2015-06-01 14:34:40 +00:00
|
|
|
Name: "vol1",
|
2016-11-18 20:58:56 +00:00
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
ISCSI: &v1.ISCSIVolumeSource{
|
2015-06-01 14:34:40 +00:00
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
doTestPlugin(t, volume.NewSpecFromVolume(vol))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPluginPersistentVolume(t *testing.T) {
|
2016-11-18 20:58:56 +00:00
|
|
|
vol := &v1.PersistentVolume{
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2015-06-01 14:34:40 +00:00
|
|
|
Name: "vol1",
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
Spec: v1.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
2017-08-28 18:22:01 +00:00
|
|
|
ISCSI: &v1.ISCSIPersistentVolumeSource{
|
2015-06-01 14:34:40 +00:00
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2015-07-01 14:50:39 +00:00
|
|
|
doTestPlugin(t, volume.NewSpecFromPersistentVolume(vol, false))
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPersistentClaimReadOnlyFlag(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("iscsi_test")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error creating temp dir: %v", err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
pv := &v1.PersistentVolume{
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2015-07-01 14:50:39 +00:00
|
|
|
Name: "pvA",
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
Spec: v1.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
2017-08-28 18:22:01 +00:00
|
|
|
ISCSI: &v1.ISCSIPersistentVolumeSource{
|
2015-07-01 14:50:39 +00:00
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
},
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
ClaimRef: &v1.ObjectReference{
|
2015-07-01 14:50:39 +00:00
|
|
|
Name: "claimA",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
claim := &v1.PersistentVolumeClaim{
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2015-07-01 14:50:39 +00:00
|
|
|
Name: "claimA",
|
|
|
|
Namespace: "nsA",
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
Spec: v1.PersistentVolumeClaimSpec{
|
2015-07-01 14:50:39 +00:00
|
|
|
VolumeName: "pvA",
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
Status: v1.PersistentVolumeClaimStatus{
|
|
|
|
Phase: v1.ClaimBound,
|
2015-07-01 14:50:39 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-15 05:00:58 +00:00
|
|
|
client := fake.NewSimpleClientset(pv, claim)
|
2015-07-01 14:50:39 +00:00
|
|
|
|
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2017-07-26 00:48:26 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, client, nil))
|
2015-07-01 14:50:39 +00:00
|
|
|
plug, _ := plugMgr.FindPluginByName(iscsiPluginName)
|
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
// readOnly bool is supplied by persistent-claim volume source when its mounter creates other volumes
|
2015-07-01 14:50:39 +00:00
|
|
|
spec := volume.NewSpecFromPersistentVolume(pv, true)
|
2017-01-17 03:38:19 +00:00
|
|
|
pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
|
2016-03-23 05:12:21 +00:00
|
|
|
mounter, _ := plug.NewMounter(spec, pod, volume.VolumeOptions{})
|
2016-12-19 07:42:14 +00:00
|
|
|
if mounter == nil {
|
|
|
|
t.Fatalf("Got a nil Mounter")
|
|
|
|
}
|
2015-07-01 14:50:39 +00:00
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
if !mounter.GetAttributes().ReadOnly {
|
|
|
|
t.Errorf("Expected true for mounter.IsReadOnly")
|
2015-07-01 14:50:39 +00:00
|
|
|
}
|
2015-06-01 14:34:40 +00:00
|
|
|
}
|
2015-10-14 17:30:30 +00:00
|
|
|
|
2016-03-23 05:12:21 +00:00
|
|
|
func TestPortalMounter(t *testing.T) {
|
|
|
|
if portal := portalMounter("127.0.0.1"); portal != "127.0.0.1:3260" {
|
2015-10-14 17:30:30 +00:00
|
|
|
t.Errorf("wrong portal: %s", portal)
|
|
|
|
}
|
2016-03-23 05:12:21 +00:00
|
|
|
if portal := portalMounter("127.0.0.1:3260"); portal != "127.0.0.1:3260" {
|
2015-10-14 17:30:30 +00:00
|
|
|
t.Errorf("wrong portal: %s", portal)
|
|
|
|
}
|
|
|
|
}
|
2017-08-28 18:22:01 +00:00
|
|
|
|
|
|
|
type testcase struct {
|
|
|
|
name string
|
|
|
|
defaultNs string
|
|
|
|
spec *volume.Spec
|
|
|
|
// Expected return of the test
|
2017-10-28 19:28:52 +00:00
|
|
|
expectedName string
|
|
|
|
expectedNs string
|
|
|
|
expectedIface string
|
|
|
|
expectedError error
|
|
|
|
expectedDiscoveryCHAP bool
|
|
|
|
expectedSessionCHAP bool
|
2017-08-28 18:22:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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{
|
|
|
|
ISCSI: &v1.ISCSIPersistentVolumeSource{
|
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
SecretRef: &v1.SecretReference{
|
|
|
|
Name: "name",
|
|
|
|
Namespace: "ns",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
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{
|
|
|
|
ISCSI: &v1.ISCSIPersistentVolumeSource{
|
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
SecretRef: &v1.SecretReference{
|
|
|
|
Name: "name",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedName: "name",
|
|
|
|
expectedNs: "default",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "pod volume source",
|
|
|
|
defaultNs: "default",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
Volume: &v1.Volume{
|
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
ISCSI: &v1.ISCSIVolumeSource{
|
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedName: "",
|
|
|
|
expectedNs: "",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testcase := range tests {
|
|
|
|
resultName, resultNs, err := getISCSISecretNameAndNamespace(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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetISCSIInitiatorInfo(t *testing.T) {
|
|
|
|
tests := []testcase{
|
|
|
|
{
|
|
|
|
name: "persistent volume source",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
PersistentVolume: &v1.PersistentVolume{
|
|
|
|
Spec: v1.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
|
|
|
ISCSI: &v1.ISCSIPersistentVolumeSource{
|
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
ISCSIInterface: "tcp",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedIface: "tcp",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "pod volume source",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
Volume: &v1.Volume{
|
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
ISCSI: &v1.ISCSIVolumeSource{
|
|
|
|
TargetPortal: "127.0.0.1:3260",
|
|
|
|
IQN: "iqn.2014-12.server:storage.target01",
|
|
|
|
FSType: "ext4",
|
|
|
|
Lun: 0,
|
|
|
|
ISCSIInterface: "tcp",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedIface: "tcp",
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testcase := range tests {
|
|
|
|
resultIface, _, err := getISCSIInitiatorInfo(testcase.spec)
|
|
|
|
if err != testcase.expectedError || resultIface != testcase.expectedIface {
|
|
|
|
t.Errorf("%s failed: expected err=%v iface=%s, got %v/%s", testcase.name, testcase.expectedError, testcase.expectedIface,
|
|
|
|
err, resultIface)
|
|
|
|
}
|
|
|
|
}
|
2017-10-28 19:28:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetISCSICHAP(t *testing.T) {
|
|
|
|
tests := []testcase{
|
|
|
|
{
|
|
|
|
name: "persistent volume source",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
PersistentVolume: &v1.PersistentVolume{
|
|
|
|
Spec: v1.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
|
|
|
ISCSI: &v1.ISCSIPersistentVolumeSource{
|
|
|
|
DiscoveryCHAPAuth: true,
|
|
|
|
SessionCHAPAuth: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedDiscoveryCHAP: true,
|
|
|
|
expectedSessionCHAP: true,
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "pod volume source",
|
|
|
|
spec: &volume.Spec{
|
|
|
|
Volume: &v1.Volume{
|
|
|
|
VolumeSource: v1.VolumeSource{
|
|
|
|
ISCSI: &v1.ISCSIVolumeSource{
|
|
|
|
DiscoveryCHAPAuth: true,
|
|
|
|
SessionCHAPAuth: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
expectedDiscoveryCHAP: true,
|
|
|
|
expectedSessionCHAP: true,
|
|
|
|
expectedError: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "no volume",
|
|
|
|
spec: &volume.Spec{},
|
|
|
|
expectedDiscoveryCHAP: false,
|
|
|
|
expectedSessionCHAP: false,
|
|
|
|
expectedError: fmt.Errorf("Spec does not reference an ISCSI volume type"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testcase := range tests {
|
|
|
|
resultDiscoveryCHAP, err := getISCSIDiscoveryCHAPInfo(testcase.spec)
|
|
|
|
resultSessionCHAP, err := getISCSISessionCHAPInfo(testcase.spec)
|
|
|
|
switch testcase.name {
|
|
|
|
case "no volume":
|
|
|
|
if err.Error() != testcase.expectedError.Error() || resultDiscoveryCHAP != testcase.expectedDiscoveryCHAP || resultSessionCHAP != testcase.expectedSessionCHAP {
|
|
|
|
t.Errorf("%s failed: expected err=%v DiscoveryCHAP=%v SessionCHAP=%v, got %v/%v/%v",
|
|
|
|
testcase.name, testcase.expectedError, testcase.expectedDiscoveryCHAP, testcase.expectedSessionCHAP,
|
|
|
|
err, resultDiscoveryCHAP, resultSessionCHAP)
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
if err != testcase.expectedError || resultDiscoveryCHAP != testcase.expectedDiscoveryCHAP || resultSessionCHAP != testcase.expectedSessionCHAP {
|
|
|
|
t.Errorf("%s failed: expected err=%v DiscoveryCHAP=%v SessionCHAP=%v, got %v/%v/%v", testcase.name, testcase.expectedError, testcase.expectedDiscoveryCHAP, testcase.expectedSessionCHAP,
|
|
|
|
err, resultDiscoveryCHAP, resultSessionCHAP)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetVolumeSpec(t *testing.T) {
|
|
|
|
path := "plugins/kubernetes.io/iscsi/volumeDevices/iface-default/127.0.0.1:3260-iqn.2014-12.server:storage.target01-lun-0"
|
|
|
|
spec, _ := getVolumeSpecFromGlobalMapPath("test", path)
|
|
|
|
|
|
|
|
portal := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.TargetPortal
|
|
|
|
if portal != "127.0.0.1:3260" {
|
|
|
|
t.Errorf("wrong portal: %v", portal)
|
|
|
|
}
|
|
|
|
iqn := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.IQN
|
|
|
|
if iqn != "iqn.2014-12.server:storage.target01" {
|
|
|
|
t.Errorf("wrong iqn: %v", iqn)
|
|
|
|
}
|
|
|
|
lun := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.Lun
|
|
|
|
if lun != 0 {
|
|
|
|
t.Errorf("wrong lun: %v", lun)
|
|
|
|
}
|
|
|
|
iface := spec.PersistentVolume.Spec.PersistentVolumeSource.ISCSI.ISCSIInterface
|
|
|
|
if iface != "default" {
|
|
|
|
t.Errorf("wrong ISCSIInterface: %v", iface)
|
|
|
|
}
|
|
|
|
}
|
2017-08-28 18:22:01 +00:00
|
|
|
|
2017-10-28 19:28:52 +00:00
|
|
|
func TestGetVolumeSpec_no_lun(t *testing.T) {
|
|
|
|
path := "plugins/kubernetes.io/iscsi/volumeDevices/iface-default/127.0.0.1:3260-iqn.2014-12.server:storage.target01"
|
|
|
|
_, err := getVolumeSpecFromGlobalMapPath("test", path)
|
|
|
|
if !strings.Contains(err.Error(), "malformatted mnt path") {
|
|
|
|
t.Errorf("should get error: malformatted mnt path")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetVolumeSpec_no_iface(t *testing.T) {
|
|
|
|
path := "plugins/kubernetes.io/iscsi/volumeDevices/default/127.0.0.1:3260-iqn.2014-12.server:storage.target01-lun-0"
|
|
|
|
_, err := getVolumeSpecFromGlobalMapPath("test", path)
|
|
|
|
if !strings.Contains(err.Error(), "failed to retreive iface") {
|
|
|
|
t.Errorf("should get error: failed to retreive iface")
|
|
|
|
}
|
2017-08-28 18:22:01 +00:00
|
|
|
}
|