forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
db_image_helpers.go
107 lines (93 loc) · 3.18 KB
/
db_image_helpers.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
package util
import (
"fmt"
"os/exec"
"reflect"
"strings"
"time"
g "github.com/onsi/ginkgo"
"k8s.io/apimachinery/pkg/util/wait"
e2e "k8s.io/kubernetes/test/e2e/framework"
)
// Database interface allows testing database images.
type Database interface {
// PodName returns the name of the Pod this helper is bound to.
PodName() string
// IsReady indicates whether the underlying Pod is ready for queries.
IsReady(oc *CLI) (bool, error)
// Query queries the database as a regular user.
Query(oc *CLI, query string) (string, error)
// QueryPrivileged queries the database as a privileged user.
QueryPrivileged(oc *CLI, query string) (string, error)
// TestRemoteLogin tests whether it is possible to remote login to hostAddress.
TestRemoteLogin(oc *CLI, hostAddress string) error
}
// ReplicaSet interface allows to interact with database on multiple nodes.
type ReplicaSet interface {
// QueryPrimary queries the database on primary node as a regular user.
QueryPrimary(oc *CLI, query string) (string, error)
}
// WaitForQueryOutputSatisfies will execute the query multiple times, until the
// specified predicate function is return true.
func WaitForQueryOutputSatisfies(oc *CLI, d Database, timeout time.Duration, admin bool, query string, predicate func(string) bool) error {
err := wait.Poll(5*time.Second, timeout, func() (bool, error) {
var (
out string
err error
)
if admin {
out, err = d.QueryPrivileged(oc, query)
} else {
out, err = d.Query(oc, query)
}
fmt.Fprintf(g.GinkgoWriter, "Query %s result: %s\n", query, out)
if _, ok := err.(*ExitError); ok {
// Ignore exit errors
return false, nil
}
if _, ok := err.(*exec.ExitError); ok {
// Ignore exit errors
return false, nil
}
if err != nil {
e2e.Logf("failing immediately with error: %v, type=%v", err, reflect.TypeOf(err))
return false, err
}
if predicate(out) {
return true, nil
}
return false, nil
})
if err == wait.ErrWaitTimeout {
return fmt.Errorf("timed out waiting for query: %q", query)
}
return err
}
// WaitForQueryOutputContains will execute the query multiple times, until the
// specified substring is found in the results. This function should be used for
// testing replication, since it might take some time until the data is propagated
// to slaves.
func WaitForQueryOutputContains(oc *CLI, d Database, timeout time.Duration, admin bool, query, resultSubstr string) error {
return WaitForQueryOutputSatisfies(oc, d, timeout, admin, query, func(resultOutput string) bool {
return strings.Contains(resultOutput, resultSubstr)
})
}
// WaitUntilUp continuously waits for the server to become ready, up until timeout.
func WaitUntilUp(oc *CLI, d Database, timeout time.Duration) error {
err := wait.Poll(2*time.Second, timeout, func() (bool, error) {
return d.IsReady(oc)
})
if err == wait.ErrWaitTimeout {
return fmt.Errorf("timed out waiting for pod %s get up", d.PodName())
}
return err
}
// WaitUntilAllHelpersAreUp waits until all helpers are ready to serve requests.
func WaitUntilAllHelpersAreUp(oc *CLI, helpers []Database) error {
for _, m := range helpers {
if err := WaitUntilUp(oc, m, 3*time.Minute); err != nil {
return err
}
}
return nil
}