mirror of https://github.com/k3s-io/k3s
103 lines
3.1 KiB
Go
103 lines
3.1 KiB
Go
/*
|
|
Copyright 2015 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 flocker
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
utiltesting "k8s.io/client-go/util/testing"
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
volumetest "k8s.io/kubernetes/pkg/volume/testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func newTestableProvisioner(assert *assert.Assertions, options volume.VolumeOptions) (string, volume.Provisioner) {
|
|
tmpDir, err := utiltesting.MkTmpdir("flockervolumeTest")
|
|
assert.NoError(err, fmt.Sprintf("can't make a temp dir: %v", err))
|
|
|
|
plugMgr := volume.VolumePluginMgr{}
|
|
plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(tmpDir, nil, nil))
|
|
|
|
plug, err := plugMgr.FindPluginByName(pluginName)
|
|
assert.NoError(err, "Can't find the plugin by name")
|
|
|
|
provisioner, err := plug.(*flockerPlugin).newProvisionerInternal(options, &fakeFlockerUtil{})
|
|
assert.NoError(err, fmt.Sprintf("Can't create new provisioner:%v", err))
|
|
return tmpDir, provisioner
|
|
}
|
|
|
|
func TestProvision(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
pvc := volumetest.CreateTestPVC("3Gi", []v1.PersistentVolumeAccessMode{v1.ReadWriteOnce})
|
|
options := volume.VolumeOptions{
|
|
PVC: pvc,
|
|
PersistentVolumeReclaimPolicy: v1.PersistentVolumeReclaimDelete,
|
|
}
|
|
|
|
dir, provisioner := newTestableProvisioner(assert, options)
|
|
defer os.RemoveAll(dir)
|
|
|
|
persistentSpec, err := provisioner.Provision()
|
|
assert.NoError(err, "Provision() failed: ", err)
|
|
|
|
cap := persistentSpec.Spec.Capacity[v1.ResourceStorage]
|
|
|
|
assert.Equal(int64(3*1024*1024*1024), cap.Value())
|
|
|
|
assert.Equal(
|
|
"test-flocker-volume-uuid",
|
|
persistentSpec.Spec.PersistentVolumeSource.Flocker.DatasetUUID,
|
|
)
|
|
|
|
assert.Equal(
|
|
map[string]string{"fakeflockerutil": "yes"},
|
|
persistentSpec.Labels,
|
|
)
|
|
|
|
// parameters are not supported
|
|
options = volume.VolumeOptions{
|
|
PVC: pvc,
|
|
PersistentVolumeReclaimPolicy: v1.PersistentVolumeReclaimDelete,
|
|
Parameters: map[string]string{
|
|
"not-supported-params": "test123",
|
|
},
|
|
}
|
|
|
|
dir, provisioner = newTestableProvisioner(assert, options)
|
|
defer os.RemoveAll(dir)
|
|
persistentSpec, err = provisioner.Provision()
|
|
assert.Error(err, "Provision() did not fail with Parameters specified")
|
|
|
|
// selectors are not supported
|
|
pvc.Spec.Selector = &metav1.LabelSelector{MatchLabels: map[string]string{"key": "value"}}
|
|
options = volume.VolumeOptions{
|
|
PVC: pvc,
|
|
PersistentVolumeReclaimPolicy: v1.PersistentVolumeReclaimDelete,
|
|
}
|
|
|
|
dir, provisioner = newTestableProvisioner(assert, options)
|
|
defer os.RemoveAll(dir)
|
|
persistentSpec, err = provisioner.Provision()
|
|
assert.Error(err, "Provision() did not fail with Selector specified")
|
|
}
|