コード例 #1
0
ファイル: test_agent_rpc.go プロジェクト: pranjal5215/vitess
func agentRPCTestScrap(ctx context.Context, t *testing.T, client tmclient.TabletManagerClient, ti *topo.TabletInfo) {
	err := client.Scrap(ctx, ti)
	if strings.Index(err.Error(), errTestScrap.Error()) == -1 {
		t.Errorf("Unexpected Scrap result: got %v expected %v", err, errTestScrap)
	}
}
コード例 #2
0
ファイル: test_agent_rpc.go プロジェクト: pranjal5215/vitess
func agentRPCTestScrapPanic(ctx context.Context, t *testing.T, client tmclient.TabletManagerClient, ti *topo.TabletInfo) {
	err := client.Scrap(ctx, ti)
	expectRPCWrapLockActionPanic(t, err)
}
コード例 #3
0
ファイル: test_agent_rpc.go プロジェクト: nangong92t/go_src
func agentRpcTestScrap(t *testing.T, client tmclient.TabletManagerClient, ti *topo.TabletInfo) {
	err := client.Scrap(ti, time.Minute)
	if strings.Index(err.Error(), testScrapError.Error()) == -1 {
		t.Errorf("Unexpected Scrap result: got %v expected %v", err, testScrapError)
	}
}