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
|
// Code generated by gen_tests.py and process_polyglot.py.
// Do not edit this file directly.
// The template for this file is located at:
// ../template.go.tpl
package reql_tests
import (
"testing"
"time"
"github.com/stretchr/testify/suite"
r "gopkg.in/rethinkdb/rethinkdb-go.v6"
"gopkg.in/rethinkdb/rethinkdb-go.v6/internal/compare"
)
// Tests for basic usage of the add operation
func TestMathLogicAddSuite(t *testing.T) {
suite.Run(t, new(MathLogicAddSuite))
}
type MathLogicAddSuite struct {
suite.Suite
session *r.Session
}
func (suite *MathLogicAddSuite) SetupTest() {
suite.T().Log("Setting up MathLogicAddSuite")
// Use imports to prevent errors
_ = time.Time{}
_ = compare.AnythingIsFine
session, err := r.Connect(r.ConnectOpts{
Address: url,
})
suite.Require().NoError(err, "Error returned when connecting to server")
suite.session = session
r.DBDrop("db_logic_add").Exec(suite.session)
err = r.DBCreate("db_logic_add").Exec(suite.session)
suite.Require().NoError(err)
err = r.DB("db_logic_add").Wait().Exec(suite.session)
suite.Require().NoError(err)
}
func (suite *MathLogicAddSuite) TearDownSuite() {
suite.T().Log("Tearing down MathLogicAddSuite")
if suite.session != nil {
r.DB("rethinkdb").Table("_debug_scratch").Delete().Exec(suite.session)
r.DBDrop("db_logic_add").Exec(suite.session)
suite.session.Close()
}
}
func (suite *MathLogicAddSuite) TestCases() {
suite.T().Log("Running MathLogicAddSuite: Tests for basic usage of the add operation")
{
// math_logic/add.yaml line #3
/* 2 */
var expected_ int = 2
/* r.add(1, 1) */
suite.T().Log("About to run line #3: r.Add(1, 1)")
runAndAssert(suite.Suite, expected_, r.Add(1, 1), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #3")
}
{
// math_logic/add.yaml line #8
/* 2 */
var expected_ int = 2
/* r.expr(1) + 1 */
suite.T().Log("About to run line #8: r.Expr(1).Add(1)")
runAndAssert(suite.Suite, expected_, r.Expr(1).Add(1), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #8")
}
{
// math_logic/add.yaml line #9
/* 2 */
var expected_ int = 2
/* 1 + r.expr(1) */
suite.T().Log("About to run line #9: r.Add(1, r.Expr(1))")
runAndAssert(suite.Suite, expected_, r.Add(1, r.Expr(1)), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #9")
}
{
// math_logic/add.yaml line #10
/* 2 */
var expected_ int = 2
/* r.expr(1).add(1) */
suite.T().Log("About to run line #10: r.Expr(1).Add(1)")
runAndAssert(suite.Suite, expected_, r.Expr(1).Add(1), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #10")
}
{
// math_logic/add.yaml line #16
/* 0 */
var expected_ int = 0
/* r.expr(-1) + 1 */
suite.T().Log("About to run line #16: r.Expr(-1).Add(1)")
runAndAssert(suite.Suite, expected_, r.Expr(-1).Add(1), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #16")
}
{
// math_logic/add.yaml line #21
/* 10.25 */
var expected_ float64 = 10.25
/* r.expr(1.75) + 8.5 */
suite.T().Log("About to run line #21: r.Expr(1.75).Add(8.5)")
runAndAssert(suite.Suite, expected_, r.Expr(1.75).Add(8.5), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #21")
}
{
// math_logic/add.yaml line #27
/* '' */
var expected_ string = ""
/* r.expr('') + '' */
suite.T().Log("About to run line #27: r.Expr('').Add('')")
runAndAssert(suite.Suite, expected_, r.Expr("").Add(""), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #27")
}
{
// math_logic/add.yaml line #32
/* 'abcdef' */
var expected_ string = "abcdef"
/* r.expr('abc') + 'def' */
suite.T().Log("About to run line #32: r.Expr('abc').Add('def')")
runAndAssert(suite.Suite, expected_, r.Expr("abc").Add("def"), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #32")
}
{
// math_logic/add.yaml line #52
/* err("ReqlQueryLogicError", "Expected type NUMBER but found STRING.", [1]) */
var expected_ Err = err("ReqlQueryLogicError", "Expected type NUMBER but found STRING.")
/* r.expr(1) + 'a' */
suite.T().Log("About to run line #52: r.Expr(1).Add('a')")
runAndAssert(suite.Suite, expected_, r.Expr(1).Add("a"), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #52")
}
{
// math_logic/add.yaml line #57
/* err("ReqlQueryLogicError", "Expected type STRING but found NUMBER.", [1]) */
var expected_ Err = err("ReqlQueryLogicError", "Expected type STRING but found NUMBER.")
/* r.expr('a') + 1 */
suite.T().Log("About to run line #57: r.Expr('a').Add(1)")
runAndAssert(suite.Suite, expected_, r.Expr("a").Add(1), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #57")
}
{
// math_logic/add.yaml line #62
/* err("ReqlQueryLogicError", "Expected type ARRAY but found NUMBER.", [1]) */
var expected_ Err = err("ReqlQueryLogicError", "Expected type ARRAY but found NUMBER.")
/* r.expr([]) + 1 */
suite.T().Log("About to run line #62: r.Expr([]interface{}{}).Add(1)")
runAndAssert(suite.Suite, expected_, r.Expr([]interface{}{}).Add(1), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #62")
}
}
|