-
Notifications
You must be signed in to change notification settings - Fork 41
/
main_test.go
110 lines (95 loc) · 2.3 KB
/
main_test.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
110
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"fmt"
"log"
"io"
"os"
"reflect"
"strings"
"testing"
"time"
"github.com/hashicorp/consul/api"
"github.com/hashicorp/consul/sdk/testutil"
)
// Change as needed to see log/consul-agent output
var output = io.Discard
var LOGOUT = output
var STDOUT = output
var STDERR = output
func TestMain(m *testing.M) {
log.SetOutput(LOGOUT)
MaxRTT = 500 * time.Millisecond
retryTime = 400 * time.Millisecond
agentTTL = 300 * time.Millisecond
os.Exit(m.Run())
}
//////
// utility functions used in tests
// New consul test process
func NewTestServer(t *testing.T) (*testutil.TestServer, error) {
return testutil.NewTestServerConfigT(t, func(c *testutil.TestServerConfig) {
c.Stdout = STDOUT
c.Stderr = STDERR
})
}
// Show diff between structs
func structDiff(act, exp interface{}) string {
var b strings.Builder
b.WriteString("\n")
va := valueOf(act)
ve := valueOf(exp)
te := ve.Type()
for i := 0; i < ve.NumField(); i++ {
if !ve.Field(i).CanInterface() {
continue
}
fe := ve.Field(i).Interface()
fa := va.Field(i).Interface()
if !reflect.DeepEqual(fe, fa) {
fmt.Fprintf(&b, "%s: ", te.Field(i).Name)
fmt.Fprintf(&b, "got: %#v", fa)
fmt.Fprintf(&b, ", want: %#v", fe)
}
}
return b.String()
}
// Compare 2 api.HealthChecks objects for important differences
func compareHealthCheck(c1, c2 *api.HealthCheck) error {
var skip = map[string]bool{
"CreateIndex": true,
"ModifyIndex": true,
"ServiceTags": true,
}
errs := []string{}
valof := valueOf(c1)
for i := 0; i < valof.NumField(); i++ {
f := valof.Type().Field(i).Name
if skip[f] {
continue
}
if err := compareFields(c1, c2, f); err != nil {
errs = append(errs, err.Error())
}
}
if len(errs) > 0 {
return fmt.Errorf("Checks differ: %s", strings.Join(errs, ", "))
}
return nil
}
func compareFields(act, exp interface{}, field string) error {
av, ev := valueOf(act), valueOf(exp)
af := av.FieldByName(field).Interface()
ef := ev.FieldByName(field).Interface()
if !reflect.DeepEqual(af, ef) {
return fmt.Errorf("%s(got: %v, want: %v)", field, af, ef)
}
return nil
}
func valueOf(o interface{}) reflect.Value {
if reflect.TypeOf(o).Kind() == reflect.Ptr {
return reflect.ValueOf(o).Elem()
}
return reflect.ValueOf(o)
}