surrealpatch/db/select_test.go
Tobie Morgan Hitchcock 47e1a4aceb Fix a bug with virtual records in scoped queries
When querying a virtual document, it would check that the scope had permission to view the record, even though the record did not actually belong to a table.

Not it checks to see if the record is a virtual in-memory record, and does not perform any permissions checks if this is the case.
2018-05-01 13:17:10 +01:00

2091 lines
64 KiB
Go

// Copyright © 2016 Abcum Ltd
//
// 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.
package db
import (
"testing"
"github.com/abcum/surreal/sql"
"github.com/abcum/surreal/util/data"
. "github.com/smartystreets/goconvey/convey"
)
func TestSelect(t *testing.T) {
Convey("Select records from one thing", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1;
CREATE person:test;
SELECT * FROM person:1;
SELECT * FROM person:test;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
})
Convey("Select records from one thing using quotes", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1;
CREATE person:test;
SELECT * FROM person:⟨1⟩;
SELECT * FROM person:⟨test⟩;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
})
Convey("Select records from one table", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:test;
CREATE |person:10|;
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 11)
})
Convey("Select records from multiple tables", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:test;
CREATE entity:test;
SELECT * FROM person, entity;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 2)
})
Convey("Select records from multiple things and tables", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:test;
CREATE entity:test;
CREATE |person:10|;
CREATE |entity:10|;
SELECT * FROM person:test, entity:test, person, entity;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 6)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 10)
So(res[4].Result, ShouldHaveLength, 10)
So(res[5].Result, ShouldHaveLength, 24)
})
Convey("Select records from an array of strings", t, func() {
setupDB()
txt := `
USE NS test DB test;
SELECT * FROM ["one", "two", "tre"];
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 2)
So(res[1].Result, ShouldHaveLength, 3)
So(data.Consume(res[1].Result[0]).Data(), ShouldResemble, "one")
So(data.Consume(res[1].Result[1]).Data(), ShouldResemble, "two")
So(data.Consume(res[1].Result[2]).Data(), ShouldResemble, "tre")
})
Convey("Select records from an array of objects with an id key", t, func() {
setupDB()
txt := `
USE NS test DB test;
SELECT * FROM [{ id: "one" }, { id: "two" }, { id: "tre" }];
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 2)
So(res[1].Result, ShouldHaveLength, 3)
So(data.Consume(res[1].Result[0]).Data(), ShouldResemble, map[string]interface{}{"id": "one"})
So(data.Consume(res[1].Result[1]).Data(), ShouldResemble, map[string]interface{}{"id": "two"})
So(data.Consume(res[1].Result[2]).Data(), ShouldResemble, map[string]interface{}{"id": "tre"})
})
Convey("Select records from an array of objects with no id key", t, func() {
setupDB()
txt := `
USE NS test DB test;
SELECT * FROM [{ test: "one" }, { test: "two" }, { test: "tre" }];
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 2)
So(res[1].Result, ShouldHaveLength, 3)
So(data.Consume(res[1].Result[0]).Data(), ShouldResemble, map[string]interface{}{"test": "one"})
So(data.Consume(res[1].Result[1]).Data(), ShouldResemble, map[string]interface{}{"test": "two"})
So(data.Consume(res[1].Result[2]).Data(), ShouldResemble, map[string]interface{}{"test": "tre"})
})
Convey("Select records from an array of virtual record things", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE test:one, test:two, test:tre;
SELECT * FROM array(
thing("test", "one"),
thing("test", "two"),
thing("test", "tre")
);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 3)
So(data.Consume(res[1].Result[0]).Data(), ShouldResemble, map[string]interface{}{
"id": sql.NewThing("test", "one"),
"meta": map[string]interface{}{
"tb": "test",
"id": "one",
},
})
So(data.Consume(res[1].Result[1]).Data(), ShouldResemble, map[string]interface{}{
"id": sql.NewThing("test", "two"),
"meta": map[string]interface{}{
"tb": "test",
"id": "two",
},
})
So(data.Consume(res[1].Result[2]).Data(), ShouldResemble, map[string]interface{}{
"id": sql.NewThing("test", "tre"),
"meta": map[string]interface{}{
"tb": "test",
"id": "tre",
},
})
})
Convey("Select records with an embedded record field", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:a SET name="Tobias";
CREATE person:b SET name="Silvana";
CREATE person:c SET name="Jonathan", father=person:a, mother=person:b;
SELECT meta, name, father, mother FROM person ORDER BY meta.id;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[4].Result[1]).Get("name").Data(), ShouldEqual, "Silvana")
So(data.Consume(res[4].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[4].Result[2]).Get("father").Data(), ShouldResemble, &sql.Thing{"person", "a"})
So(data.Consume(res[4].Result[2]).Get("mother").Data(), ShouldResemble, &sql.Thing{"person", "b"})
})
Convey("Select '*' parameter from an embedded record field fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:a SET name="Tobias";
CREATE person:b SET name="Silvana";
CREATE person:c SET name="Jonathan", father=person:a, mother=person:b;
SELECT meta, name, father.* AS father, mother.* AS mother FROM person ORDER BY meta.id;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[4].Result[1]).Get("name").Data(), ShouldEqual, "Silvana")
So(data.Consume(res[4].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[4].Result[2]).Get("father").Data(), ShouldResemble, map[string]interface{}{
"id": &sql.Thing{"person", "a"},
"meta": map[string]interface{}{
"id": "a",
"tb": "person",
},
"name": "Tobias",
})
So(data.Consume(res[4].Result[2]).Get("mother").Data(), ShouldResemble, map[string]interface{}{
"id": &sql.Thing{"person", "b"},
"meta": map[string]interface{}{
"id": "b",
"tb": "person",
},
"name": "Silvana",
})
})
Convey("Select 'id' parameter from an embedded record field fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:a SET name="Tobias";
CREATE person:b SET name="Silvana";
CREATE person:c SET name="Jonathan", father=person:a, mother=person:b;
SELECT meta, name, father.id AS father, mother.id AS mother FROM person ORDER BY meta.id;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[4].Result[1]).Get("name").Data(), ShouldEqual, "Silvana")
So(data.Consume(res[4].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[4].Result[2]).Get("father").Data(), ShouldResemble, &sql.Thing{"person", "a"})
So(data.Consume(res[4].Result[2]).Get("mother").Data(), ShouldResemble, &sql.Thing{"person", "b"})
})
Convey("Select 'name' parameter from an embedded record field fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:a SET name="Tobias";
CREATE person:b SET name="Silvana";
CREATE person:c SET name="Jonathan", father=person:a, mother=person:b;
SELECT meta, name, father.name AS father, mother.name AS mother FROM person ORDER BY meta.id;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[4].Result[1]).Get("name").Data(), ShouldEqual, "Silvana")
So(data.Consume(res[4].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[4].Result[2]).Get("father").Data(), ShouldResemble, "Tobias")
So(data.Consume(res[4].Result[2]).Get("mother").Data(), ShouldResemble, "Silvana")
})
Convey("Select 'id.name' parameter from an embedded record field fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:a SET name="Tobias";
CREATE person:b SET name="Silvana";
CREATE person:c SET name="Jonathan", father=person:a, mother=person:b;
SELECT meta, name, father.id.name AS father, mother.id.name AS mother FROM person ORDER BY meta.id;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[4].Result[1]).Get("name").Data(), ShouldEqual, "Silvana")
So(data.Consume(res[4].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[4].Result[2]).Get("father").Data(), ShouldResemble, "Tobias")
So(data.Consume(res[4].Result[2]).Get("mother").Data(), ShouldResemble, "Silvana")
})
Convey("Select records using variable for a `table`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE $tb;
SELECT * FROM $tb;
`
res, err := Execute(setupKV(), txt, map[string]interface{}{
"tb": sql.NewTable("person"),
})
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(data.Consume(res[1].Result[0]).Get("meta.id").Data(), ShouldHaveLength, 20)
So(data.Consume(res[1].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
})
Convey("Select records using variable for a `thing`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE $id;
SELECT * FROM $id;
`
res, err := Execute(setupKV(), txt, map[string]interface{}{
"id": sql.NewThing("person", "test"),
})
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(data.Consume(res[1].Result[0]).Get("meta.id").Data(), ShouldHaveLength, 4)
So(data.Consume(res[1].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
})
Convey("Select records using an * subquery", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT * FROM person ORDER BY name);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 5)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[6].Result[4]).Get("name").Data(), ShouldEqual, "Tobias")
})
Convey("Select records using an * subquery, with a limit of 1", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT * FROM person ORDER BY name LIMIT 1);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Select records using an * subquery, specifying a single record", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT * FROM person:5);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Select records using an id subquery", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT id FROM (SELECT * FROM person ORDER BY name));
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 5)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[6].Result[4]).Get("name").Data(), ShouldEqual, "Tobias")
})
Convey("Select records using an id subquery, with a limit of 1", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT id FROM (SELECT * FROM person ORDER BY name) LIMIT 1);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Select records using an id subquery, specifying a single record", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT id FROM (SELECT * FROM person:5));
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Select records using a single field subquery", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT name FROM person ORDER BY name);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 5)
So(res[6].Result[0], ShouldEqual, "Alexander")
So(res[6].Result[4], ShouldEqual, "Tobias")
})
Convey("Select records using a single field subquery, with a limit of 1", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM (SELECT name FROM person ORDER BY name LIMIT 1);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(res[6].Result[0], ShouldEqual, "Alexander")
})
Convey("Select $thing from a direct `thing` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, person:test AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldResemble, &sql.Thing{"person", "test"})
})
Convey("Select '*' from a direct `thing` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, person:test.* AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldResemble, map[string]interface{}{
"id": &sql.Thing{"person", "test"},
"meta": map[string]interface{}{
"id": "test",
"tb": "person",
},
"name": "Tobias",
})
})
Convey("Select 'id' parameter from a direct `thing` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, person:test.id AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldResemble, &sql.Thing{"person", "test"})
})
Convey("Select 'name' parameter from a direct `thing` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, person:test.name AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select 'id.name' parameter from a direct `thing` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, person:test.id.name AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select 'id.id.id.name' parameter from a direct `thing` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, person:test.id.id.id.name AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select $param parameter from a direct `param` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET person = person:test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, $person AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[4].Result[0]).Get("test").Data(), ShouldResemble, &sql.Thing{"person", "test"})
})
Convey("Select '*' parameter from a direct `param` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET person = person:test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, $person.* AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[4].Result[0]).Get("test").Data(), ShouldResemble, map[string]interface{}{
"id": &sql.Thing{"person", "test"},
"meta": map[string]interface{}{
"id": "test",
"tb": "person",
},
"name": "Tobias",
})
})
Convey("Select 'id' parameter from a direct `param` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET person = person:test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, $person.id AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[4].Result[0]).Get("test").Data(), ShouldResemble, &sql.Thing{"person", "test"})
})
Convey("Select 'name' parameter from a direct `param` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET person = person:test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, $person.name AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[4].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select 'id.name' parameter from a direct `param` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET person = person:test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, $person.id.name AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[4].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select 'id.id.id.name' parameter from a direct `param` record fetch", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET person = person:test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, $person.id.id.id.name AS test FROM tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(data.Consume(res[4].Result[0]).Get("meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[4].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[4].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select $parent parameter from a subquery `param`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, (SELECT $parent FROM tester LIMIT 1) AS test FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldResemble, map[string]interface{}{
"id": &sql.Thing{"person", "test"},
"meta": map[string]interface{}{
"id": "test",
"tb": "person",
},
"name": "Tobias",
})
})
Convey("Select 'id' parameter from a subquery `param`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, (SELECT $parent.id FROM tester LIMIT 1) AS test FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldResemble, &sql.Thing{"person", "test"})
})
Convey("Select 'name' parameter from a subquery `param`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, (SELECT $parent.name FROM tester LIMIT 1) AS test FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select 'id.name' parameter from a subquery `param`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, (SELECT $parent.id.name FROM tester LIMIT 1) AS test FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Select 'id.id.id.name' parameter from a subquery `param`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE tester:test;
CREATE person:test SET name="Tobias";
SELECT *, (SELECT $parent.id.id.id.name FROM tester LIMIT 1) AS test FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[3].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[3].Result[0]).Get("test").Data(), ShouldEqual, "Tobias")
})
Convey("Filter using VOID to find records where the field is not set", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1;
CREATE person:2 SET test = null;
CREATE person:3 SET test = true;
CREATE person:4 SET test = "Test";
CREATE person:5 SET test = "1000";
SELECT test FROM person WHERE test IS VOID;
SELECT test FROM person WHERE test IS NOT VOID;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[6].Result, ShouldHaveLength, 1)
So(res[7].Result, ShouldHaveLength, 4)
})
Convey("Filter using NULL to find records where the field is `null`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1;
CREATE person:2 SET test = null;
CREATE person:3 SET test = true;
CREATE person:4 SET test = "Test";
CREATE person:5 SET test = "1000";
SELECT test FROM person WHERE test IS NULL;
SELECT test FROM person WHERE test IS NOT NULL;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[6].Result, ShouldHaveLength, 1)
So(res[7].Result, ShouldHaveLength, 4)
})
Convey("Filter using EMPTY to find records where the field is not set or `null`", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1;
CREATE person:2 SET test = null;
CREATE person:3 SET test = true;
CREATE person:4 SET test = "Test";
CREATE person:5 SET test = "1000";
SELECT test FROM person WHERE test IS EMPTY;
SELECT test FROM person WHERE test IS NOT EMPTY;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[6].Result, ShouldHaveLength, 2)
So(res[7].Result, ShouldHaveLength, 3)
})
Convey("Filter using boolean logic to find records", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET test = "one";
CREATE person:2 SET test = "two";
CREATE person:3 SET test = "tre";
SELECT test FROM person WHERE test = "one";
SELECT test FROM person WHERE test = "one" OR test = "two";
SELECT test FROM person WHERE test = "one" OR test = "two" OR test = "tre";
SELECT test FROM person WHERE test = "one" OR (test = "two" OR test = "tre");
SELECT test FROM person WHERE (test = "one") OR (test = "two") OR (test = "tre");
SELECT test FROM person WHERE (test = "one") OR ( (test = "two") OR (test = "tre") );
SELECT test FROM person WHERE ( (test = "one") OR (test = "two") OR (test = "tre") );
SELECT test FROM person WHERE test = "one" AND test = "two" AND test = "tre";
SELECT test FROM person WHERE test = "one" AND test != "two" AND test != "tre";
SELECT test FROM person WHERE test = "one" AND (test != "two" AND test != "tre");
SELECT test FROM person WHERE (test = "one") AND (test != "two") AND (test != "tre");
SELECT test FROM person WHERE (test = "one") AND ( (test != "two") AND (test != "tre") );
SELECT test FROM person WHERE ( (test = "one") AND (test != "two") AND (test != "tre") );
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 17)
So(res[4].Result, ShouldHaveLength, 1)
So(res[5].Result, ShouldHaveLength, 2)
So(res[6].Result, ShouldHaveLength, 3)
So(res[7].Result, ShouldHaveLength, 3)
So(res[8].Result, ShouldHaveLength, 3)
So(res[9].Result, ShouldHaveLength, 3)
So(res[10].Result, ShouldHaveLength, 3)
So(res[11].Result, ShouldHaveLength, 0)
So(res[12].Result, ShouldHaveLength, 1)
So(res[13].Result, ShouldHaveLength, 1)
So(res[14].Result, ShouldHaveLength, 1)
So(res[15].Result, ShouldHaveLength, 1)
So(res[16].Result, ShouldHaveLength, 1)
})
Convey("Filter records using an id subquery", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM person WHERE id IN (SELECT id FROM person);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 5)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[6].Result[4]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Filter records using an id subquery, with a limit of 1", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM person WHERE id = (SELECT id FROM person LIMIT 1);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
})
Convey("Filter records using an single field subquery", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM person WHERE name IN (SELECT name FROM person ORDER BY name);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 5)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Tobias")
So(data.Consume(res[6].Result[4]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Filter records using a single field subquery, with a limit of 1", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:1 SET name="Tobias";
CREATE person:2 SET name="Silvana";
CREATE person:3 SET name="Jonathan";
CREATE person:4 SET name="Benjamin";
CREATE person:5 SET name="Alexander";
SELECT * FROM person WHERE name = (SELECT name FROM person ORDER BY name LIMIT 1);
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("name").Data(), ShouldEqual, "Alexander")
})
Convey("Filter records using a single field subquery, with a limit of 1", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:test SET age=30;
CREATE person:1 SET name="Tobias", age=30;
CREATE person:2 SET name="Silvana", age=27;
CREATE person:3 SET name="Jonathan", age=32;
CREATE person:4 SET name="Benjamin", age=31;
CREATE person:5 SET name="Alexander", age=22;
SELECT * FROM person WHERE age >= person:⟨1⟩.age ORDER BY name;
SELECT * FROM person WHERE age >= person:test.age ORDER BY name;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 9)
So(res[7].Result, ShouldHaveLength, 4)
So(data.Consume(res[7].Result[0]).Get("name").Data(), ShouldEqual, nil)
So(data.Consume(res[7].Result[1]).Get("name").Data(), ShouldEqual, "Benjamin")
So(data.Consume(res[7].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[7].Result[3]).Get("name").Data(), ShouldEqual, "Tobias")
So(res[8].Result, ShouldHaveLength, 4)
So(data.Consume(res[8].Result[0]).Get("name").Data(), ShouldEqual, nil)
So(data.Consume(res[8].Result[1]).Get("name").Data(), ShouldEqual, "Benjamin")
So(data.Consume(res[8].Result[2]).Get("name").Data(), ShouldEqual, "Jonathan")
So(data.Consume(res[8].Result[3]).Get("name").Data(), ShouldEqual, "Tobias")
})
Convey("Group records by field", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
UPDATE person:1 SET test = true;
UPDATE person:2 SET test = false;
UPDATE person:3 SET test = false;
UPDATE person:4 SET test = true;
UPDATE person:5 SET test = nil;
SELECT test FROM person GROUP BY test ORDER BY test;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[7].Result, ShouldHaveLength, 3)
So(data.Consume(res[7].Result[0]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[7].Result[1]).Get("test").Data(), ShouldEqual, false)
So(data.Consume(res[7].Result[2]).Get("test").Data(), ShouldEqual, true)
})
Convey("Group and count records by field", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..5|;
UPDATE person:1 SET test = true;
UPDATE person:2 SET test = false;
UPDATE person:3 SET test = false;
UPDATE person:4 SET test = true;
UPDATE person:5 SET test = nil;
SELECT test, count(*) AS total FROM person GROUP BY test ORDER BY test;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[7].Result, ShouldHaveLength, 3)
So(data.Consume(res[7].Result[0]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[7].Result[0]).Get("total").Data(), ShouldEqual, 1)
So(data.Consume(res[7].Result[1]).Get("test").Data(), ShouldEqual, false)
So(data.Consume(res[7].Result[1]).Get("total").Data(), ShouldEqual, 2)
So(data.Consume(res[7].Result[2]).Get("test").Data(), ShouldEqual, true)
So(data.Consume(res[7].Result[2]).Get("total").Data(), ShouldEqual, 2)
})
Convey("Group and count records by field with alias", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..5|;
UPDATE person:1 SET test = "something";
UPDATE person:2 SET test = "nothing";
UPDATE person:3 SET test = "nothing";
UPDATE person:4 SET test = "something";
UPDATE person:5 SET test = nil;
SELECT string.length(test) AS test, count(*) AS total FROM person GROUP BY test ORDER BY test;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[7].Result, ShouldHaveLength, 3)
So(data.Consume(res[7].Result[0]).Get("test").Data(), ShouldEqual, 0)
So(data.Consume(res[7].Result[0]).Get("total").Data(), ShouldEqual, 1)
So(data.Consume(res[7].Result[1]).Get("test").Data(), ShouldEqual, 7)
So(data.Consume(res[7].Result[1]).Get("total").Data(), ShouldEqual, 2)
So(data.Consume(res[7].Result[2]).Get("test").Data(), ShouldEqual, 9)
So(data.Consume(res[7].Result[2]).Get("total").Data(), ShouldEqual, 2)
})
Convey("Group and retrieve distinct records by field", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..5|;
UPDATE person:1 SET test = "Hello";
UPDATE person:2 SET test = "World";
UPDATE person:3 SET test = "World";
UPDATE person:4 SET test = "Hello";
UPDATE person:5 SET test = "Hello";
SELECT test, distinct(id) AS docs FROM person GROUP BY test ORDER BY test;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 8)
So(res[7].Result, ShouldHaveLength, 2)
So(data.Consume(res[7].Result[0]).Get("test").Data(), ShouldEqual, "Hello")
So(data.Consume(res[7].Result[0]).Get("docs").Data(), ShouldContain, sql.NewThing("person", 1))
So(data.Consume(res[7].Result[0]).Get("docs").Data(), ShouldContain, sql.NewThing("person", 4))
So(data.Consume(res[7].Result[0]).Get("docs").Data(), ShouldContain, sql.NewThing("person", 5))
So(data.Consume(res[7].Result[1]).Get("test").Data(), ShouldEqual, "World")
So(data.Consume(res[7].Result[1]).Get("docs").Data(), ShouldContain, sql.NewThing("person", 2))
So(data.Consume(res[7].Result[1]).Get("docs").Data(), ShouldContain, sql.NewThing("person", 3))
})
Convey("Group and retrieve more than 10000 records to test incremental processing", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10000|;
SELECT meta.tb, count(*) AS test FROM person GROUP BY meta.tb;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10000)
So(res[2].Result, ShouldHaveLength, 1)
So(data.Consume(res[2].Result[0]).Get("test").Data(), ShouldEqual, 10000)
})
Convey("Order records ascending", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
UPDATE person:3 SET test = "ändrew";
UPDATE person:5 SET test = "Another";
UPDATE person:7 SET test = "alexander";
UPDATE person:9 SET test = "Alexander";
UPDATE person:2 SET test = "Tobie";
UPDATE person:4 SET test = "1000";
UPDATE person:6 SET test = "2";
UPDATE person:8 SET test = null;
SELECT test FROM person ORDER BY test ASC;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 11)
So(res[10].Result, ShouldHaveLength, 10)
So(data.Consume(res[10].Result[0]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[1]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[2]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[3]).Get("test").Data(), ShouldEqual, "1000")
So(data.Consume(res[10].Result[4]).Get("test").Data(), ShouldEqual, "2")
So(data.Consume(res[10].Result[5]).Get("test").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[10].Result[6]).Get("test").Data(), ShouldEqual, "Another")
So(data.Consume(res[10].Result[7]).Get("test").Data(), ShouldEqual, "Tobie")
So(data.Consume(res[10].Result[8]).Get("test").Data(), ShouldEqual, "alexander")
So(data.Consume(res[10].Result[9]).Get("test").Data(), ShouldEqual, "ändrew")
})
Convey("Order records descending", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
UPDATE person:3 SET test = "ändrew";
UPDATE person:5 SET test = "Another";
UPDATE person:7 SET test = "alexander";
UPDATE person:9 SET test = "Alexander";
UPDATE person:2 SET test = "Tobie";
UPDATE person:4 SET test = "1000";
UPDATE person:6 SET test = "2";
UPDATE person:8 SET test = null;
SELECT test FROM person ORDER BY test DESC;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 11)
So(res[10].Result, ShouldHaveLength, 10)
So(data.Consume(res[10].Result[0]).Get("test").Data(), ShouldEqual, "ändrew")
So(data.Consume(res[10].Result[1]).Get("test").Data(), ShouldEqual, "alexander")
So(data.Consume(res[10].Result[2]).Get("test").Data(), ShouldEqual, "Tobie")
So(data.Consume(res[10].Result[3]).Get("test").Data(), ShouldEqual, "Another")
So(data.Consume(res[10].Result[4]).Get("test").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[10].Result[5]).Get("test").Data(), ShouldEqual, "2")
So(data.Consume(res[10].Result[6]).Get("test").Data(), ShouldEqual, "1000")
So(data.Consume(res[10].Result[7]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[8]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[9]).Get("test").Data(), ShouldEqual, nil)
})
Convey("Order records with collation", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
UPDATE person:3 SET test = "ändrew";
UPDATE person:5 SET test = "Another";
UPDATE person:7 SET test = "alexander";
UPDATE person:9 SET test = "Alexander";
UPDATE person:2 SET test = "Tobie";
UPDATE person:4 SET test = "1000";
UPDATE person:6 SET test = "2";
UPDATE person:8 SET test = null;
SELECT test FROM person ORDER BY test COLLATE 'en-GB' ASC;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 11)
So(res[10].Result, ShouldHaveLength, 10)
So(data.Consume(res[10].Result[0]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[1]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[2]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[3]).Get("test").Data(), ShouldEqual, "1000")
So(data.Consume(res[10].Result[4]).Get("test").Data(), ShouldEqual, "2")
So(data.Consume(res[10].Result[5]).Get("test").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[10].Result[6]).Get("test").Data(), ShouldEqual, "alexander")
So(data.Consume(res[10].Result[7]).Get("test").Data(), ShouldEqual, "ändrew")
So(data.Consume(res[10].Result[8]).Get("test").Data(), ShouldEqual, "Another")
So(data.Consume(res[10].Result[9]).Get("test").Data(), ShouldEqual, "Tobie")
})
Convey("Order records with collation and numeric sorting", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
UPDATE person:3 SET test = "ändrew";
UPDATE person:5 SET test = "Another";
UPDATE person:7 SET test = "alexander";
UPDATE person:9 SET test = "Alexander";
UPDATE person:2 SET test = "Tobie";
UPDATE person:4 SET test = "1000";
UPDATE person:6 SET test = "2";
UPDATE person:8 SET test = null;
SELECT test FROM person ORDER BY test COLLATE 'en-GB' NUMERIC ASC;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 11)
So(res[10].Result, ShouldHaveLength, 10)
So(data.Consume(res[10].Result[0]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[1]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[2]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[3]).Get("test").Data(), ShouldEqual, "2")
So(data.Consume(res[10].Result[4]).Get("test").Data(), ShouldEqual, "1000")
So(data.Consume(res[10].Result[5]).Get("test").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[10].Result[6]).Get("test").Data(), ShouldEqual, "alexander")
So(data.Consume(res[10].Result[7]).Get("test").Data(), ShouldEqual, "ändrew")
So(data.Consume(res[10].Result[8]).Get("test").Data(), ShouldEqual, "Another")
So(data.Consume(res[10].Result[9]).Get("test").Data(), ShouldEqual, "Tobie")
})
Convey("Order records with collation and numeric and insensitive sorting using unicode definition", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
UPDATE person:3 SET test = "ändrew";
UPDATE person:5 SET test = "Another";
UPDATE person:7 SET test = "alexander";
UPDATE person:9 SET test = "Alexander";
UPDATE person:2 SET test = "Tobie";
UPDATE person:4 SET test = "1000";
UPDATE person:6 SET test = "2";
UPDATE person:8 SET test = null;
SELECT test FROM person ORDER BY test COLLATE 'en-GB-u-kn-true-kc-false' ASC;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 11)
So(res[10].Result, ShouldHaveLength, 10)
So(data.Consume(res[10].Result[0]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[1]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[2]).Get("test").Data(), ShouldEqual, nil)
So(data.Consume(res[10].Result[3]).Get("test").Data(), ShouldEqual, "2")
So(data.Consume(res[10].Result[4]).Get("test").Data(), ShouldEqual, "1000")
So(data.Consume(res[10].Result[5]).Get("test").Data(), ShouldEqual, "Alexander")
So(data.Consume(res[10].Result[6]).Get("test").Data(), ShouldEqual, "alexander")
So(data.Consume(res[10].Result[7]).Get("test").Data(), ShouldEqual, "ändrew")
So(data.Consume(res[10].Result[8]).Get("test").Data(), ShouldEqual, "Another")
So(data.Consume(res[10].Result[9]).Get("test").Data(), ShouldEqual, "Tobie")
})
Convey("Order records from multiple tables", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:test;
CREATE entity:test;
SELECT * FROM person, entity ORDER BY id;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 2)
So(data.Consume(res[3].Result[0]).Get("meta.tb").Data(), ShouldEqual, "entity")
So(data.Consume(res[3].Result[1]).Get("meta.tb").Data(), ShouldEqual, "person")
})
Convey("Limit records using a number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY 5;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 5)
So(data.Consume(res[2].Result[0]).Get("meta.id").Data(), ShouldEqual, 1)
So(data.Consume(res[2].Result[4]).Get("meta.id").Data(), ShouldEqual, 5)
})
Convey("Limit records using a parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET count = 5;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY $count;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 5)
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, 1)
So(data.Consume(res[3].Result[4]).Get("meta.id").Data(), ShouldEqual, 5)
})
Convey("Limit records using an invalid parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET count = "test";
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY $count;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 0)
So(res[3].Status, ShouldEqual, "ERR")
So(res[3].Detail, ShouldEqual, "Found 'test' but LIMIT expression must be a number")
})
Convey("Limit records using a negative number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY -10;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 10)
})
Convey("Limit records using a minimum number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY 0;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 0)
})
Convey("Limit records using a maximum number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY 100;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 10)
})
Convey("Limit records using a number and start records at a number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY 5 START AT 5;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 5)
So(data.Consume(res[2].Result[0]).Get("meta.id").Data(), ShouldEqual, 6)
So(data.Consume(res[2].Result[4]).Get("meta.id").Data(), ShouldEqual, 10)
})
Convey("Start records using a number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person START AT 5;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 5)
So(data.Consume(res[2].Result[0]).Get("meta.id").Data(), ShouldEqual, 6)
So(data.Consume(res[2].Result[4]).Get("meta.id").Data(), ShouldEqual, 10)
})
Convey("Start records using a parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET count = 5;
CREATE |person:1..10|;
SELECT * FROM person START AT $count;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 5)
So(data.Consume(res[3].Result[0]).Get("meta.id").Data(), ShouldEqual, 6)
So(data.Consume(res[3].Result[4]).Get("meta.id").Data(), ShouldEqual, 10)
})
Convey("Start records using an invalid parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET count = "test";
CREATE |person:1..10|;
SELECT * FROM person START AT $count;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 0)
So(res[3].Status, ShouldEqual, "ERR")
So(res[3].Detail, ShouldEqual, "Found 'test' but START expression must be a number")
})
Convey("Start records using a negative number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person START AT -10;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 10)
})
Convey("Start records using a lower minimum number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person START AT 0;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 10)
})
Convey("Start records using a greater maximum number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person START AT 100;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 0)
})
Convey("Start records using a number and limit records by a number", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person LIMIT BY 5 START AT 5;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 3)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 5)
So(data.Consume(res[2].Result[0]).Get("meta.id").Data(), ShouldEqual, 6)
So(data.Consume(res[2].Result[4]).Get("meta.id").Data(), ShouldEqual, 10)
})
Convey("Fetch records using a fetchplan to fetch remote records easily", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE person:test SET
one=tester:test,
mult=[],
mult+=temper:one,
mult+=temper:two,
mult+=temper:tre
;
CREATE tester:test SET tags=["some","tags"];
CREATE temper:one SET tester=tester:test;
CREATE temper:two SET tester=tester:test;
CREATE temper:tre SET tester=tester:test;
SELECT * FROM person:test FETCH one, mult, mult.*.tester;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 7)
So(res[1].Result, ShouldHaveLength, 1)
So(res[2].Result, ShouldHaveLength, 1)
So(res[3].Result, ShouldHaveLength, 1)
So(res[4].Result, ShouldHaveLength, 1)
So(res[5].Result, ShouldHaveLength, 1)
So(res[6].Result, ShouldHaveLength, 1)
So(data.Consume(res[6].Result[0]).Get("meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[6].Result[0]).Get("meta.tb").Data(), ShouldEqual, "person")
So(data.Consume(res[6].Result[0]).Get("one.meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[6].Result[0]).Get("one.meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[6].Result[0]).Get("one.tags").Data(), ShouldResemble, []interface{}{"some", "tags"})
So(data.Consume(res[6].Result[0]).Get("mult[0].meta.id").Data(), ShouldEqual, "one")
So(data.Consume(res[6].Result[0]).Get("mult[0].meta.tb").Data(), ShouldEqual, "temper")
So(data.Consume(res[6].Result[0]).Get("mult[0].tester.meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[6].Result[0]).Get("mult[0].tester.meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[6].Result[0]).Get("mult[0].tester.tags").Data(), ShouldResemble, []interface{}{"some", "tags"})
So(data.Consume(res[6].Result[0]).Get("mult[1].meta.id").Data(), ShouldEqual, "two")
So(data.Consume(res[6].Result[0]).Get("mult[1].meta.tb").Data(), ShouldEqual, "temper")
So(data.Consume(res[6].Result[0]).Get("mult[1].tester.meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[6].Result[0]).Get("mult[1].tester.meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[6].Result[0]).Get("mult[1].tester.tags").Data(), ShouldResemble, []interface{}{"some", "tags"})
So(data.Consume(res[6].Result[0]).Get("mult[2].meta.id").Data(), ShouldEqual, "tre")
So(data.Consume(res[6].Result[0]).Get("mult[2].meta.tb").Data(), ShouldEqual, "temper")
So(data.Consume(res[6].Result[0]).Get("mult[2].tester.meta.id").Data(), ShouldEqual, "test")
So(data.Consume(res[6].Result[0]).Get("mult[2].tester.meta.tb").Data(), ShouldEqual, "tester")
So(data.Consume(res[6].Result[0]).Get("mult[2].tester.tags").Data(), ShouldResemble, []interface{}{"some", "tags"})
})
Convey("Version records using a datetime", t, func() {
setupDB()
txt := `
USE NS test DB test;
CREATE |person:1..10|;
SELECT * FROM person VERSION "2017-01-01";
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 4)
So(res[1].Result, ShouldHaveLength, 10)
So(res[2].Result, ShouldHaveLength, 0)
So(res[3].Result, ShouldHaveLength, 10)
})
Convey("Version records using a date parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET date = "2017-01-01";
CREATE |person:1..10|;
SELECT * FROM person VERSION $date;
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 0)
So(res[4].Result, ShouldHaveLength, 10)
})
Convey("Version records using a time parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET time = "2017-01-01T15:04:05+07:00";
CREATE |person:1..10|;
SELECT * FROM person VERSION $time;
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 0)
So(res[4].Result, ShouldHaveLength, 10)
})
Convey("Version records using an invalid parameter", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET time = "test";
CREATE |person:1..10|;
SELECT * FROM person VERSION $time;
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 5)
So(res[2].Result, ShouldHaveLength, 10)
So(res[3].Result, ShouldHaveLength, 0)
So(res[3].Status, ShouldEqual, "ERR")
So(res[3].Detail, ShouldEqual, "Found 'test' but VERSION expression must be a date or time")
So(res[4].Result, ShouldHaveLength, 10)
})
Convey("Test version on a thing", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET old = time.now();
CREATE person:test;
UPDATE person:test SET test = 1;
LET one = time.now();
UPDATE person:test SET test = 2;
LET two = time.now();
UPDATE person:test SET test = 3;
LET tre = time.now();
SELECT * FROM person VERSION $old;
SELECT * FROM person VERSION $one;
SELECT * FROM person VERSION $two;
SELECT * FROM person VERSION $tre;
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 14)
So(res[3].Result, ShouldHaveLength, 1)
So(res[5].Result, ShouldHaveLength, 1)
So(res[7].Result, ShouldHaveLength, 1)
So(res[9].Result, ShouldHaveLength, 0)
So(res[10].Result, ShouldHaveLength, 1)
So(data.Consume(res[10].Result[0]).Get("test").Data(), ShouldEqual, 1)
So(res[11].Result, ShouldHaveLength, 1)
So(data.Consume(res[11].Result[0]).Get("test").Data(), ShouldEqual, 2)
So(res[12].Result, ShouldHaveLength, 1)
So(data.Consume(res[12].Result[0]).Get("test").Data(), ShouldEqual, 3)
So(res[13].Result, ShouldHaveLength, 1)
So(data.Consume(res[13].Result[0]).Get("test").Data(), ShouldEqual, 3)
})
Convey("Test version on a table", t, func() {
setupDB()
txt := `
USE NS test DB test;
LET old = time.now();
CREATE |person:1..3|;
UPDATE person:1, person:2, person:3 SET test = 1;
LET one = time.now();
UPDATE person:1, person:2, person:3 SET test = 2;
LET two = time.now();
UPDATE person:1, person:2, person:3 SET test = 3;
LET tre = time.now();
SELECT * FROM person VERSION $old;
SELECT * FROM person VERSION $one;
SELECT * FROM person VERSION $two;
SELECT * FROM person VERSION $tre;
SELECT * FROM person;
`
res, err := Execute(setupKV(), txt, nil)
So(err, ShouldBeNil)
So(res, ShouldHaveLength, 14)
So(res[3].Result, ShouldHaveLength, 3)
So(res[5].Result, ShouldHaveLength, 3)
So(res[7].Result, ShouldHaveLength, 3)
So(res[9].Result, ShouldHaveLength, 0)
So(res[10].Result, ShouldHaveLength, 3)
So(data.Consume(res[10].Result).Get("0.test").Data(), ShouldEqual, 1)
So(data.Consume(res[10].Result).Get("1.test").Data(), ShouldEqual, 1)
So(data.Consume(res[10].Result).Get("2.test").Data(), ShouldEqual, 1)
So(res[11].Result, ShouldHaveLength, 3)
So(data.Consume(res[11].Result).Get("0.test").Data(), ShouldEqual, 2)
So(data.Consume(res[11].Result).Get("1.test").Data(), ShouldEqual, 2)
So(data.Consume(res[11].Result).Get("2.test").Data(), ShouldEqual, 2)
So(res[12].Result, ShouldHaveLength, 3)
So(data.Consume(res[12].Result).Get("0.test").Data(), ShouldEqual, 3)
So(data.Consume(res[12].Result).Get("1.test").Data(), ShouldEqual, 3)
So(data.Consume(res[12].Result).Get("2.test").Data(), ShouldEqual, 3)
So(res[13].Result, ShouldHaveLength, 3)
So(data.Consume(res[13].Result).Get("0.test").Data(), ShouldEqual, 3)
So(data.Consume(res[13].Result).Get("1.test").Data(), ShouldEqual, 3)
So(data.Consume(res[13].Result).Get("2.test").Data(), ShouldEqual, 3)
})
}