123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482 |
- // Copyright 2014 Google Inc. All Rights Reserved.
- //
- // 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 datastore
- import (
- "errors"
- "fmt"
- "reflect"
- "testing"
- "github.com/golang/protobuf/proto"
- "golang.org/x/net/context"
- pb "google.golang.org/cloud/internal/datastore"
- )
- var (
- key1 = &pb.Key{
- PathElement: []*pb.Key_PathElement{
- {
- Kind: proto.String("Gopher"),
- Id: proto.Int64(6),
- },
- },
- }
- key2 = &pb.Key{
- PathElement: []*pb.Key_PathElement{
- {
- Kind: proto.String("Gopher"),
- Id: proto.Int64(6),
- },
- {
- Kind: proto.String("Gopher"),
- Id: proto.Int64(8),
- },
- },
- }
- )
- type fakeClient func(req, resp proto.Message) (err error)
- func (c fakeClient) Call(ctx context.Context, method string, req, resp proto.Message) error {
- return c(req, resp)
- }
- func fakeRunQuery(in *pb.RunQueryRequest, out *pb.RunQueryResponse) error {
- expectedIn := &pb.RunQueryRequest{
- Query: &pb.Query{
- Kind: []*pb.KindExpression{&pb.KindExpression{Name: proto.String("Gopher")}},
- },
- }
- if !proto.Equal(in, expectedIn) {
- return fmt.Errorf("unsupported argument: got %v want %v", in, expectedIn)
- }
- *out = pb.RunQueryResponse{
- Batch: &pb.QueryResultBatch{
- MoreResults: pb.QueryResultBatch_NO_MORE_RESULTS.Enum(),
- EntityResultType: pb.EntityResult_FULL.Enum(),
- EntityResult: []*pb.EntityResult{
- &pb.EntityResult{
- Entity: &pb.Entity{
- Key: key1,
- Property: []*pb.Property{
- {
- Name: proto.String("Name"),
- Value: &pb.Value{StringValue: proto.String("George")},
- },
- {
- Name: proto.String("Height"),
- Value: &pb.Value{
- IntegerValue: proto.Int64(32),
- },
- },
- },
- },
- },
- &pb.EntityResult{
- Entity: &pb.Entity{
- Key: key2,
- Property: []*pb.Property{
- {
- Name: proto.String("Name"),
- Value: &pb.Value{StringValue: proto.String("Rufus")},
- },
- // No height for Rufus.
- },
- },
- },
- },
- },
- }
- return nil
- }
- type StructThatImplementsPLS struct{}
- func (StructThatImplementsPLS) Load(p []Property) error { return nil }
- func (StructThatImplementsPLS) Save() ([]Property, error) { return nil, nil }
- var _ PropertyLoadSaver = StructThatImplementsPLS{}
- type StructPtrThatImplementsPLS struct{}
- func (*StructPtrThatImplementsPLS) Load(p []Property) error { return nil }
- func (*StructPtrThatImplementsPLS) Save() ([]Property, error) { return nil, nil }
- var _ PropertyLoadSaver = &StructPtrThatImplementsPLS{}
- type PropertyMap map[string]Property
- func (m PropertyMap) Load(props []Property) error {
- for _, p := range props {
- m[p.Name] = p
- }
- return nil
- }
- func (m PropertyMap) Save() ([]Property, error) {
- props := make([]Property, 0, len(m))
- for _, p := range m {
- props = append(props, p)
- }
- return props, nil
- }
- var _ PropertyLoadSaver = PropertyMap{}
- type Gopher struct {
- Name string
- Height int
- }
- // typeOfEmptyInterface is the type of interface{}, but we can't use
- // reflect.TypeOf((interface{})(nil)) directly because TypeOf takes an
- // interface{}.
- var typeOfEmptyInterface = reflect.TypeOf((*interface{})(nil)).Elem()
- func TestCheckMultiArg(t *testing.T) {
- testCases := []struct {
- v interface{}
- mat multiArgType
- elemType reflect.Type
- }{
- // Invalid cases.
- {nil, multiArgTypeInvalid, nil},
- {Gopher{}, multiArgTypeInvalid, nil},
- {&Gopher{}, multiArgTypeInvalid, nil},
- {PropertyList{}, multiArgTypeInvalid, nil}, // This is a special case.
- {PropertyMap{}, multiArgTypeInvalid, nil},
- {[]*PropertyList(nil), multiArgTypeInvalid, nil},
- {[]*PropertyMap(nil), multiArgTypeInvalid, nil},
- {[]**Gopher(nil), multiArgTypeInvalid, nil},
- {[]*interface{}(nil), multiArgTypeInvalid, nil},
- // Valid cases.
- {
- []PropertyList(nil),
- multiArgTypePropertyLoadSaver,
- reflect.TypeOf(PropertyList{}),
- },
- {
- []PropertyMap(nil),
- multiArgTypePropertyLoadSaver,
- reflect.TypeOf(PropertyMap{}),
- },
- {
- []StructThatImplementsPLS(nil),
- multiArgTypePropertyLoadSaver,
- reflect.TypeOf(StructThatImplementsPLS{}),
- },
- {
- []StructPtrThatImplementsPLS(nil),
- multiArgTypePropertyLoadSaver,
- reflect.TypeOf(StructPtrThatImplementsPLS{}),
- },
- {
- []Gopher(nil),
- multiArgTypeStruct,
- reflect.TypeOf(Gopher{}),
- },
- {
- []*Gopher(nil),
- multiArgTypeStructPtr,
- reflect.TypeOf(Gopher{}),
- },
- {
- []interface{}(nil),
- multiArgTypeInterface,
- typeOfEmptyInterface,
- },
- }
- for _, tc := range testCases {
- mat, elemType := checkMultiArg(reflect.ValueOf(tc.v))
- if mat != tc.mat || elemType != tc.elemType {
- t.Errorf("checkMultiArg(%T): got %v, %v want %v, %v",
- tc.v, mat, elemType, tc.mat, tc.elemType)
- }
- }
- }
- func TestSimpleQuery(t *testing.T) {
- struct1 := Gopher{Name: "George", Height: 32}
- struct2 := Gopher{Name: "Rufus"}
- pList1 := PropertyList{
- {
- Name: "Name",
- Value: "George",
- },
- {
- Name: "Height",
- Value: int64(32),
- },
- }
- pList2 := PropertyList{
- {
- Name: "Name",
- Value: "Rufus",
- },
- }
- pMap1 := PropertyMap{
- "Name": Property{
- Name: "Name",
- Value: "George",
- },
- "Height": Property{
- Name: "Height",
- Value: int64(32),
- },
- }
- pMap2 := PropertyMap{
- "Name": Property{
- Name: "Name",
- Value: "Rufus",
- },
- }
- testCases := []struct {
- dst interface{}
- want interface{}
- }{
- // The destination must have type *[]P, *[]S or *[]*S, for some non-interface
- // type P such that *P implements PropertyLoadSaver, or for some struct type S.
- {new([]Gopher), &[]Gopher{struct1, struct2}},
- {new([]*Gopher), &[]*Gopher{&struct1, &struct2}},
- {new([]PropertyList), &[]PropertyList{pList1, pList2}},
- {new([]PropertyMap), &[]PropertyMap{pMap1, pMap2}},
- // Any other destination type is invalid.
- {0, nil},
- {Gopher{}, nil},
- {PropertyList{}, nil},
- {PropertyMap{}, nil},
- {[]int{}, nil},
- {[]Gopher{}, nil},
- {[]PropertyList{}, nil},
- {new(int), nil},
- {new(Gopher), nil},
- {new(PropertyList), nil}, // This is a special case.
- {new(PropertyMap), nil},
- {new([]int), nil},
- {new([]map[int]int), nil},
- {new([]map[string]Property), nil},
- {new([]map[string]interface{}), nil},
- {new([]*int), nil},
- {new([]*map[int]int), nil},
- {new([]*map[string]Property), nil},
- {new([]*map[string]interface{}), nil},
- {new([]**Gopher), nil},
- {new([]*PropertyList), nil},
- {new([]*PropertyMap), nil},
- }
- for _, tc := range testCases {
- nCall := 0
- client := &Client{
- client: fakeClient(func(in, out proto.Message) error {
- nCall++
- return fakeRunQuery(in.(*pb.RunQueryRequest), out.(*pb.RunQueryResponse))
- }),
- }
- ctx := context.Background()
- var (
- expectedErr error
- expectedNCall int
- )
- if tc.want == nil {
- expectedErr = ErrInvalidEntityType
- } else {
- expectedNCall = 1
- }
- keys, err := client.GetAll(ctx, NewQuery("Gopher"), tc.dst)
- if err != expectedErr {
- t.Errorf("dst type %T: got error %v, want %v", tc.dst, err, expectedErr)
- continue
- }
- if nCall != expectedNCall {
- t.Errorf("dst type %T: Context.Call was called an incorrect number of times: got %d want %d", tc.dst, nCall, expectedNCall)
- continue
- }
- if err != nil {
- continue
- }
- key1 := NewKey(ctx, "Gopher", "", 6, nil)
- expectedKeys := []*Key{
- key1,
- NewKey(ctx, "Gopher", "", 8, key1),
- }
- if l1, l2 := len(keys), len(expectedKeys); l1 != l2 {
- t.Errorf("dst type %T: got %d keys, want %d keys", tc.dst, l1, l2)
- continue
- }
- for i, key := range keys {
- if !keysEqual(key, expectedKeys[i]) {
- t.Errorf("dst type %T: got key #%d %v, want %v", tc.dst, i, key, expectedKeys[i])
- continue
- }
- }
- if !reflect.DeepEqual(tc.dst, tc.want) {
- t.Errorf("dst type %T: Entities got %+v, want %+v", tc.dst, tc.dst, tc.want)
- continue
- }
- }
- }
- // keysEqual is like (*Key).Equal, but ignores the App ID.
- func keysEqual(a, b *Key) bool {
- for a != nil && b != nil {
- if a.Kind() != b.Kind() || a.Name() != b.Name() || a.ID() != b.ID() {
- return false
- }
- a, b = a.Parent(), b.Parent()
- }
- return a == b
- }
- func TestQueriesAreImmutable(t *testing.T) {
- // Test that deriving q2 from q1 does not modify q1.
- q0 := NewQuery("foo")
- q1 := NewQuery("foo")
- q2 := q1.Offset(2)
- if !reflect.DeepEqual(q0, q1) {
- t.Errorf("q0 and q1 were not equal")
- }
- if reflect.DeepEqual(q1, q2) {
- t.Errorf("q1 and q2 were equal")
- }
- // Test that deriving from q4 twice does not conflict, even though
- // q4 has a long list of order clauses. This tests that the arrays
- // backed by a query's slice of orders are not shared.
- f := func() *Query {
- q := NewQuery("bar")
- // 47 is an ugly number that is unlikely to be near a re-allocation
- // point in repeated append calls. For example, it's not near a power
- // of 2 or a multiple of 10.
- for i := 0; i < 47; i++ {
- q = q.Order(fmt.Sprintf("x%d", i))
- }
- return q
- }
- q3 := f().Order("y")
- q4 := f()
- q5 := q4.Order("y")
- q6 := q4.Order("z")
- if !reflect.DeepEqual(q3, q5) {
- t.Errorf("q3 and q5 were not equal")
- }
- if reflect.DeepEqual(q5, q6) {
- t.Errorf("q5 and q6 were equal")
- }
- }
- func TestFilterParser(t *testing.T) {
- testCases := []struct {
- filterStr string
- wantOK bool
- wantFieldName string
- wantOp operator
- }{
- // Supported ops.
- {"x<", true, "x", lessThan},
- {"x <", true, "x", lessThan},
- {"x <", true, "x", lessThan},
- {" x < ", true, "x", lessThan},
- {"x <=", true, "x", lessEq},
- {"x =", true, "x", equal},
- {"x >=", true, "x", greaterEq},
- {"x >", true, "x", greaterThan},
- {"in >", true, "in", greaterThan},
- {"in>", true, "in", greaterThan},
- // Valid but (currently) unsupported ops.
- {"x!=", false, "", 0},
- {"x !=", false, "", 0},
- {" x != ", false, "", 0},
- {"x IN", false, "", 0},
- {"x in", false, "", 0},
- // Invalid ops.
- {"x EQ", false, "", 0},
- {"x lt", false, "", 0},
- {"x <>", false, "", 0},
- {"x >>", false, "", 0},
- {"x ==", false, "", 0},
- {"x =<", false, "", 0},
- {"x =>", false, "", 0},
- {"x !", false, "", 0},
- {"x ", false, "", 0},
- {"x", false, "", 0},
- // Quoted and interesting field names.
- {"x > y =", true, "x > y", equal},
- {"` x ` =", true, " x ", equal},
- {`" x " =`, true, " x ", equal},
- {`" \"x " =`, true, ` "x `, equal},
- {`" x =`, false, "", 0},
- {`" x ="`, false, "", 0},
- {"` x \" =", false, "", 0},
- }
- for _, tc := range testCases {
- q := NewQuery("foo").Filter(tc.filterStr, 42)
- if ok := q.err == nil; ok != tc.wantOK {
- t.Errorf("%q: ok=%t, want %t", tc.filterStr, ok, tc.wantOK)
- continue
- }
- if !tc.wantOK {
- continue
- }
- if len(q.filter) != 1 {
- t.Errorf("%q: len=%d, want %d", tc.filterStr, len(q.filter), 1)
- continue
- }
- got, want := q.filter[0], filter{tc.wantFieldName, tc.wantOp, 42}
- if got != want {
- t.Errorf("%q: got %v, want %v", tc.filterStr, got, want)
- continue
- }
- }
- }
- func TestNamespaceQuery(t *testing.T) {
- gotNamespace := make(chan string, 1)
- ctx := context.Background()
- client := &Client{
- client: fakeClient(func(req, resp proto.Message) error {
- gotNamespace <- req.(*pb.RunQueryRequest).GetPartitionId().GetNamespace()
- return errors.New("not implemented")
- }),
- }
- var gs []Gopher
- client.GetAll(ctx, NewQuery("gopher"), &gs)
- if got, want := <-gotNamespace, ""; got != want {
- t.Errorf("GetAll: got namespace %q, want %q", got, want)
- }
- client.Count(ctx, NewQuery("gopher"))
- if got, want := <-gotNamespace, ""; got != want {
- t.Errorf("Count: got namespace %q, want %q", got, want)
- }
- const ns = "not_default"
- ctx = WithNamespace(ctx, ns)
- client.GetAll(ctx, NewQuery("gopher"), &gs)
- if got, want := <-gotNamespace, ns; got != want {
- t.Errorf("GetAll: got namespace %q, want %q", got, want)
- }
- client.Count(ctx, NewQuery("gopher"))
- if got, want := <-gotNamespace, ns; got != want {
- t.Errorf("Count: got namespace %q, want %q", got, want)
- }
- }
|