123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- // +build !providerless
- /*
- Copyright 2018 The Kubernetes Authors.
- 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 cinder
- import (
- "os"
- "path/filepath"
- "testing"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/types"
- utiltesting "k8s.io/client-go/util/testing"
- "k8s.io/kubernetes/pkg/volume"
- volumetest "k8s.io/kubernetes/pkg/volume/testing"
- )
- const (
- testVolName = "vol-1234"
- testPVName = "pv1"
- testGlobalPath = "plugins/kubernetes.io/cinder/volumeDevices/vol-1234"
- testPodPath = "pods/poduid/volumeDevices/kubernetes.io~cinder"
- )
- func TestGetVolumeSpecFromGlobalMapPath(t *testing.T) {
- // make our test path for fake GlobalMapPath
- // /tmp symbolized our pluginDir
- // /tmp/testGlobalPathXXXXX/plugins/kubernetes.io/cinder/volumeDevices/pdVol1
- tmpVDir, err := utiltesting.MkTmpdir("cinderBlockTest")
- if err != nil {
- t.Fatalf("can't make a temp dir: %v", err)
- }
- //deferred clean up
- defer os.RemoveAll(tmpVDir)
- expectedGlobalPath := filepath.Join(tmpVDir, testGlobalPath)
- //Bad Path
- badspec, err := getVolumeSpecFromGlobalMapPath("", "")
- if badspec != nil || err == nil {
- t.Errorf("Expected not to get spec from GlobalMapPath but did")
- }
- // Good Path
- spec, err := getVolumeSpecFromGlobalMapPath("myVolume", expectedGlobalPath)
- if spec == nil || err != nil {
- t.Fatalf("Failed to get spec from GlobalMapPath: %v", err)
- }
- if spec.PersistentVolume.Name != "myVolume" {
- t.Errorf("Invalid PV name from GlobalMapPath spec: %s", spec.PersistentVolume.Name)
- }
- if spec.PersistentVolume.Spec.Cinder.VolumeID != testVolName {
- t.Errorf("Invalid volumeID from GlobalMapPath spec: %s", spec.PersistentVolume.Spec.Cinder.VolumeID)
- }
- block := v1.PersistentVolumeBlock
- specMode := spec.PersistentVolume.Spec.VolumeMode
- if &specMode == nil {
- t.Errorf("Invalid volumeMode from GlobalMapPath spec: %v expected: %v", &specMode, block)
- }
- if *specMode != block {
- t.Errorf("Invalid volumeMode from GlobalMapPath spec: %v expected: %v", *specMode, block)
- }
- }
- func getTestVolume(readOnly bool, isBlock bool) *volume.Spec {
- pv := &v1.PersistentVolume{
- ObjectMeta: metav1.ObjectMeta{
- Name: testPVName,
- },
- Spec: v1.PersistentVolumeSpec{
- PersistentVolumeSource: v1.PersistentVolumeSource{
- Cinder: &v1.CinderPersistentVolumeSource{
- VolumeID: testVolName,
- },
- },
- },
- }
- if isBlock {
- blockMode := v1.PersistentVolumeBlock
- pv.Spec.VolumeMode = &blockMode
- }
- return volume.NewSpecFromPersistentVolume(pv, readOnly)
- }
- func TestGetPodAndPluginMapPaths(t *testing.T) {
- tmpVDir, err := utiltesting.MkTmpdir("cinderBlockTest")
- if err != nil {
- t.Fatalf("can't make a temp dir: %v", err)
- }
- //deferred clean up
- defer os.RemoveAll(tmpVDir)
- expectedGlobalPath := filepath.Join(tmpVDir, testGlobalPath)
- expectedPodPath := filepath.Join(tmpVDir, testPodPath)
- spec := getTestVolume(false, true /*isBlock*/)
- plugMgr := volume.VolumePluginMgr{}
- plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(t, tmpVDir, nil, nil))
- plug, err := plugMgr.FindMapperPluginByName(cinderVolumePluginName)
- if err != nil {
- os.RemoveAll(tmpVDir)
- t.Fatalf("Can't find the plugin by name: %q", cinderVolumePluginName)
- }
- if plug.GetPluginName() != cinderVolumePluginName {
- t.Fatalf("Wrong name: %s", plug.GetPluginName())
- }
- pod := &v1.Pod{ObjectMeta: metav1.ObjectMeta{UID: types.UID("poduid")}}
- mapper, err := plug.NewBlockVolumeMapper(spec, pod, volume.VolumeOptions{})
- if err != nil {
- t.Fatalf("Failed to make a new Mounter: %v", err)
- }
- if mapper == nil {
- t.Fatalf("Got a nil Mounter")
- }
- //GetGlobalMapPath
- gMapPath, err := mapper.GetGlobalMapPath(spec)
- if err != nil || len(gMapPath) == 0 {
- t.Fatalf("Invalid GlobalMapPath from spec: %s", spec.PersistentVolume.Spec.Cinder.VolumeID)
- }
- if gMapPath != expectedGlobalPath {
- t.Errorf("Failed to get GlobalMapPath: %s %s", gMapPath, expectedGlobalPath)
- }
- //GetPodDeviceMapPath
- gDevicePath, gVolName := mapper.GetPodDeviceMapPath()
- if gDevicePath != expectedPodPath {
- t.Errorf("Got unexpected pod path: %s, expected %s", gDevicePath, expectedPodPath)
- }
- if gVolName != testPVName {
- t.Errorf("Got unexpected volNamne: %s, expected %s", gVolName, testPVName)
- }
- }
|