mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-19 13:29:35 +00:00
Upgraded from 99c19923, branch release-3.0. This required fetching or upgrading the following: * k8s.io/api to kubernetes-1.9.1 * k8s.io/apimachinery to kubernetes-1.9.1 * github.com/juju/ratelimit to 1.0.1 * github.com/spf13/pflag to 4c012f6d Also, update Scope's imports/function calls to be compatible with the new client.
43 lines
921 B
Go
43 lines
921 B
Go
/*
|
|
Package aetest provides an API for running dev_appserver for use in tests.
|
|
|
|
An example test file:
|
|
|
|
package foo_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"google.golang.org/appengine/memcache"
|
|
"google.golang.org/appengine/aetest"
|
|
)
|
|
|
|
func TestFoo(t *testing.T) {
|
|
ctx, done, err := aetest.NewContext()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer done()
|
|
|
|
it := &memcache.Item{
|
|
Key: "some-key",
|
|
Value: []byte("some-value"),
|
|
}
|
|
err = memcache.Set(ctx, it)
|
|
if err != nil {
|
|
t.Fatalf("Set err: %v", err)
|
|
}
|
|
it, err = memcache.Get(ctx, "some-key")
|
|
if err != nil {
|
|
t.Fatalf("Get err: %v; want no error", err)
|
|
}
|
|
if g, w := string(it.Value), "some-value" ; g != w {
|
|
t.Errorf("retrieved Item.Value = %q, want %q", g, w)
|
|
}
|
|
}
|
|
|
|
The environment variable APPENGINE_DEV_APPSERVER specifies the location of the
|
|
dev_appserver.py executable to use. If unset, the system PATH is consulted.
|
|
*/
|
|
package aetest
|