2015-03-06 14:26:39 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2015-03-06 14:26:39 +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.
|
|
|
|
*/
|
|
|
|
|
2015-04-09 13:40:48 +00:00
|
|
|
package aws_ebs
|
2015-03-06 14:26:39 +00:00
|
|
|
|
|
|
|
import (
|
2015-12-15 09:22:49 +00:00
|
|
|
"fmt"
|
2015-03-06 14:26:39 +00:00
|
|
|
"os"
|
2015-10-12 12:28:03 +00:00
|
|
|
"path"
|
2015-03-06 14:26:39 +00:00
|
|
|
"testing"
|
|
|
|
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2015-12-15 09:22:49 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api/resource"
|
2015-08-13 19:01:50 +00:00
|
|
|
"k8s.io/kubernetes/pkg/client/unversioned/testclient"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/types"
|
|
|
|
"k8s.io/kubernetes/pkg/util/mount"
|
2016-01-25 21:57:42 +00:00
|
|
|
utiltesting "k8s.io/kubernetes/pkg/util/testing"
|
2015-08-05 22:03:47 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2015-03-06 14:26:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCanSupport(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("awsebsTest")
|
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-03-06 14:26:39 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2015-10-12 12:28:03 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), volume.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-03-06 14:26:39 +00:00
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/aws-ebs")
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
2015-04-07 21:16:36 +00:00
|
|
|
if plug.Name() != "kubernetes.io/aws-ebs" {
|
2015-03-06 14:26:39 +00:00
|
|
|
t.Errorf("Wrong name: %s", plug.Name())
|
|
|
|
}
|
2015-08-12 19:11:03 +00:00
|
|
|
if !plug.CanSupport(&volume.Spec{Volume: &api.Volume{VolumeSource: api.VolumeSource{AWSElasticBlockStore: &api.AWSElasticBlockStoreVolumeSource{}}}}) {
|
2015-03-06 14:26:39 +00:00
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
2015-08-12 19:11:03 +00:00
|
|
|
if !plug.CanSupport(&volume.Spec{PersistentVolume: &api.PersistentVolume{Spec: api.PersistentVolumeSpec{PersistentVolumeSource: api.PersistentVolumeSource{AWSElasticBlockStore: &api.AWSElasticBlockStoreVolumeSource{}}}}}) {
|
2015-05-23 13:53:33 +00:00
|
|
|
t.Errorf("Expected true")
|
|
|
|
}
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetAccessModes(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("awsebsTest")
|
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-03-06 14:26:39 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2015-10-12 12:28:03 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), volume.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-03-06 14:26:39 +00:00
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
plug, err := plugMgr.FindPersistentPluginByName("kubernetes.io/aws-ebs")
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
2015-03-26 17:04:10 +00:00
|
|
|
if !contains(plug.GetAccessModes(), api.ReadWriteOnce) {
|
|
|
|
t.Errorf("Expected to find AccessMode: %s", api.ReadWriteOnce)
|
|
|
|
}
|
|
|
|
if len(plug.GetAccessModes()) != 1 {
|
|
|
|
t.Errorf("Expected to find exactly one AccessMode")
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-18 20:22:30 +00:00
|
|
|
func contains(modes []api.PersistentVolumeAccessMode, mode api.PersistentVolumeAccessMode) bool {
|
2015-03-06 14:26:39 +00:00
|
|
|
for _, m := range modes {
|
|
|
|
if m == mode {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
type fakePDManager struct{}
|
|
|
|
|
|
|
|
// TODO(jonesdl) To fully test this, we could create a loopback device
|
|
|
|
// and mount that instead.
|
2015-07-16 14:47:01 +00:00
|
|
|
func (fake *fakePDManager) AttachAndMountDisk(b *awsElasticBlockStoreBuilder, globalPDPath string) error {
|
|
|
|
globalPath := makeGlobalPDPath(b.plugin.host, b.volumeID)
|
2015-03-06 14:26:39 +00:00
|
|
|
err := os.MkdirAll(globalPath, 0750)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-16 14:47:01 +00:00
|
|
|
func (fake *fakePDManager) DetachDisk(c *awsElasticBlockStoreCleaner) error {
|
|
|
|
globalPath := makeGlobalPDPath(c.plugin.host, c.volumeID)
|
2015-03-06 14:26:39 +00:00
|
|
|
err := os.RemoveAll(globalPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-12-15 09:22:49 +00:00
|
|
|
func (fake *fakePDManager) CreateVolume(c *awsElasticBlockStoreProvisioner) (volumeID string, volumeSizeGB int, err error) {
|
|
|
|
return "test-aws-volume-name", 100, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fake *fakePDManager) DeleteVolume(cd *awsElasticBlockStoreDeleter) error {
|
|
|
|
if cd.volumeID != "test-aws-volume-name" {
|
|
|
|
return fmt.Errorf("Deleter got unexpected volume name: %s", cd.volumeID)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-06 14:26:39 +00:00
|
|
|
func TestPlugin(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("awsebsTest")
|
2015-10-12 12:28:03 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("can't make a temp dir: %v")
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpDir)
|
2015-03-06 14:26:39 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2015-10-12 12:28:03 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), volume.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-03-06 14:26:39 +00:00
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/aws-ebs")
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
|
|
|
spec := &api.Volume{
|
|
|
|
Name: "vol1",
|
|
|
|
VolumeSource: api.VolumeSource{
|
2015-04-07 21:16:36 +00:00
|
|
|
AWSElasticBlockStore: &api.AWSElasticBlockStoreVolumeSource{
|
2015-04-09 13:34:16 +00:00
|
|
|
VolumeID: "pd",
|
2015-04-07 20:23:12 +00:00
|
|
|
FSType: "ext4",
|
2015-03-06 14:26:39 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2015-04-14 16:29:33 +00:00
|
|
|
builder, err := plug.(*awsElasticBlockStorePlugin).newBuilderInternal(volume.NewSpecFromVolume(spec), types.UID("poduid"), &fakePDManager{}, &mount.FakeMounter{})
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Failed to make a new Builder: %v", err)
|
|
|
|
}
|
|
|
|
if builder == nil {
|
2015-04-07 22:35:43 +00:00
|
|
|
t.Errorf("Got a nil Builder")
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
2015-10-12 12:28:03 +00:00
|
|
|
volPath := path.Join(tmpDir, "pods/poduid/volumes/kubernetes.io~aws-ebs/vol1")
|
2015-03-06 14:26:39 +00:00
|
|
|
path := builder.GetPath()
|
2015-10-12 12:28:03 +00:00
|
|
|
if path != volPath {
|
2015-03-06 14:26:39 +00:00
|
|
|
t.Errorf("Got unexpected path: %s", path)
|
|
|
|
}
|
|
|
|
|
2015-12-18 15:55:11 +00:00
|
|
|
if err := builder.SetUp(nil); err != nil {
|
2015-03-06 14:26:39 +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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-07 21:16:36 +00:00
|
|
|
cleaner, err := plug.(*awsElasticBlockStorePlugin).newCleanerInternal("vol1", types.UID("poduid"), &fakePDManager{}, &mount.FakeMounter{})
|
2015-03-06 14:26:39 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Failed to make a new Cleaner: %v", err)
|
|
|
|
}
|
|
|
|
if cleaner == nil {
|
2015-04-07 22:35:43 +00:00
|
|
|
t.Errorf("Got a nil Cleaner")
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := cleaner.TearDown(); err != nil {
|
|
|
|
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) {
|
|
|
|
t.Errorf("SetUp() failed: %v", err)
|
|
|
|
}
|
2015-12-15 09:22:49 +00:00
|
|
|
|
|
|
|
// Test Provisioner
|
|
|
|
cap := resource.MustParse("100Gi")
|
|
|
|
options := volume.VolumeOptions{
|
|
|
|
Capacity: cap,
|
|
|
|
AccessModes: []api.PersistentVolumeAccessMode{
|
|
|
|
api.ReadWriteOnce,
|
|
|
|
},
|
|
|
|
PersistentVolumeReclaimPolicy: api.PersistentVolumeReclaimDelete,
|
|
|
|
}
|
|
|
|
provisioner, err := plug.(*awsElasticBlockStorePlugin).newProvisionerInternal(options, &fakePDManager{})
|
|
|
|
persistentSpec, err := provisioner.NewPersistentVolumeTemplate()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("NewPersistentVolumeTemplate() failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get 2nd Provisioner - persistent volume controller will do the same
|
|
|
|
provisioner, err = plug.(*awsElasticBlockStorePlugin).newProvisionerInternal(options, &fakePDManager{})
|
|
|
|
err = provisioner.Provision(persistentSpec)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Provision() failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if persistentSpec.Spec.PersistentVolumeSource.AWSElasticBlockStore.VolumeID != "test-aws-volume-name" {
|
|
|
|
t.Errorf("Provision() returned unexpected volume ID: %s", persistentSpec.Spec.PersistentVolumeSource.AWSElasticBlockStore.VolumeID)
|
|
|
|
}
|
|
|
|
cap = persistentSpec.Spec.Capacity[api.ResourceStorage]
|
|
|
|
size := cap.Value()
|
|
|
|
if size != 100*1024*1024*1024 {
|
|
|
|
t.Errorf("Provision() returned unexpected volume size: %v", size)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test Deleter
|
|
|
|
volSpec := &volume.Spec{
|
|
|
|
PersistentVolume: persistentSpec,
|
|
|
|
}
|
|
|
|
deleter, err := plug.(*awsElasticBlockStorePlugin).newDeleterInternal(volSpec, &fakePDManager{})
|
|
|
|
err = deleter.Delete()
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Deleter() failed: %v", err)
|
|
|
|
}
|
2015-03-06 14:26:39 +00:00
|
|
|
}
|
2015-06-29 16:54:43 +00:00
|
|
|
|
|
|
|
func TestPersistentClaimReadOnlyFlag(t *testing.T) {
|
|
|
|
pv := &api.PersistentVolume{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
Name: "pvA",
|
|
|
|
},
|
|
|
|
Spec: api.PersistentVolumeSpec{
|
|
|
|
PersistentVolumeSource: api.PersistentVolumeSource{
|
|
|
|
AWSElasticBlockStore: &api.AWSElasticBlockStoreVolumeSource{},
|
|
|
|
},
|
|
|
|
ClaimRef: &api.ObjectReference{
|
|
|
|
Name: "claimA",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
claim := &api.PersistentVolumeClaim{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
Name: "claimA",
|
|
|
|
Namespace: "nsA",
|
|
|
|
},
|
|
|
|
Spec: api.PersistentVolumeClaimSpec{
|
|
|
|
VolumeName: "pvA",
|
|
|
|
},
|
|
|
|
Status: api.PersistentVolumeClaimStatus{
|
|
|
|
Phase: api.ClaimBound,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-01-22 05:06:52 +00:00
|
|
|
client := testclient.NewSimpleFake(pv, claim)
|
2015-06-29 16:54:43 +00:00
|
|
|
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("awsebsTest")
|
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-06-29 16:54:43 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2015-10-12 12:28:03 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), volume.NewFakeVolumeHost(tmpDir, client, nil))
|
2015-06-29 16:54:43 +00:00
|
|
|
plug, _ := plugMgr.FindPluginByName(awsElasticBlockStorePluginName)
|
|
|
|
|
2015-07-01 14:50:39 +00:00
|
|
|
// readOnly bool is supplied by persistent-claim volume source when its builder creates other volumes
|
|
|
|
spec := volume.NewSpecFromPersistentVolume(pv, true)
|
2015-06-29 16:54:43 +00:00
|
|
|
pod := &api.Pod{ObjectMeta: api.ObjectMeta{UID: types.UID("poduid")}}
|
2015-09-14 09:51:40 +00:00
|
|
|
builder, _ := plug.NewBuilder(spec, pod, volume.VolumeOptions{})
|
2015-06-29 16:54:43 +00:00
|
|
|
|
2015-10-30 20:25:36 +00:00
|
|
|
if !builder.GetAttributes().ReadOnly {
|
2015-07-01 14:50:39 +00:00
|
|
|
t.Errorf("Expected true for builder.IsReadOnly")
|
2015-06-29 16:54:43 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-16 14:47:01 +00:00
|
|
|
|
|
|
|
func TestBuilderAndCleanerTypeAssert(t *testing.T) {
|
2016-01-25 21:57:42 +00:00
|
|
|
tmpDir, err := utiltesting.MkTmpdir("awsebsTest")
|
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-07-16 14:47:01 +00:00
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
2015-10-12 12:28:03 +00:00
|
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), volume.NewFakeVolumeHost(tmpDir, nil, nil))
|
2015-07-16 14:47:01 +00:00
|
|
|
|
|
|
|
plug, err := plugMgr.FindPluginByName("kubernetes.io/aws-ebs")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Can't find the plugin by name")
|
|
|
|
}
|
|
|
|
spec := &api.Volume{
|
|
|
|
Name: "vol1",
|
|
|
|
VolumeSource: api.VolumeSource{
|
|
|
|
AWSElasticBlockStore: &api.AWSElasticBlockStoreVolumeSource{
|
|
|
|
VolumeID: "pd",
|
|
|
|
FSType: "ext4",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
builder, err := plug.(*awsElasticBlockStorePlugin).newBuilderInternal(volume.NewSpecFromVolume(spec), types.UID("poduid"), &fakePDManager{}, &mount.FakeMounter{})
|
|
|
|
if _, ok := builder.(volume.Cleaner); ok {
|
|
|
|
t.Errorf("Volume Builder can be type-assert to Cleaner")
|
|
|
|
}
|
|
|
|
|
|
|
|
cleaner, err := plug.(*awsElasticBlockStorePlugin).newCleanerInternal("vol1", types.UID("poduid"), &fakePDManager{}, &mount.FakeMounter{})
|
|
|
|
if _, ok := cleaner.(volume.Builder); ok {
|
|
|
|
t.Errorf("Volume Cleaner can be type-assert to Builder")
|
|
|
|
}
|
|
|
|
}
|