
This change is prerequisite for implementing iSCSI attacher and detacher. In order to use chap authentication at iSCSI plugin after implementing attacher and detacher, secret is needed at AttachDisk() which is called from WaitForAttach(). To obtain secret, pod information is required, but WaitForAttach() doesn't pass pod information inside. This patch adds 'pod' as an argument of WaitForAttach() and adds changes to drivers who implements WaitForAttach(). Fixes #48953
77 lines
1.9 KiB
Go
77 lines
1.9 KiB
Go
/*
|
|
Copyright 2017 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 flexvolume
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"k8s.io/api/core/v1"
|
|
"k8s.io/kubernetes/pkg/volume"
|
|
)
|
|
|
|
func TestAttach(t *testing.T) {
|
|
spec := fakeVolumeSpec()
|
|
|
|
plugin, _ := testPlugin()
|
|
plugin.runner = fakeRunner(
|
|
assertDriverCall(t, notSupportedOutput(), attachCmd,
|
|
specJson(plugin, spec, nil), "localhost"),
|
|
)
|
|
|
|
a, _ := plugin.NewAttacher()
|
|
a.Attach(spec, "localhost")
|
|
}
|
|
|
|
func TestWaitForAttach(t *testing.T) {
|
|
spec := fakeVolumeSpec()
|
|
var pod *v1.Pod
|
|
plugin, _ := testPlugin()
|
|
plugin.runner = fakeRunner(
|
|
assertDriverCall(t, notSupportedOutput(), waitForAttachCmd, "/dev/sdx",
|
|
specJson(plugin, spec, nil)),
|
|
)
|
|
|
|
a, _ := plugin.NewAttacher()
|
|
a.WaitForAttach(spec, "/dev/sdx", pod, 1*time.Second)
|
|
}
|
|
|
|
func TestMountDevice(t *testing.T) {
|
|
spec := fakeVolumeSpec()
|
|
|
|
plugin, rootDir := testPlugin()
|
|
plugin.runner = fakeRunner(
|
|
assertDriverCall(t, notSupportedOutput(), mountDeviceCmd, rootDir+"/mount-dir", "/dev/sdx",
|
|
specJson(plugin, spec, nil)),
|
|
)
|
|
|
|
a, _ := plugin.NewAttacher()
|
|
a.MountDevice(spec, "/dev/sdx", rootDir+"/mount-dir")
|
|
}
|
|
|
|
func TestIsVolumeAttached(t *testing.T) {
|
|
spec := fakeVolumeSpec()
|
|
|
|
plugin, _ := testPlugin()
|
|
plugin.runner = fakeRunner(
|
|
assertDriverCall(t, notSupportedOutput(), isAttached, specJson(plugin, spec, nil), "localhost"),
|
|
)
|
|
a, _ := plugin.NewAttacher()
|
|
specs := []*volume.Spec{spec}
|
|
a.VolumesAreAttached(specs, "localhost")
|
|
}
|