func testExecuteBatch2Panics(t *testing.T, conn tabletconn.TabletConn) { t.Log("testExecuteBatch2Panics") ctx := context.Background() if _, err := conn.ExecuteBatch2(ctx, executeBatchQueries, true, executeBatchTransactionID); err == nil || !strings.Contains(err.Error(), "caught test panic") { t.Fatalf("unexpected panic error: %v", err) } }
func testExecuteBatch2(t *testing.T, conn tabletconn.TabletConn) { ctx := context.Background() ctx = callerid.NewContext(ctx, testCallerID, testVTGateCallerID) qrl, err := conn.ExecuteBatch2(ctx, executeBatchQueries, true, executeBatchTransactionID) if err != nil { t.Fatalf("ExecuteBatch failed: %v", err) } if !reflect.DeepEqual(*qrl, executeBatchQueryResultList) { t.Errorf("Unexpected result from ExecuteBatch: got %v wanted %v", qrl, executeBatchQueryResultList) } }
func testExecuteBatch2Error(t *testing.T, conn tabletconn.TabletConn) { t.Log("testBatchExecute2Error") ctx := context.Background() _, err := conn.ExecuteBatch2(ctx, executeBatchQueries, true, executeBatchTransactionID) verifyError(t, err, "ExecuteBatch") }