func testBegin2Panics(t *testing.T, conn tabletconn.TabletConn) { t.Log("testBegin2Panics") ctx := context.Background() if _, err := conn.Begin2(ctx); err == nil || !strings.Contains(err.Error(), "caught test panic") { t.Fatalf("unexpected panic error: %v", err) } }
func testBegin2(t *testing.T, conn tabletconn.TabletConn) { ctx := context.Background() ctx = callerid.NewContext(ctx, testCallerID, testVTGateCallerID) transactionID, err := conn.Begin2(ctx) if err != nil { t.Fatalf("Begin2 failed: %v", err) } if transactionID != beginTransactionID { t.Errorf("Unexpected result from Begin2: got %v wanted %v", transactionID, beginTransactionID) } }
func testBegin2(t *testing.T, conn tabletconn.TabletConn) { t.Log("testBegin2") ctx := context.Background() transactionID, err := conn.Begin2(ctx) if err != nil { t.Fatalf("Begin2 failed: %v", err) } if transactionID != beginTransactionID { t.Errorf("Unexpected result from Begin2: got %v wanted %v", transactionID, beginTransactionID) } }
func testBegin2Error(t *testing.T, conn tabletconn.TabletConn) { t.Log("testBegin2Error") ctx := context.Background() _, err := conn.Begin2(ctx) if err == nil { t.Fatalf("Begin2 was expecting an error, didn't get one") } if !strings.Contains(err.Error(), expectedErrMatch) { t.Errorf("Unexpected error from Begin2: got %v, wanted err containing %v", err, expectedErrMatch) } }
func testBegin2Error(t *testing.T, conn tabletconn.TabletConn) { t.Log("testBegin2Error") ctx := context.Background() _, err := conn.Begin2(ctx) verifyError(t, err, "Begin2") }