-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
testutil.go
109 lines (99 loc) · 2.35 KB
/
testutil.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package test
import (
"context"
"encoding/json"
"fmt"
"log"
"net"
"os"
"testing"
"time"
"github.com/ghodss/yaml"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/client-go/tools/cache"
)
// StartInformer is a helper to start an informer, wait for its cache to sync and return a cancel func
func StartInformer(informer cache.SharedIndexInformer) context.CancelFunc {
ctx, cancel := context.WithCancel(context.Background())
go informer.Run(ctx.Done())
if !cache.WaitForCacheSync(ctx.Done(), informer.HasSynced) {
log.Fatal("Timed out waiting for informer cache to sync")
}
return cancel
}
// GetFreePort finds an available free port on the OS
func GetFreePort() (int, error) {
ln, err := net.Listen("tcp", "[::]:0")
if err != nil {
return 0, err
}
return ln.Addr().(*net.TCPAddr).Port, ln.Close()
}
// WaitForPortListen waits until the given address is listening on the port
func WaitForPortListen(addr string, timeout time.Duration) error {
ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop()
timer := time.NewTimer(timeout)
if timeout == 0 {
timer.Stop()
} else {
defer timer.Stop()
}
for {
select {
case <-ticker.C:
if portIsOpen(addr) {
return nil
}
case <-timer.C:
return fmt.Errorf("timeout after %s", timeout.String())
}
}
}
func portIsOpen(addr string) bool {
conn, err := net.Dial("tcp", addr)
if err != nil {
return false
}
_ = conn.Close()
return true
}
// Read the contents of a file and returns it as string. Panics on error.
func MustLoadFileToString(path string) string {
o, err := os.ReadFile(path)
if err != nil {
panic(err.Error())
}
return string(o)
}
func YamlToUnstructured(yamlStr string) *unstructured.Unstructured {
obj := make(map[string]interface{})
err := yaml.Unmarshal([]byte(yamlStr), &obj)
if err != nil {
panic(err)
}
return &unstructured.Unstructured{Object: obj}
}
// ToMap converts any object to a map[string]interface{}
func ToMap(obj interface{}) map[string]interface{} {
data, err := json.Marshal(obj)
if err != nil {
panic(err)
}
var res map[string]interface{}
err = json.Unmarshal(data, &res)
if err != nil {
panic(err)
}
return res
}
// GetTestDir will return the full directory path of the
// calling test file.
func GetTestDir(t *testing.T) string {
t.Helper()
cwd, err := os.Getwd()
if err != nil {
t.Fatal(err)
}
return cwd
}