|
@ -31,18 +31,18 @@ func init() { |
|
|
func TestKVStore(t *testing.T) { |
|
|
func TestKVStore(t *testing.T) { |
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
defer cancel() |
|
|
defer cancel() |
|
|
logger := log.NewTestingLogger(t) |
|
|
|
|
|
|
|
|
logger := log.NewNopLogger() |
|
|
|
|
|
|
|
|
logger.Info("### Testing KVStore") |
|
|
|
|
|
|
|
|
t.Log("### Testing KVStore") |
|
|
testBulk(ctx, t, logger, kvstore.NewApplication()) |
|
|
testBulk(ctx, t, logger, kvstore.NewApplication()) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func TestBaseApp(t *testing.T) { |
|
|
func TestBaseApp(t *testing.T) { |
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
defer cancel() |
|
|
defer cancel() |
|
|
logger := log.NewTestingLogger(t) |
|
|
|
|
|
|
|
|
logger := log.NewNopLogger() |
|
|
|
|
|
|
|
|
logger.Info("### Testing BaseApp") |
|
|
|
|
|
|
|
|
t.Log("### Testing BaseApp") |
|
|
testBulk(ctx, t, logger, types.NewBaseApplication()) |
|
|
testBulk(ctx, t, logger, types.NewBaseApplication()) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -50,9 +50,9 @@ func TestGRPC(t *testing.T) { |
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
ctx, cancel := context.WithCancel(context.Background()) |
|
|
defer cancel() |
|
|
defer cancel() |
|
|
|
|
|
|
|
|
logger := log.NewTestingLogger(t) |
|
|
|
|
|
|
|
|
logger := log.NewNopLogger() |
|
|
|
|
|
|
|
|
logger.Info("### Testing GRPC") |
|
|
|
|
|
|
|
|
t.Log("### Testing GRPC") |
|
|
testGRPCSync(ctx, t, logger, types.NewGRPCApplication(types.NewBaseApplication())) |
|
|
testGRPCSync(ctx, t, logger, types.NewGRPCApplication(types.NewBaseApplication())) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|