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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
package reql_tests
import (
"fmt"
"math"
"reflect"
"regexp"
"strings"
"time"
"github.com/stretchr/testify/suite"
r "gopkg.in/rethinkdb/rethinkdb-go.v6"
"gopkg.in/rethinkdb/rethinkdb-go.v6/internal/compare"
)
func maybeRun(query interface{}, session *r.Session, opts r.RunOpts) interface{} {
switch query := query.(type) {
case r.Term:
cursor, err := query.Run(session, opts)
if err != nil {
return err
}
switch cursor.Type() {
case "Cursor":
results, err := cursor.Interface()
if err != nil {
return err
}
return results
default:
// If this is a changefeed then return the cursor without attempting
// to read any documents
return cursor
}
default:
return query
}
}
func runAndAssert(suite suite.Suite, expected, v interface{}, session *r.Session, opts r.RunOpts) {
var cursor *r.Cursor
var err error
switch v := v.(type) {
case r.Term:
cursor, err = v.Run(session, opts)
case *r.Cursor:
cursor = v
case error:
err = v
}
assertExpected(suite, expected, cursor, err)
}
func fetchAndAssert(suite suite.Suite, expected, result interface{}, count int) {
switch v := expected.(type) {
case compare.Expected:
v.Fetch = true
v.FetchCount = count
expected = v
default:
expected = compare.Expected(compare.Expected{
Val: v,
Fetch: true,
FetchCount: count,
})
}
var cursor *r.Cursor
var err error
switch result := result.(type) {
case *r.Cursor:
cursor = result
case error:
err = result
}
assertExpected(suite, expected, cursor, err)
}
func maybeLen(v interface{}) interface{} {
switch v := v.(type) {
case *r.Cursor:
results := []interface{}{}
v.All(&results)
return len(results)
case []interface{}:
return len(v)
default:
return v
}
}
func assertExpected(suite suite.Suite, expected interface{}, obtainedCursor *r.Cursor, obtainedErr error) {
if expected == compare.AnythingIsFine {
suite.NoError(obtainedErr, "Query returned unexpected error")
return
}
switch expected := expected.(type) {
case Err:
expected.assert(suite, obtainedCursor, obtainedErr)
case compare.Expected:
assert(suite, expected, obtainedCursor, obtainedErr)
default:
assert(suite, compare.Expected{Val: expected}, obtainedCursor, obtainedErr)
}
}
func assert(suite suite.Suite, expected compare.Expected, obtainedCursor *r.Cursor, obtainedErr error) {
if !suite.NoError(obtainedErr, "Query returned unexpected error") {
return
}
expectedVal := reflect.ValueOf(expected.Val)
// If expected value is nil then ensure cursor is nil (assume that an
// invalid reflect value is because expected value is nil)
if !expectedVal.IsValid() || (expectedVal.Kind() == reflect.Ptr && expectedVal.IsNil()) {
suite.True(obtainedCursor.IsNil(), "Expected nil cursor")
return
}
expectedType := expectedVal.Type()
expectedKind := expectedType.Kind()
if expectedKind == reflect.Array || expectedKind == reflect.Slice || expected.Fetch {
if expectedType.Elem().Kind() == reflect.Uint8 {
// Decode byte slices slightly differently
var obtained = []byte{}
err := obtainedCursor.One(&obtained)
suite.NoError(err, "Error returned when reading query response")
compare.Assert(suite.T(), expected, obtained)
} else {
var obtained = []interface{}{}
if expected.Fetch {
var v interface{}
for obtainedCursor.Next(&v) {
obtained = append(obtained, v)
if expected.FetchCount != 0 && len(obtained) >= expected.FetchCount {
break
}
}
suite.NoError(obtainedCursor.Err(), "Error returned when reading query response")
} else {
err := obtainedCursor.All(&obtained)
suite.NoError(err, "Error returned when reading query response")
}
compare.Assert(suite.T(), expected, obtained)
}
} else if expectedKind == reflect.Map {
var obtained map[string]interface{}
err := obtainedCursor.One(&obtained)
suite.NoError(err, "Error returned when reading query response")
compare.Assert(suite.T(), expected, obtained)
} else {
var obtained interface{}
err := obtainedCursor.One(&obtained)
suite.NoError(err, "Error returned when reading query response")
compare.Assert(suite.T(), expected, obtained)
}
}
func int_cmp(i int) int {
return i
}
func float_cmp(i float64) float64 {
return i
}
func arrlen(length int, vs ...interface{}) []interface{} {
var v interface{} = compare.AnythingIsFine
if len(vs) == 1 {
v = vs[0]
}
arr := make([]interface{}, length)
for i := 0; i < length; i++ {
arr[i] = v
}
return arr
}
func str(v interface{}) string {
return fmt.Sprintf("%v", v)
}
func wait(s int) interface{} {
time.Sleep(time.Duration(s) * time.Second)
return nil
}
type Err struct {
Type string
Message string
Regex string
}
var exceptionRegex = regexp.MustCompile("^(?P<message>[^\n]*?)((?: in:)?\n|\nFailed assertion:)(?s).*$")
func (expected Err) assert(suite suite.Suite, obtainerCursor *r.Cursor, obtainedErr error) {
// If the error is nil then attempt to read from the cursor and see if an
// error is returned
if obtainedErr == nil {
var res []interface{}
obtainedErr = obtainerCursor.All(&res)
}
if !suite.Error(obtainedErr) {
return
}
obtainedType := reflect.TypeOf(obtainedErr).String()
obtainedMessage := strings.TrimPrefix(obtainedErr.Error(), "rethinkdb: ")
obtainedMessage = exceptionRegex.ReplaceAllString(obtainedMessage, "${message}")
suite.Equal(expected.Type, obtainedType)
if expected.Regex != "" {
suite.Regexp(expected.Regex, obtainedMessage)
}
if expected.Message != "" {
suite.Equal(expected.Message, obtainedMessage)
}
}
func err(errType, message string) Err {
return Err{
Type: "rethinkdb.RQL" + errType[4:],
Message: message,
}
}
func err_regex(errType, expr string) Err {
return Err{
Type: "rethinkdb.RQL" + errType[4:],
Regex: expr,
}
}
var Ast = struct {
RqlTzinfo func(tz string) *time.Location
Fromtimestamp func(ts float64, loc *time.Location) time.Time
Now func() time.Time
}{
func(tz string) *time.Location {
t, _ := time.Parse("-07:00 UTC", tz+" UTC")
return t.Location()
},
func(ts float64, loc *time.Location) time.Time {
sec, nsec := math.Modf(ts)
return time.Unix(int64(sec), int64(nsec*1000)*1000000).In(loc)
},
time.Now,
}
func UTCTimeZone() *time.Location {
return time.UTC
}
func PacificTimeZone() *time.Location {
return Ast.RqlTzinfo("-07:00")
}
var FloatInfo = struct {
Min, Max float64
}{math.SmallestNonzeroFloat64, math.MaxFloat64}
var sys = struct {
FloatInfo struct {
Min, Max float64
}
}{FloatInfo}
|