Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(496)

Side by Side Diff: service/datastore/raw_interface_test.go

Issue 1270113002: Re-add metadata passthrough on Get operations (Closed) Base URL: https://github.com/luci/gae.git@fix_other_interfaces
Patch Set: cleanup Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « service/datastore/raw_interface.go ('k') | service/datastore/reflect.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 datastore
6
7 import (
8 "testing"
9
10 . "github.com/smartystreets/goconvey/convey"
11 )
12
13 func TestMultiMetaGetter(t *testing.T) {
14 t.Parallel()
15
16 Convey("Test MultiMetaGetter", t, func() {
17 Convey("nil", func() {
18 mmg := NewMultiMetaGetter(nil)
19 val, err := mmg.GetMeta(7, "hi")
20 So(err, ShouldEqual, ErrMetaFieldUnset)
21 So(val, ShouldBeNil)
22
23 So(mmg.GetMetaDefault(7, "hi", "value"), ShouldEqual, "v alue")
24
25 m := mmg.GetSingle(10)
26 val, err = m.GetMeta("hi")
27 So(err, ShouldEqual, ErrMetaFieldUnset)
28 So(val, ShouldBeNil)
29 So(m.GetMetaDefault("hi", "value"), ShouldEqual, "value" )
30 })
31
32 Convey("stuff", func() {
33 pmaps := []PropertyMap{{}, nil, {}}
34 pmaps[0].SetMeta("hi", "thing")
35 pmaps[2].SetMeta("key", 100)
36 mmg := NewMultiMetaGetter(pmaps)
37
38 // oob is OK
39 So(mmg.GetMetaDefault(7, "hi", "value"), ShouldEqual, "v alue")
40
41 // nil is OK
42 So(mmg.GetMetaDefault(1, "key", true), ShouldEqual, true )
43
44 val, err := mmg.GetMeta(0, "hi")
45 So(err, ShouldBeNil)
46 So(val, ShouldEqual, "thing")
47
48 So(mmg.GetMetaDefault(2, "key", 20), ShouldEqual, 100)
49 })
50 })
51 }
OLDNEW
« no previous file with comments | « service/datastore/raw_interface.go ('k') | service/datastore/reflect.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698