퍼징과 불변식
속성 기반 테스트
퍼징과 불변식은(는) CoddyKit의 무료 Web3 & DApp Development Fundamentals 강의입니다. 이것은 4개 중 3번째 강의입니다. 아래에서 전체 강의를 무료로 읽을 수 있으며, 내장 코드 에디터와 24/7 AI 튜터와 함께 브라우저에서 직접 실습할 수 있습니다. 이 강의는 Web3 & DApp Development Fundamentals 학습 경로의 일부이며, 진행 상황이 웹과 CoddyKit 앱에 동기화됩니다. Web3 & DApp Development Fundamentals 강의에는 총 4개의 강의가 포함되어 있습니다.
이 강의의 일부는 아직 번역되지 않았으며 영어로 표시됩니다.
Beyond Hardcoded Inputs
Unit tests check specific inputs you thought of. But bugs often hide in inputs you did not think of. Property-based testing flips this: you state a property that should always hold, and the tool generates many random inputs trying to break it.
Foundry supports two flavors: fuzz tests and invariant tests.
Writing a Fuzz Test
A fuzz test is simply a test function with parameters. Foundry automatically calls it many times with randomized argument values, hunting for a counterexample.
function testFuzzDeposit(uint256 amount) public {
vm.assume(amount > 0 && amount < 1e30);
vault.deposit(amount);
assertEq(vault.balanceOf(address(this)), amount);
}Bounding Inputs
Random inputs may be unrealistic. Constrain them with:
vm.assume(cond)— discard runs that fail the conditionbound(x, min, max)— map any value into a range
Prefer bound for ranges since assume can waste runs by rejecting too many inputs.
function testFuzz(uint256 x) public {
x = bound(x, 1, 1000); // always in [1, 1000]
// ...
}What Makes a Good Property
A good fuzz property is a statement that must hold for all valid inputs. Examples:
- Depositing then withdrawing returns the same amount
- Total supply never changes on a transfer
- A user can never withdraw more than they deposited
Think in terms of universal truths, not specific values.
function testFuzzTransferConservesSupply(uint256 amt) public {
uint256 supplyBefore = token.totalSupply();
token.transfer(bob, bound(amt, 0, token.balanceOf(address(this))));
assertEq(token.totalSupply(), supplyBefore);
}Reading Fuzz Output
When a fuzz test fails, Foundry prints the exact counterexample that broke the property and the number of runs. It also stores a corpus so the failing input is replayed on future runs until you fix it.
$ forge test
[FAIL. Reason: assertion failed]
Counterexample: calldata=0x..., args=[115792089237316195...]Configuring the Fuzzer
Control fuzzing in foundry.toml. The runs setting is how many random inputs each fuzz test gets. More runs increase confidence but take longer.
# foundry.toml
[fuzz]
runs = 1000
max_test_rejects = 65536Invariant Testing
Invariants go a step further. Instead of one function call, Foundry executes long random sequences of calls to your contract, then checks that a property still holds after every sequence.
Invariant functions are named with the invariant_ prefix.
function invariant_totalSupplyConstant() public {
assertEq(token.totalSupply(), INITIAL_SUPPLY);
}Handlers
For meaningful invariant tests you usually write a handler contract that exposes a curated set of actions. The fuzzer calls the handler's functions in random order, keeping the call sequences valid and focused.
Register target contracts with targetContract in setUp().
function setUp() public {
handler = new Handler(token);
targetContract(address(handler));
}Ghost Variables
Handlers often track ghost variables: bookkeeping totals updated as actions run. Invariants compare the contract's real state against these ghost values.
For example, summing every deposit in the handler and asserting it equals the vault's total assets catches accounting drift.
// inside handler
uint256 public ghostTotalDeposited;
function deposit(uint256 a) external {
vault.deposit(a);
ghostTotalDeposited += a;
}Fuzz vs Invariant
Knowing which to reach for:
- Fuzz tests a single function against random arguments — good for input validation and pure logic
- Invariant tests random sequences of actions — good for stateful systems like vaults, AMMs, and token accounting
Use both: fuzz for unit-level properties, invariants for system-level guarantees.
Best Practices
Effective property testing:
- State properties as universal truths, not examples
- Use
boundover heavyassume - Increase
runsfor critical contracts - Write focused handlers for invariants
- Track ghost variables for accounting checks
Property tests catch the edge cases humans miss.
Quick Check
What is the key difference between a fuzz test and an invariant test in Foundry?
Recap
You learned property-based testing:
- Fuzz tests take parameters; Foundry generates random inputs
- Use
boundandvm.assumeto constrain inputs - Invariant tests run random call sequences via handlers
- Ghost variables track expected state for accounting invariants
- Counterexamples are saved and replayed
Next: the cast and anvil CLI tools.
AI 튜터와 함께 Web3 & DApp Development Fundamentals을(를) 배우세요 — 무료
브라우저에서 실제 코드를 작성하고 실행하며, 24/7 AI 튜터로부터 즉각적인 도움을 받고, 웹이나 앱에서 중단한 부분부터 계속 학습하세요.
- 코스
- 29
- 레슨
- 105
자주 묻는 질문
“퍼징과 불변식” 강의는 무료인가요?
네 — “퍼징과 불변식” 전체 내용을 이 웹사이트에서 무료로 읽을 수 있습니다. 인터랙티브하게 실습하려면(내장 코드 에디터와 24/7 AI 튜터), CoddyKit PRO로 업그레이드하면 Web3 & DApp Development Fundamentals 강의 전체를 잠금 해제할 수 있습니다. Web3 & DApp Development Fundamentals 강의에는 총 4개의 강의가 포함되어 있습니다.
“퍼징과 불변식”에서 뭘 배우나요?
속성 기반 테스트 브라우저에서 직접 실행하는 실습 코드로 Web3 & DApp Development Fundamentals을(를) 배우며, 24/7 AI 튜터가 강의를 진행하면서 질문에 답변해줍니다.
Web3 & DApp Development Fundamentals을(를) 시작하는 데 경험이 필요한가요?
사전 경험은 필요하지 않습니다. CoddyKit의 Web3 & DApp Development Fundamentals은(는) 초급자부터 고급 학습자까지를 위해 구성되어 있으므로, 여기서 시작하거나 처음부터 시작할 수 있으며 자신의 속도대로 진행할 수 있습니다. 이것은 4개 중 3번째 강의입니다.
“퍼징과 불변식” 강의는 얼마나 걸리나요?
대부분의 CoddyKit 강의는 약 5~10분이 소요됩니다. 각 강의는 간결하고 인터랙티브하여 꾸준한 진행이 가능하며, 웹과 앱에서 중단한 부분부터 바로 시작할 수 있습니다.
이 Web3 & DApp Development Fundamentals 강의에서 코드를 작성하고 실행할 수 있나요?
네. 모든 Web3 & DApp Development Fundamentals 강의에는 내장 코드 에디터가 포함되어 있으므로, 브라우저에서 바로 실제 코드를 작성하고 실행한 후 즉시 AI 피드백을 받을 수 있습니다 — 로컬 설정이 필요 없습니다.