代码拉取完成,页面将自动刷新
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)
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。