OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package meta |
| 6 |
| 7 import ( |
| 8 "errors" |
| 9 "testing" |
| 10 |
| 11 "github.com/luci/gae/filter/featureBreaker" |
| 12 "github.com/luci/gae/impl/memory" |
| 13 "github.com/luci/gae/service/datastore" |
| 14 . "github.com/smartystreets/goconvey/convey" |
| 15 "golang.org/x/net/context" |
| 16 ) |
| 17 |
| 18 func TestGetEntityGroupVersion(t *testing.T) { |
| 19 t.Parallel() |
| 20 |
| 21 Convey("GetEntityGroupVersion", t, func() { |
| 22 c := memory.Use(context.Background()) |
| 23 c, fb := featureBreaker.FilterRDS(c, errors.New("INTERNAL_ERROR"
)) |
| 24 ds := datastore.Get(c) |
| 25 |
| 26 pm := datastore.PropertyMap{ |
| 27 "$key": {datastore.MkPropertyNI(ds.MakeKey("A", ""))}, |
| 28 "Val": {datastore.MkProperty(10)}, |
| 29 } |
| 30 So(ds.Put(pm), ShouldBeNil) |
| 31 aKey := ds.KeyForObj(pm) |
| 32 So(aKey, ShouldNotBeNil) |
| 33 |
| 34 v, err := GetEntityGroupVersion(c, aKey) |
| 35 So(err, ShouldBeNil) |
| 36 So(v, ShouldEqual, 1) |
| 37 |
| 38 So(ds.Delete(aKey), ShouldBeNil) |
| 39 |
| 40 v, err = GetEntityGroupVersion(c, ds.NewKey("madeUp", "thing", 0
, aKey)) |
| 41 So(err, ShouldBeNil) |
| 42 So(v, ShouldEqual, 2) |
| 43 |
| 44 v, err = GetEntityGroupVersion(c, ds.NewKey("madeUp", "thing", 0
, nil)) |
| 45 So(err, ShouldBeNil) |
| 46 So(v, ShouldEqual, 0) |
| 47 |
| 48 fb.BreakFeatures(nil, "GetMulti") |
| 49 |
| 50 v, err = GetEntityGroupVersion(c, aKey) |
| 51 So(err.Error(), ShouldContainSubstring, "INTERNAL_ERROR") |
| 52 }) |
| 53 } |
OLD | NEW |