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
|
// 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"
)
// Test that UUIDs work
func TestDatumUuidSuite(t *testing.T) {
suite.Run(t, new(DatumUuidSuite))
}
type DatumUuidSuite struct {
suite.Suite
session *r.Session
}
func (suite *DatumUuidSuite) SetupTest() {
suite.T().Log("Setting up DatumUuidSuite")
// 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_duuid").Exec(suite.session)
err = r.DBCreate("db_duuid").Exec(suite.session)
suite.Require().NoError(err)
err = r.DB("db_duuid").Wait().Exec(suite.session)
suite.Require().NoError(err)
}
func (suite *DatumUuidSuite) TearDownSuite() {
suite.T().Log("Tearing down DatumUuidSuite")
if suite.session != nil {
r.DB("rethinkdb").Table("_debug_scratch").Delete().Exec(suite.session)
r.DBDrop("db_duuid").Exec(suite.session)
suite.session.Close()
}
}
func (suite *DatumUuidSuite) TestCases() {
suite.T().Log("Running DatumUuidSuite: Test that UUIDs work")
{
// datum/uuid.yaml line #3
/* uuid() */
var expected_ compare.Regex = compare.IsUUID()
/* r.uuid() */
suite.T().Log("About to run line #3: r.UUID()")
runAndAssert(suite.Suite, expected_, r.UUID(), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #3")
}
{
// datum/uuid.yaml line #5
/* uuid() */
var expected_ compare.Regex = compare.IsUUID()
/* r.expr(r.uuid()) */
suite.T().Log("About to run line #5: r.Expr(r.UUID())")
runAndAssert(suite.Suite, expected_, r.Expr(r.UUID()), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #5")
}
{
// datum/uuid.yaml line #7
/* 'STRING' */
var expected_ string = "STRING"
/* r.type_of(r.uuid()) */
suite.T().Log("About to run line #7: r.TypeOf(r.UUID())")
runAndAssert(suite.Suite, expected_, r.TypeOf(r.UUID()), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #7")
}
{
// datum/uuid.yaml line #9
/* true */
var expected_ bool = true
/* r.uuid().ne(r.uuid()) */
suite.T().Log("About to run line #9: r.UUID().Ne(r.UUID())")
runAndAssert(suite.Suite, expected_, r.UUID().Ne(r.UUID()), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #9")
}
{
// datum/uuid.yaml line #11
/* ('97dd10a5-4fc4-554f-86c5-0d2c2e3d5330') */
var expected_ string = "97dd10a5-4fc4-554f-86c5-0d2c2e3d5330"
/* r.uuid('magic') */
suite.T().Log("About to run line #11: r.UUID('magic')")
runAndAssert(suite.Suite, expected_, r.UUID("magic"), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #11")
}
{
// datum/uuid.yaml line #13
/* true */
var expected_ bool = true
/* r.uuid('magic').eq(r.uuid('magic')) */
suite.T().Log("About to run line #13: r.UUID('magic').Eq(r.UUID('magic'))")
runAndAssert(suite.Suite, expected_, r.UUID("magic").Eq(r.UUID("magic")), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #13")
}
{
// datum/uuid.yaml line #15
/* true */
var expected_ bool = true
/* r.uuid('magic').ne(r.uuid('beans')) */
suite.T().Log("About to run line #15: r.UUID('magic').Ne(r.UUID('beans'))")
runAndAssert(suite.Suite, expected_, r.UUID("magic").Ne(r.UUID("beans")), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #15")
}
{
// datum/uuid.yaml line #17
/* 10 */
var expected_ int = 10
/* r.expr([1,2,3,4,5,6,7,8,9,10]).map(lambda u:r.uuid()).distinct().count() */
suite.T().Log("About to run line #17: r.Expr([]interface{}{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}).Map(func(u r.Term) interface{} { return r.UUID()}).Distinct().Count()")
runAndAssert(suite.Suite, expected_, r.Expr([]interface{}{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}).Map(func(u r.Term) interface{} { return r.UUID() }).Distinct().Count(), suite.session, r.RunOpts{
GeometryFormat: "raw",
GroupFormat: "map",
})
suite.T().Log("Finished running line #17")
}
}
|