mirror of
https://github.com/kubernetes/client-go.git
synced 2025-07-30 14:30:47 +00:00
add remove_file in client-go util directory
Kubernetes-commit: f49cc5eb113b839a5f5c6121ff0b89f82a483011
This commit is contained in:
parent
328d0fb9ee
commit
a9b2f9e9eb
40
util/testing/remove_file.go
Normal file
40
util/testing/remove_file.go
Normal file
@ -0,0 +1,40 @@
|
||||
/*
|
||||
Copyright 2023 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 testing
|
||||
|
||||
import (
|
||||
"os"
|
||||
"testing"
|
||||
)
|
||||
|
||||
// CloseAndRemove is a helper to close and remove test file.
|
||||
func CloseAndRemove(t *testing.T, files ...*os.File) {
|
||||
t.Helper()
|
||||
// We should close it first before remove a file, it's not only a good practice,
|
||||
// but also can avoid failed file removing on Windows OS.
|
||||
for _, f := range files {
|
||||
if f == nil {
|
||||
continue
|
||||
}
|
||||
if err := f.Close(); err != nil {
|
||||
t.Fatalf("Error closing %s: %v", f.Name(), err)
|
||||
}
|
||||
if err := os.Remove(f.Name()); err != nil {
|
||||
t.Fatalf("Error removing %s: %v", f.Name(), err)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user