-
Notifications
You must be signed in to change notification settings - Fork 725
SIP-031 stateful property tests #6321
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
Merged
moodmosaic
merged 13 commits into
stacks-network:develop
from
moodmosaic:sip31-prop-tests
Jul 29, 2025
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
632ab2b
Add stateful property tests for SIP-031
moodmosaic d801475
Use wallet name lookup in SIP-031 stateful test logs
moodmosaic fc6e3c7
Add `@stacks/rendezvous` to `package.json`
BowTiedRadone e3146fb
Add a wallet with enough testing balance for SIP-031 to `Devnet.toml`
BowTiedRadone 559adb2
Add rendezvous property tests for SIP-031's update-recipient
BowTiedRadone 1a6cc3c
Add rendezvous property tests for SIP-031's claim
BowTiedRadone 4c999b2
Rename SIP-031 rendezvous initial mint helper
BowTiedRadone c311433
Add rendezvous property test for SIP-031's claimable balance per iter…
BowTiedRadone 885e334
Add rendezvous invariants for SIP-031
BowTiedRadone aa8b567
SIP-031 rendezvous tests comments cleanup
BowTiedRadone cc414fc
Add new address to privateKeyMapping in pox-4.prop.test.ts
hstove 4703b0b
Fix PoX-4 property tests constants in pox-4.prop.test.ts
BowTiedRadone 225d25b
Add field documentation to Model type
moodmosaic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
contrib/core-contract-tests/tests/sip-031/commands/Claim.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| import fc from "fast-check"; | ||
| import type { Model, Real } from "./types"; | ||
| import { | ||
| calculateClaimable, | ||
| getWalletNameByAddress, | ||
| logCommand, | ||
| trackCommandRun, | ||
| } from "./utils"; | ||
| import { expect } from "vitest"; | ||
| import { txOk } from "@clarigen/test"; | ||
|
|
||
| export const Claim = (accounts: Real["accounts"]) => | ||
| fc.record({ | ||
| sender: fc.constantFrom( | ||
| ...Object.values(accounts).map((x) => x.address), | ||
| ), | ||
| }).map((r) => ({ | ||
| check: (model: Readonly<Model>) => { | ||
| const claimable = calculateClaimable(model); | ||
| return model.initialized === true && model.recipient === r.sender && | ||
| claimable > 0n; | ||
| }, | ||
| run: (model: Model, real: Real) => { | ||
| trackCommandRun(model, "claim"); | ||
|
|
||
| const expectedClaim = calculateClaimable(model); | ||
| const receipt = txOk(real.contracts.sip031.claim(), r.sender); | ||
| expect(receipt.value).toBe(expectedClaim); | ||
|
|
||
| model.balance -= expectedClaim; | ||
| model.totalClaimed += expectedClaim; | ||
|
|
||
| logCommand({ | ||
| sender: getWalletNameByAddress(r.sender), | ||
| status: "ok", | ||
| action: "claim", | ||
| value: `amount ${expectedClaim}`, | ||
| }); | ||
| }, | ||
| toString: () => `claim`, | ||
| })); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.