本文整理汇总了Golang中github.com/youtube/vitess/go/vt/tabletserver/tabletconn.TabletConn.StreamHealth方法的典型用法代码示例。如果您正苦于以下问题:Golang TabletConn.StreamHealth方法的具体用法?Golang TabletConn.StreamHealth怎么用?Golang TabletConn.StreamHealth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/youtube/vitess/go/vt/tabletserver/tabletconn.TabletConn
的用法示例。
在下文中一共展示了TabletConn.StreamHealth方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: testStreamHealth
func testStreamHealth(t *testing.T, conn tabletconn.TabletConn) {
t.Log("testStreamHealth")
streamHealthSynchronization = make(chan struct{})
ctx := context.Background()
c, errFunc, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
// channel should have one response, then closed
shr, ok := <-c
if !ok {
t.Fatalf("StreamHealth got no response")
}
if !reflect.DeepEqual(*shr, *testStreamHealthStreamHealthResponse) {
t.Errorf("invalid StreamHealthResponse: got %v expected %v", *shr, *testStreamHealthStreamHealthResponse)
}
// close streamHealthSynchronization so server side knows we
// got the response, and it can send the error
close(streamHealthSynchronization)
_, ok = <-c
if ok {
t.Fatalf("StreamHealth wasn't closed")
}
err = errFunc()
if !strings.Contains(err.Error(), testStreamHealthError) {
t.Fatalf("StreamHealth failed with the wrong error: %v", err)
}
}
示例2: testStreamHealthPanics
func testStreamHealthPanics(t *testing.T, conn tabletconn.TabletConn, f *FakeQueryService) {
t.Log("testStreamHealthPanics")
testPanicHelper(t, f, "StreamHealth", func(ctx context.Context) error {
stream, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
_, err = stream.Recv()
return err
})
}
示例3: testStreamHealthPanics
func testStreamHealthPanics(t *testing.T, conn tabletconn.TabletConn) {
ctx := context.Background()
stream, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
_, err = stream.Recv()
if err == nil || !strings.Contains(err.Error(), "caught test panic") {
t.Fatalf("unexpected panic error: %v", err)
}
}
示例4: testStreamHealthError
func testStreamHealthError(t *testing.T, conn tabletconn.TabletConn) {
ctx := context.Background()
stream, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
_, err = stream.Recv()
if err == nil || !strings.Contains(err.Error(), testStreamHealthErrorMsg) {
t.Fatalf("StreamHealth failed with the wrong error: %v", err)
}
}
示例5: testStreamHealthError
func testStreamHealthError(t *testing.T, conn tabletconn.TabletConn, f *FakeQueryService) {
t.Log("testStreamHealthError")
f.HasError = true
ctx := context.Background()
stream, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
_, err = stream.Recv()
if err == nil || !strings.Contains(err.Error(), TestStreamHealthErrorMsg) {
t.Fatalf("StreamHealth failed with the wrong error: %v", err)
}
f.HasError = false
}
示例6: testStreamHealthPanics
func testStreamHealthPanics(t *testing.T, conn tabletconn.TabletConn) {
ctx := context.Background()
c, errFunc, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
// channel should have no response, just closed
_, ok := <-c
if ok {
t.Fatalf("StreamHealth wasn't closed")
}
err = errFunc()
if err == nil || !strings.Contains(err.Error(), "caught test panic") {
t.Fatalf("unexpected panic error: %v", err)
}
}
示例7: testStreamHealth
func testStreamHealth(t *testing.T, conn tabletconn.TabletConn) {
ctx := context.Background()
stream, err := conn.StreamHealth(ctx)
if err != nil {
t.Fatalf("StreamHealth failed: %v", err)
}
// channel should have one response, then closed
shr, err := stream.Recv()
if err != nil {
t.Fatalf("StreamHealth got no response")
}
if !reflect.DeepEqual(*shr, *testStreamHealthStreamHealthResponse) {
t.Errorf("invalid StreamHealthResponse: got %v expected %v", *shr, *testStreamHealthStreamHealthResponse)
}
}