Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[antithesis] Remove assertions incompatible with fault injection #3104

Merged
merged 3 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 0 additions & 56 deletions tests/antithesis/avalanchego/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,6 @@ func (w *workload) issueXChainBaseTx(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue X-chain baseTx: %s", err)
assert.Unreachable("failed to issue X-chain baseTx", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("issued new X-chain baseTx %s in %s", baseTx.ID(), time.Since(baseStartTime))
Expand Down Expand Up @@ -318,10 +314,6 @@ func (w *workload) issueXChainCreateAssetTx(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue X-chain create asset transaction: %s", err)
assert.Unreachable("failed to issue X-chain create asset transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("created new X-chain asset %s in %s", createAssetTx.ID(), time.Since(createAssetStartTime))
Expand Down Expand Up @@ -376,10 +368,6 @@ func (w *workload) issueXChainOperationTx(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue X-chain create asset transaction: %s", err)
assert.Unreachable("failed to issue X-chain create asset transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("created new X-chain asset %s in %s", createAssetTx.ID(), time.Since(createAssetStartTime))
Expand All @@ -391,10 +379,6 @@ func (w *workload) issueXChainOperationTx(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue X-chain operation transaction: %s", err)
assert.Unreachable("failed to issue X-chain operation transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("issued X-chain operation tx %s in %s", operationTx.ID(), time.Since(operationStartTime))
Expand Down Expand Up @@ -454,10 +438,6 @@ func (w *workload) issueXToPTransfer(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue X-chain export transaction: %s", err)
assert.Unreachable("failed to issue X-chain export transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("created X-chain export transaction %s in %s", exportTx.ID(), time.Since(exportStartTime))
Expand All @@ -472,10 +452,6 @@ func (w *workload) issueXToPTransfer(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue P-chain import transaction: %s", err)
assert.Unreachable("failed to issue P-chain import transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("created P-chain import transaction %s in %s", importTx.ID(), time.Since(importStartTime))
Expand Down Expand Up @@ -536,10 +512,6 @@ func (w *workload) issuePToXTransfer(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue P-chain export transaction: %s", err)
assert.Unreachable("failed to issue P-chain export transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("created P-chain export transaction %s in %s", exportTx.ID(), time.Since(exportStartTime))
Expand All @@ -551,10 +523,6 @@ func (w *workload) issuePToXTransfer(ctx context.Context) {
)
if err != nil {
log.Printf("failed to issue X-chain import transaction: %s", err)
assert.Unreachable("failed to issue X-chain import transaction", map[string]any{
"worker": w.id,
"err": err,
})
return
}
log.Printf("created X-chain import transaction %s in %s", importTx.ID(), time.Since(importStartTime))
Expand All @@ -581,12 +549,6 @@ func (w *workload) confirmXChainTx(ctx context.Context, tx *xtxs.Tx) {
client := avm.NewClient(uri, "X")
if err := avm.AwaitTxAccepted(client, ctx, txID, 100*time.Millisecond); err != nil {
log.Printf("failed to confirm X-chain transaction %s on %s: %s", txID, uri, err)
assert.Unreachable("failed to determine the status of an X-chain transaction", map[string]any{
"worker": w.id,
"txID": txID,
"uri": uri,
"err": err,
})
return
}
log.Printf("confirmed X-chain transaction %s on %s", txID, uri)
Expand All @@ -600,12 +562,6 @@ func (w *workload) confirmPChainTx(ctx context.Context, tx *ptxs.Tx) {
client := platformvm.NewClient(uri)
if err := platformvm.AwaitTxAccepted(client, ctx, txID, 100*time.Millisecond); err != nil {
log.Printf("failed to determine the status of a P-chain transaction %s on %s: %s", txID, uri, err)
assert.Unreachable("failed to determine the status of a P-chain transaction", map[string]any{
"worker": w.id,
"txID": txID,
"uri": uri,
"err": err,
})
return
}
log.Printf("confirmed P-chain transaction %s on %s", txID, uri)
Expand All @@ -631,12 +587,6 @@ func (w *workload) verifyXChainTxConsumedUTXOs(ctx context.Context, tx *xtxs.Tx)
)
if err != nil {
log.Printf("failed to fetch X-chain UTXOs on %s: %s", uri, err)
assert.Unreachable("failed to fetch X-chain UTXOs", map[string]any{
"worker": w.id,
"txID": txID,
"uri": uri,
"err": err,
})
return
}

Expand Down Expand Up @@ -677,12 +627,6 @@ func (w *workload) verifyPChainTxConsumedUTXOs(ctx context.Context, tx *ptxs.Tx)
)
if err != nil {
log.Printf("failed to fetch P-chain UTXOs on %s: %s", uri, err)
assert.Unreachable("failed to fetch P-chain UTXOs", map[string]any{
"worker": w.id,
"uri": uri,
"txID": txID,
"err": err,
})
return
}

Expand Down
6 changes: 0 additions & 6 deletions tests/antithesis/xsvm/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,6 @@ func (w *workload) confirmTransferTx(ctx context.Context, tx *status.TxIssuance)
client := api.NewClient(uri, w.chainID.String())
if err := api.AwaitTxAccepted(ctx, client, w.key.Address(), tx.Nonce, PollingInterval); err != nil {
log.Printf("worker %d failed to confirm transaction %s on %s: %s", w.id, tx.TxID, uri, err)
assert.Unreachable("failed to confirm transaction", map[string]any{
"worker": w.id,
"txID": tx.TxID,
"uri": uri,
"err": err,
})
return
}
}
Expand Down
Loading