-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathutils.go
76 lines (66 loc) · 1.85 KB
/
utils.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package common
import (
"bytes"
"os"
"path/filepath"
"runtime"
"strconv"
"strings"
"time"
"github.com/stackrox/collector/integration-tests/pkg/config"
"github.com/stackrox/collector/integration-tests/pkg/log"
"golang.org/x/sys/unix"
"k8s.io/utils/strings/slices"
)
// quoteArgs will add quotes around any arguments require it for the shell.
func QuoteArgs(args []string) []string {
quotedArgs := []string{}
for _, arg := range args {
argQuoted := strconv.Quote(arg)
argQuotedTrimmed := strings.Trim(argQuoted, "\"")
if arg != argQuotedTrimmed || strings.Contains(arg, " ") {
arg = argQuoted
}
quotedArgs = append(quotedArgs, arg)
}
return quotedArgs
}
// Returns the min of two integers.
// Strangely there is no such built in or function in math
func Min(x int, y int) int {
if x < y {
return x
}
return y
}
// Identifies if the current architecture is in the specified supported list.
// Returns a boolean flag indicatind the result, and the actual architecture,
// that was discovered.
func ArchSupported(supported ...string) (bool, string) {
u := unix.Utsname{}
unix.Uname(&u)
// Exclude null bytes from comparison
arch := string(bytes.Trim(u.Machine[:], "\x00"))
return slices.Contains(supported, arch), arch
}
// Creates a new file to dump logs into
func PrepareLog(testName string, logName string) (*os.File, error) {
pathSections := []string{
".", "container-logs",
config.VMInfo().Config,
config.CollectionMethod(),
testName,
}
logDirectory := filepath.Join(pathSections...)
err := os.MkdirAll(logDirectory, os.ModePerm)
if err != nil {
return nil, err
}
logPath := filepath.Join(logDirectory, logName)
return os.Create(logPath)
}
func Sleep(duration time.Duration) {
_, filename, line, _ := runtime.Caller(1)
log.Info("[%s:%d] sleep %f s", filepath.Base(filename), line, duration.Seconds())
time.Sleep(duration)
}