加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
service_test.go 2.03 KB
一键复制 编辑 原始数据 按行查看 历史
xtaci 提交于 2017-04-22 10:51 . update test
package main
import (
pb "snowflake/proto"
"testing"
"golang.org/x/net/context"
"google.golang.org/grpc"
)
const (
address = "localhost:10000"
test_key = "test_key"
)
func TestSnowflake(t *testing.T) {
// Set up a connection to the server.
conn, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil {
t.Fatalf("did not connect: %v", err)
}
defer conn.Close()
c := pb.NewSnowflakeServiceClient(conn)
// Contact the server and print out its response.
r, err := c.Next(context.Background(), &pb.Snowflake_Key{Name: test_key})
if err != nil {
t.Fatalf("could not get next value: %v", err)
}
t.Log(r.Value)
}
func BenchmarkSnowflake(b *testing.B) {
// Set up a connection to the server.
conn, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil {
b.Fatalf("did not connect: %v", err)
}
defer conn.Close()
c := pb.NewSnowflakeServiceClient(conn)
for i := 0; i < b.N; i++ {
// Contact the server and print out its response.
_, err := c.Next(context.Background(), &pb.Snowflake_Key{Name: test_key})
if err != nil {
b.Fatalf("could not get next value: %v", err)
}
}
}
func TestSnowflakeUUID(t *testing.T) {
// Set up a connection to the server.
conn, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil {
t.Fatalf("did not connect: %v", err)
}
defer conn.Close()
c := pb.NewSnowflakeServiceClient(conn)
// Contact the server and print out its response.
r, err := c.GetUUID(context.Background(), &pb.Snowflake_NullRequest{})
if err != nil {
t.Fatalf("could not get next value: %v", err)
}
t.Logf("%b", r.Uuid)
}
func BenchmarkSnowflakeUUID(b *testing.B) {
// Set up a connection to the server.
conn, err := grpc.Dial(address, grpc.WithInsecure())
if err != nil {
b.Fatalf("did not connect: %v", err)
}
defer conn.Close()
c := pb.NewSnowflakeServiceClient(conn)
for i := 0; i < b.N; i++ {
// Contact the server and print out its response.
_, err := c.GetUUID(context.Background(), &pb.Snowflake_NullRequest{})
if err != nil {
b.Fatalf("could not get uuid: %v", err)
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化