forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.go
194 lines (170 loc) · 5.34 KB
/
result.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// Copyright 2021 PingCAP, Inc.
//
// 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.
//go:build !codes
package testkit
import (
"bytes"
"fmt"
"strings"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/exp/slices"
)
// Result is the result returned by MustQuery.
type Result struct {
rows [][]string
comment string
require *require.Assertions
assert *assert.Assertions
}
// Check asserts the result equals the expected results.
func (res *Result) Check(expected [][]interface{}) {
resBuff := bytes.NewBufferString("")
for _, row := range res.rows {
_, _ = fmt.Fprintf(resBuff, "%s\n", row)
}
needBuff := bytes.NewBufferString("")
for _, row := range expected {
_, _ = fmt.Fprintf(needBuff, "%s\n", row)
}
res.require.Equal(needBuff.String(), resBuff.String(), res.comment)
}
// Equal check whether the result equals the expected results.
func (res *Result) Equal(expected [][]interface{}) bool {
resBuff := bytes.NewBufferString("")
for _, row := range res.rows {
_, _ = fmt.Fprintf(resBuff, "%s\n", row)
}
needBuff := bytes.NewBufferString("")
for _, row := range expected {
_, _ = fmt.Fprintf(needBuff, "%s\n", row)
}
return bytes.Equal(needBuff.Bytes(), resBuff.Bytes())
}
// AddComment adds the extra comment for the Result's output.
func (res *Result) AddComment(c string) {
res.comment += "\n" + c
}
// CheckWithFunc asserts the result match the expected results in the way `f` specifies.
func (res *Result) CheckWithFunc(expected [][]interface{}, f func([]string, []interface{}) bool) {
res.require.Equal(len(res.rows), len(expected), res.comment+"\nResult length mismatch")
for i, resRow := range res.rows {
expectedRow := expected[i]
res.require.Truef(f(resRow, expectedRow), res.comment+"\nCheck with function failed\nactual: %s\nexpected: %s", resRow, expectedRow)
}
}
// Rows is similar to RowsWithSep, use white space as separator string.
func Rows(args ...string) [][]interface{} {
return RowsWithSep(" ", args...)
}
// Sort sorts and return the result.
func (res *Result) Sort() *Result {
slices.SortFunc(res.rows, func(a, b []string) bool {
for i := range a {
if a[i] < b[i] {
return true
} else if a[i] > b[i] {
return false
}
}
return false
})
return res
}
// RowsWithSep is a convenient function to wrap args to a slice of []interface.
// The arg represents a row, split by sep.
func RowsWithSep(sep string, args ...string) [][]interface{} {
rows := make([][]interface{}, len(args))
for i, v := range args {
parts := strings.Split(v, sep)
row := make([]interface{}, len(parts))
for j, s := range parts {
row[j] = s
}
rows[i] = row
}
return rows
}
// Rows returns the result data.
func (res *Result) Rows() [][]interface{} {
ifacesSlice := make([][]interface{}, len(res.rows))
for i := range res.rows {
ifaces := make([]interface{}, len(res.rows[i]))
for j := range res.rows[i] {
ifaces[j] = res.rows[i][j]
}
ifacesSlice[i] = ifaces
}
return ifacesSlice
}
// CheckAt asserts the result of selected columns equals the expected results.
func (res *Result) CheckAt(cols []int, expected [][]interface{}) {
for _, e := range expected {
res.require.Equal(len(e), len(cols))
}
rows := make([][]string, 0, len(expected))
for i := range res.rows {
row := make([]string, 0, len(cols))
for _, r := range cols {
row = append(row, res.rows[i][r])
}
rows = append(rows, row)
}
got := fmt.Sprintf("%s", rows)
need := fmt.Sprintf("%s", expected)
res.require.Equal(need, got, res.comment)
}
// CheckContain checks whether the result contains the expected string
func (res *Result) CheckContain(expected string) {
var result strings.Builder
for i, row := range res.rows {
if i > 0 {
result.WriteString("\n")
}
for j, colValue := range row {
if j > 0 {
result.WriteString(" ")
}
result.WriteString(colValue)
if strings.Contains(colValue, expected) {
return
}
}
}
comment := fmt.Sprintf("the result doesn't contain the exepected %s\n%s", expected, result.String())
res.require.Equal(true, false, comment)
}
// MultiCheckContain checks whether the result contains strings in `expecteds`
func (res *Result) MultiCheckContain(expecteds []string) {
for _, expected := range expecteds {
res.CheckContain(expected)
}
}
// CheckNotContain checks whether the result doesn't contain the expected string
func (res *Result) CheckNotContain(unexpected string) {
for _, row := range res.rows {
for _, colValue := range row {
if strings.Contains(colValue, unexpected) {
comment := fmt.Sprintf("the result contain the unexepected %s", unexpected)
res.require.Equal(true, false, comment)
}
}
}
}
// MultiCheckNotContain checks whether the result doesn't contain the strings in `expected`
func (res *Result) MultiCheckNotContain(unexpecteds []string) {
for _, unexpected := range unexpecteds {
res.CheckNotContain(unexpected)
}
}