Index: go/src/infra/gae/libs/gae/dummy_test.go |
diff --git a/go/src/infra/gae/libs/gae/dummy_test.go b/go/src/infra/gae/libs/gae/dummy_test.go |
deleted file mode 100644 |
index 8b167bf29b7be807628372ca5142fbd3e296c6ee..0000000000000000000000000000000000000000 |
--- a/go/src/infra/gae/libs/gae/dummy_test.go |
+++ /dev/null |
@@ -1,85 +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 gae |
- |
-import ( |
- "math/rand" |
- "testing" |
- "time" |
- |
- "golang.org/x/net/context" |
- |
- "github.com/luci/luci-go/common/clock/testclock" |
- |
- . "github.com/smartystreets/goconvey/convey" |
-) |
- |
-func TestContextAccess(t *testing.T) { |
- Convey("Context Access", t, func() { |
- now := time.Date(2015, 1, 1, 0, 0, 0, 0, time.UTC) |
- c, _ := testclock.UseTime(context.Background(), now) |
- |
- Convey("blank", func() { |
- So(GetMC(c), ShouldBeNil) |
- So(GetTQ(c), ShouldBeNil) |
- So(GetGI(c), ShouldBeNil) |
- }) |
- |
- Convey("RDS", func() { |
- c = SetRDS(c, DummyRDS()) |
- So(GetRDS(c), ShouldNotBeNil) |
- So(func() { GetRDS(c).NewKey("", "", 1, nil) }, ShouldPanic) |
- }) |
- |
- Convey("MC", func() { |
- c = SetMC(c, DummyMC()) |
- So(GetMC(c), ShouldNotBeNil) |
- So(func() { GetMC(c).Add(nil) }, ShouldPanic) |
- }) |
- |
- Convey("TQ", func() { |
- c = SetTQ(c, DummyTQ()) |
- So(GetTQ(c), ShouldNotBeNil) |
- So(func() { GetTQ(c).Purge("") }, ShouldPanic) |
- }) |
- |
- Convey("GI", func() { |
- c = SetGI(c, DummyGI()) |
- So(GetGI(c), ShouldNotBeNil) |
- So(func() { GetGI(c).Datacenter() }, ShouldPanic) |
- }) |
- |
- Convey("QY", func() { |
- q := DummyQY() |
- So(func() { q.Distinct() }, ShouldPanic) |
- }) |
- |
- Convey("MathRand", func() { |
- // Note that the non-randomness below is because time is fixed at the |
- // top of the outer test function. Normally it would evolve with time. |
- Convey("unset", func() { |
- r := rand.New(rand.NewSource(now.UnixNano())) |
- i := r.Int() |
- So(GetMathRand(c).Int(), ShouldEqual, i) |
- So(GetMathRand(c).Int(), ShouldEqual, i) |
- }) |
- |
- Convey("set persistance", func() { |
- c = SetMathRand(c, rand.New(rand.NewSource(now.UnixNano()))) |
- r := rand.New(rand.NewSource(now.UnixNano())) |
- So(GetMathRand(c).Int(), ShouldEqual, r.Int()) |
- So(GetMathRand(c).Int(), ShouldEqual, r.Int()) |
- }) |
- |
- Convey("nil set", func() { |
- c = SetMathRand(c, nil) |
- r := rand.New(rand.NewSource(now.UnixNano())) |
- i := r.Int() |
- So(GetMathRand(c).Int(), ShouldEqual, i) |
- So(GetMathRand(c).Int(), ShouldEqual, i) |
- }) |
- }) |
- }) |
-} |