2014-12-03 02:43:38 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
2014-12-03 02:43:38 +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 mount
|
|
|
|
|
2015-03-07 20:33:26 +00:00
|
|
|
// FakeMounter implements mount.Interface for tests.
|
2015-03-04 18:29:01 +00:00
|
|
|
type FakeMounter struct {
|
2015-03-06 16:46:07 +00:00
|
|
|
MountPoints []MountPoint
|
2015-03-07 20:33:26 +00:00
|
|
|
Log []FakeAction
|
|
|
|
}
|
|
|
|
|
2015-05-25 15:40:50 +00:00
|
|
|
var _ Interface = &FakeMounter{}
|
|
|
|
|
2015-03-07 20:33:26 +00:00
|
|
|
// Values for FakeAction.Action
|
|
|
|
const FakeActionMount = "mount"
|
|
|
|
const FakeActionUnmount = "unmount"
|
|
|
|
|
|
|
|
// FakeAction objects are logged every time a fake mount or unmount is called.
|
|
|
|
type FakeAction struct {
|
|
|
|
Action string // "mount" or "unmount"
|
|
|
|
Target string // applies to both mount and unmount actions
|
|
|
|
Source string // applies only to "mount" actions
|
|
|
|
FSType string // applies only to "mount" actions
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FakeMounter) ResetLog() {
|
|
|
|
f.Log = []FakeAction{}
|
2015-03-04 18:29:01 +00:00
|
|
|
}
|
2014-12-03 02:43:38 +00:00
|
|
|
|
2015-04-03 01:08:04 +00:00
|
|
|
func (f *FakeMounter) Mount(source string, target string, fstype string, options []string) error {
|
2015-04-01 02:08:33 +00:00
|
|
|
f.MountPoints = append(f.MountPoints, MountPoint{Device: source, Path: target, Type: fstype})
|
2015-03-07 20:33:26 +00:00
|
|
|
f.Log = append(f.Log, FakeAction{Action: FakeActionMount, Target: target, Source: source, FSType: fstype})
|
2014-12-03 02:43:38 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-04-03 01:08:04 +00:00
|
|
|
func (f *FakeMounter) Unmount(target string) error {
|
2015-04-01 02:08:33 +00:00
|
|
|
newMountpoints := []MountPoint{}
|
|
|
|
for _, mp := range f.MountPoints {
|
|
|
|
if mp.Path != target {
|
|
|
|
newMountpoints = append(newMountpoints, MountPoint{Device: mp.Device, Path: mp.Path, Type: mp.Type})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.MountPoints = newMountpoints
|
2015-03-07 20:33:26 +00:00
|
|
|
f.Log = append(f.Log, FakeAction{Action: FakeActionUnmount, Target: target})
|
2014-12-03 02:43:38 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-04 18:29:01 +00:00
|
|
|
func (f *FakeMounter) List() ([]MountPoint, error) {
|
2015-03-06 16:46:07 +00:00
|
|
|
return f.MountPoints, nil
|
2014-12-03 02:43:38 +00:00
|
|
|
}
|
2015-04-01 02:08:33 +00:00
|
|
|
|
2015-04-16 23:49:53 +00:00
|
|
|
func (f *FakeMounter) IsLikelyNotMountPoint(file string) (bool, error) {
|
2015-04-01 02:08:33 +00:00
|
|
|
for _, mp := range f.MountPoints {
|
|
|
|
if mp.Path == file {
|
2015-04-16 23:49:53 +00:00
|
|
|
return false, nil
|
2015-04-01 02:08:33 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-16 23:49:53 +00:00
|
|
|
return true, nil
|
2015-04-01 02:08:33 +00:00
|
|
|
}
|