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

Unified Diff: memory/memcache_test.go

Issue 1243323002: Refactor a bit. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: fix golint Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « memory/memcache.go ('k') | memory/plist.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: memory/memcache_test.go
diff --git a/memory/memcache_test.go b/memory/memcache_test.go
deleted file mode 100644
index 6c9985821fd04ef7c34dcb145054dbda1e6ee9c1..0000000000000000000000000000000000000000
--- a/memory/memcache_test.go
+++ /dev/null
@@ -1,182 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-package memory
-
-import (
- "testing"
- "time"
-
- "github.com/luci/gae"
- "github.com/luci/luci-go/common/clock/testclock"
- . "github.com/smartystreets/goconvey/convey"
- "golang.org/x/net/context"
-)
-
-func TestMemcache(t *testing.T) {
- t.Parallel()
-
- Convey("memcache", t, func() {
- now := time.Date(2015, 1, 1, 0, 0, 0, 0, time.UTC)
- c, tc := testclock.UseTime(context.Background(), now)
- c = Use(c)
- mc := gae.GetMC(c)
-
- Convey("implements MCSingleReadWriter", func() {
- Convey("Add", func() {
- itm := &mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Second,
- }
- err := mc.Add(itm)
- So(err, ShouldBeNil)
- Convey("which rejects objects already there", func() {
- err := mc.Add(itm)
- So(err, ShouldEqual, gae.ErrMCNotStored)
- })
- })
-
- Convey("Get", func() {
- itm := &mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Second,
- }
- err := mc.Add(itm)
- So(err, ShouldBeNil)
-
- testItem := &mcItem{
- key: "sup",
- value: []byte("cool"),
- CasID: 1,
- }
- i, err := mc.Get("sup")
- So(err, ShouldBeNil)
- So(i, ShouldResemble, testItem)
-
- Convey("which can expire", func() {
- tc.Add(time.Second * 4)
- i, err := mc.Get("sup")
- So(err, ShouldEqual, gae.ErrMCCacheMiss)
- So(i, ShouldBeNil)
- })
- })
-
- Convey("Delete", func() {
- Convey("works if it's there", func() {
- itm := &mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Second,
- }
- err := mc.Add(itm)
- So(err, ShouldBeNil)
-
- err = mc.Delete("sup")
- So(err, ShouldBeNil)
-
- i, err := mc.Get("sup")
- So(err, ShouldEqual, gae.ErrMCCacheMiss)
- So(i, ShouldBeNil)
- })
-
- Convey("but not if it's not there", func() {
- err := mc.Delete("sup")
- So(err, ShouldEqual, gae.ErrMCCacheMiss)
- })
- })
-
- Convey("Set", func() {
- itm := &mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Second,
- }
- err := mc.Add(itm)
- So(err, ShouldBeNil)
-
- itm.SetValue([]byte("newp"))
- err = mc.Set(itm)
- So(err, ShouldBeNil)
-
- testItem := &mcItem{
- key: "sup",
- value: []byte("newp"),
- CasID: 2,
- }
- i, err := mc.Get("sup")
- So(err, ShouldBeNil)
- So(i, ShouldResemble, testItem)
- })
-
- Convey("CompareAndSwap", func() {
- itm := gae.MCItem(&mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Second * 2,
- })
- err := mc.Add(itm)
- So(err, ShouldBeNil)
-
- Convey("works after a Get", func() {
- itm, err = mc.Get("sup")
- So(err, ShouldBeNil)
- So(itm.(*mcItem).CasID, ShouldEqual, 1)
-
- itm.SetValue([]byte("newp"))
- err = mc.CompareAndSwap(itm)
- So(err, ShouldBeNil)
- })
-
- Convey("but fails if you don't", func() {
- itm.SetValue([]byte("newp"))
- err = mc.CompareAndSwap(itm)
- So(err, ShouldEqual, gae.ErrMCCASConflict)
- })
-
- Convey("and fails if the item is expired/gone", func() {
- tc.Add(3 * time.Second)
- itm.SetValue([]byte("newp"))
- err = mc.CompareAndSwap(itm)
- So(err, ShouldEqual, gae.ErrMCNotStored)
- })
- })
- })
-
- Convey("check that the internal implementation is sane", func() {
- curTime := now
- err := mc.Add(&mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Second * 2,
- })
-
- mci := mc.(*memcacheImpl)
-
- So(err, ShouldBeNil)
- So(len(mci.data.items), ShouldEqual, 1)
- So(mci.data.casID, ShouldEqual, 1)
- So(mci.data.items["sup"], ShouldResemble, &mcItem{
- key: "sup",
- value: []byte("cool"),
- expiration: time.Duration(curTime.Add(time.Second * 2).UnixNano()),
- CasID: 1,
- })
-
- el, err := mc.Get("sup")
- So(err, ShouldBeNil)
- So(len(mci.data.items), ShouldEqual, 1)
- So(mci.data.casID, ShouldEqual, 1)
-
- testItem := &mcItem{
- key: "sup",
- value: []byte("cool"),
- CasID: 1,
- }
- So(el, ShouldResemble, testItem)
- })
-
- })
-}
« no previous file with comments | « memory/memcache.go ('k') | memory/plist.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698