
The path module has a few different functions: Clean, Split, Join, Ext, Dir, Base, IsAbs. These functions do not take into account the OS-specific path separator, meaning that they won't behave as intended on Windows. For example, Dir is supposed to return all but the last element of the path. For the path "C:\some\dir\somewhere", it is supposed to return "C:\some\dir\", however, it returns ".". Instead of these functions, the ones in filepath should be used instead.
261 lines
5.2 KiB
Go
261 lines
5.2 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 removeall
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
utiltesting "k8s.io/client-go/util/testing"
|
|
"k8s.io/mount-utils"
|
|
)
|
|
|
|
type fakeMounter struct {
|
|
mount.FakeMounter
|
|
}
|
|
|
|
// IsLikelyNotMountPoint overrides mount.FakeMounter.IsLikelyNotMountPoint for our use.
|
|
func (f *fakeMounter) IsLikelyNotMountPoint(file string) (bool, error) {
|
|
name := filepath.Base(file)
|
|
if strings.HasPrefix(name, "mount") {
|
|
return false, nil
|
|
}
|
|
if strings.HasPrefix(name, "err") {
|
|
return false, errors.New("mock error")
|
|
}
|
|
return true, nil
|
|
}
|
|
|
|
func TestRemoveAllOneFilesystem(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
// Items of the test directory. Directories end with "/".
|
|
// Directories starting with "mount" are considered to be mount points.
|
|
// Directories starting with "err" will cause an error in
|
|
// IsLikelyNotMountPoint.
|
|
items []string
|
|
expectError bool
|
|
}{
|
|
{
|
|
"empty dir",
|
|
[]string{},
|
|
false,
|
|
},
|
|
{
|
|
"non-mount",
|
|
[]string{
|
|
"dir/",
|
|
"dir/file",
|
|
"dir2/",
|
|
"file2",
|
|
},
|
|
false,
|
|
},
|
|
{
|
|
"mount",
|
|
[]string{
|
|
"dir/",
|
|
"dir/file",
|
|
"dir2/",
|
|
"file2",
|
|
"mount/",
|
|
"mount/file3",
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"innermount",
|
|
[]string{
|
|
"dir/",
|
|
"dir/file",
|
|
"dir/dir2/",
|
|
"dir/dir2/file2",
|
|
"dir/dir2/mount/",
|
|
"dir/dir2/mount/file3",
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"error",
|
|
[]string{
|
|
"dir/",
|
|
"dir/file",
|
|
"dir2/",
|
|
"file2",
|
|
"err/",
|
|
"err/file3",
|
|
},
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tmpDir, err := utiltesting.MkTmpdir("removeall-" + test.name + "-")
|
|
if err != nil {
|
|
t.Fatalf("Can't make a tmp dir: %v", err)
|
|
}
|
|
defer os.RemoveAll(tmpDir)
|
|
// Create the directory structure
|
|
for _, item := range test.items {
|
|
if strings.HasSuffix(item, "/") {
|
|
item = strings.TrimRight(item, "/")
|
|
if err = os.Mkdir(filepath.Join(tmpDir, item), 0777); err != nil {
|
|
t.Fatalf("error creating %s: %v", item, err)
|
|
}
|
|
} else {
|
|
f, err := os.Create(filepath.Join(tmpDir, item))
|
|
if err != nil {
|
|
t.Fatalf("error creating %s: %v", item, err)
|
|
}
|
|
f.Close()
|
|
}
|
|
}
|
|
|
|
mounter := &fakeMounter{}
|
|
err = RemoveAllOneFilesystem(mounter, tmpDir)
|
|
if err == nil && test.expectError {
|
|
t.Errorf("test %q failed: expected error and got none", test.name)
|
|
}
|
|
if err != nil && !test.expectError {
|
|
t.Errorf("test %q failed: unexpected error: %v", test.name, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestRemoveDirsOneFilesystem(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
// Items of the test directory. Directories end with "/".
|
|
// Directories starting with "mount" are considered to be mount points.
|
|
// Directories starting with "err" will cause an error in
|
|
// IsLikelyNotMountPoint.
|
|
items []string
|
|
expectError bool
|
|
}{
|
|
{
|
|
"empty dir",
|
|
[]string{},
|
|
false,
|
|
},
|
|
{
|
|
"non-mount-no-files",
|
|
[]string{
|
|
"dir/",
|
|
"dir/subdir1/",
|
|
"dir2/",
|
|
"dir2/subdir2/",
|
|
"dir2/subdir2/subdir3/",
|
|
"dir3/",
|
|
},
|
|
false,
|
|
},
|
|
{
|
|
"non-mount-with-files",
|
|
[]string{
|
|
"dir/",
|
|
"dir/file",
|
|
"dir2/",
|
|
"file2",
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"mount-no-files",
|
|
[]string{
|
|
"dir/",
|
|
"dir/subdir1/",
|
|
"dir2/",
|
|
"dir2/subdir2/",
|
|
"dir2/subdir2/subdir3/",
|
|
"mount/",
|
|
"mount/dir3/",
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"mount-with-files",
|
|
[]string{
|
|
"dir/",
|
|
"dir/file",
|
|
"dir2/",
|
|
"file2",
|
|
"mount/",
|
|
"mount/file3",
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"innermount",
|
|
[]string{
|
|
"dir/",
|
|
"dir/subdir1/",
|
|
"dir/dir2/",
|
|
"dir/dir2/subdir2/",
|
|
"dir/dir2/mount/",
|
|
"dir/dir2/mount/subdir3/",
|
|
},
|
|
true,
|
|
},
|
|
{
|
|
"error",
|
|
[]string{
|
|
"dir/",
|
|
"dir/subdir1/",
|
|
"dir2/",
|
|
"err/",
|
|
"err/subdir3/",
|
|
},
|
|
true,
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
tmpDir, err := utiltesting.MkTmpdir("removeall-" + test.name + "-")
|
|
if err != nil {
|
|
t.Fatalf("Can't make a tmp dir: %v", err)
|
|
}
|
|
defer os.RemoveAll(tmpDir)
|
|
// Create the directory structure
|
|
for _, item := range test.items {
|
|
if strings.HasSuffix(item, "/") {
|
|
item = strings.TrimRight(item, "/")
|
|
if err = os.Mkdir(filepath.Join(tmpDir, item), 0777); err != nil {
|
|
t.Fatalf("error creating %s: %v", item, err)
|
|
}
|
|
} else {
|
|
f, err := os.Create(filepath.Join(tmpDir, item))
|
|
if err != nil {
|
|
t.Fatalf("error creating %s: %v", item, err)
|
|
}
|
|
f.Close()
|
|
}
|
|
}
|
|
|
|
mounter := &fakeMounter{}
|
|
err = RemoveDirsOneFilesystem(mounter, tmpDir)
|
|
if err == nil && test.expectError {
|
|
t.Errorf("test %q failed: expected error and got none", test.name)
|
|
}
|
|
if err != nil && !test.expectError {
|
|
t.Errorf("test %q failed: unexpected error: %v", test.name, err)
|
|
}
|
|
}
|
|
}
|