mirror of
https://github.com/logos-messaging/logos-messaging-rlnv2-contract.git
synced 2026-01-11 02:13:05 +00:00
* test: register invalid * test: multiple registers * fix: increase max rejects * test: erasure with fullErase idCommitments * fix: reduce cyclomatic complexity * fix: reduce complexity one step less * fix: run tests in parallel * fix: undo run tests in parallel - default already * test: invalid extension with extreme values * fix: line length * test: set MaxTotalRateLimit * test: set ActiveDuration * test: Merkle inserts * test: Merkle erasures * test: GetRateCommitmentsRange * test: GetMerkleProof * fix: optimized MerkleInsert MerkleErasures * fix: update gas snapshot * test: malicious upgrade drains funds * fix: formatting * test: show success when unauthorized upgrade after malicious * test: offchain proof post lazy erase - multi-user erase reuse race * fix: line length * fix: remove offchain lazy erase test - rate limit still applies * fix: remove fuzz tests from CI run * fix: formatting * fix: formatting coverage * test: timestamp manipulation * fix: rename tests * test: front running for registration * fix: unused variables * test: register during spam conditions * fix: delete failing tests - test_MaliciousUpgradeDrainsFunds - testFrontrunning_RegistrationRevertsForVictim - testFrontrunning_SetFillingSpam * fix: delete MaliciousImplementation * fix: formatting with a new Foundry version * test: testEraseAndReuse with Echidna * fix: remove limit check * fix: remove test_MultiUserEraseReuseRace - test_TimestampManipulationRaces * fix: skip Echidna contract during forge test * test: Echidna contract with invariants - registerMembership - attemptExtensionRace - attemptErasureRace * fix: tune config file * fix: run and cleanup scripts for echidna * test: Echidna test replay * fix: Solidity version * fix: test_attemptExtensionRace_WakuRLN * fix: invalid commitment in test_attemptExtensionRace_WakuRLN * fix: invalid commitments in test_attemptErasureRace_WakuRLN * fix: line length * fix: skip all Echidna tests in CI * test: register invalid * test: multiple registers * fix: increase max rejects * test: erasure with fullErase idCommitments * fix: reduce cyclomatic complexity * fix: reduce complexity one step less * test: invalid extension with extreme values * fix: line length * test: set MaxTotalRateLimit * test: set ActiveDuration * test: Merkle inserts * test: Merkle erasures * test: GetRateCommitmentsRange * test: GetMerkleProof * fix: optimized MerkleInsert MerkleErasures * fix: update gas snapshot * fix: formatting * fix: remove tests with high overlap * fix: remove all tests originally meant for fuzzing * fix: rename merged Echidna tests * fix: formatting * test: fuzzing for essential invariants * test: EchidnaTest contract * fix: remove unnecessary imports * fix: remove unnecessary helpers * fix: remove bounds from invariants * fix: change test mode to property * fix: update run script * fix: max_test_rejects back to the original value * fix: remove unused local variables
165 lines
4.0 KiB
YAML
165 lines
4.0 KiB
YAML
name: "CI"
|
|
|
|
env:
|
|
FOUNDRY_PROFILE: "ci"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{github.workflow}}-${{github.ref}}
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: "Check out the repo"
|
|
uses: "actions/checkout@v3"
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Foundry"
|
|
uses: "foundry-rs/foundry-toolchain@v1"
|
|
|
|
- name: "Install Pnpm"
|
|
uses: "pnpm/action-setup@v2"
|
|
with:
|
|
version: "8"
|
|
|
|
- name: "Install Node.js"
|
|
uses: "actions/setup-node@v3"
|
|
with:
|
|
cache: "pnpm"
|
|
node-version: "lts/*"
|
|
|
|
- name: "Install the Node.js dependencies"
|
|
run: "pnpm install"
|
|
|
|
- name: "Lint the contracts"
|
|
run: "pnpm lint"
|
|
|
|
- name: "Add lint summary"
|
|
run: |
|
|
echo "## Lint result" >> $GITHUB_STEP_SUMMARY
|
|
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
|
|
|
|
build:
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: "Check out the repo"
|
|
uses: "actions/checkout@v3"
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Foundry"
|
|
uses: "foundry-rs/foundry-toolchain@v1"
|
|
|
|
- name: "Install Pnpm"
|
|
uses: "pnpm/action-setup@v2"
|
|
with:
|
|
version: "8"
|
|
|
|
- name: "Install Node.js"
|
|
uses: "actions/setup-node@v3"
|
|
with:
|
|
cache: "pnpm"
|
|
node-version: "lts/*"
|
|
|
|
- name: "Install the Node.js dependencies"
|
|
run: "pnpm install"
|
|
|
|
- name: "Build the contracts and print their size"
|
|
run: "forge build --sizes"
|
|
|
|
- name: "Add build summary"
|
|
run: |
|
|
echo "## Build result" >> $GITHUB_STEP_SUMMARY
|
|
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
|
|
|
|
test:
|
|
needs: ["lint", "build"]
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: "Check out the repo"
|
|
uses: "actions/checkout@v3"
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Foundry"
|
|
uses: "foundry-rs/foundry-toolchain@v1"
|
|
|
|
- name: "Install Pnpm"
|
|
uses: "pnpm/action-setup@v2"
|
|
with:
|
|
version: "8"
|
|
|
|
- name: "Install Node.js"
|
|
uses: "actions/setup-node@v3"
|
|
with:
|
|
cache: "pnpm"
|
|
node-version: "lts/*"
|
|
|
|
- name: "Install the Node.js dependencies"
|
|
run: "pnpm install"
|
|
|
|
- name: "Show the Foundry config"
|
|
run: "forge config"
|
|
|
|
- name: "Generate a fuzz seed that changes weekly to avoid burning through RPC allowance"
|
|
run: >
|
|
echo "FOUNDRY_FUZZ_SEED=$(
|
|
echo $(($EPOCHSECONDS - $EPOCHSECONDS % 604800))
|
|
)" >> $GITHUB_ENV
|
|
|
|
- name: "Run the tests"
|
|
run: 'forge test --no-match-path "test/Echidna*.t.sol"'
|
|
|
|
- name: "Add test summary"
|
|
run: |
|
|
echo "## Tests result" >> $GITHUB_STEP_SUMMARY
|
|
echo "✅ Passed" >> $GITHUB_STEP_SUMMARY
|
|
|
|
coverage:
|
|
needs: ["lint", "build"]
|
|
runs-on: "ubuntu-latest"
|
|
steps:
|
|
- name: "Check out the repo"
|
|
uses: "actions/checkout@v3"
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: "Install Foundry"
|
|
uses: "foundry-rs/foundry-toolchain@v1"
|
|
|
|
- name: "Install Pnpm"
|
|
uses: "pnpm/action-setup@v2"
|
|
with:
|
|
version: "8"
|
|
|
|
- name: "Install Node.js"
|
|
uses: "actions/setup-node@v3"
|
|
with:
|
|
cache: "pnpm"
|
|
node-version: "lts/*"
|
|
|
|
- name: "Install the Node.js dependencies"
|
|
run: "pnpm install"
|
|
|
|
- name: "Generate the coverage report using the unit and the integration tests"
|
|
run: 'forge coverage --match-path "test/**/*.sol" --no-match-path "test/Echidna*.t.sol" --report lcov'
|
|
|
|
- name: "Upload coverage report to Codecov"
|
|
uses: "codecov/codecov-action@v3"
|
|
with:
|
|
files: "./lcov.info"
|
|
|
|
- name: "Add coverage summary"
|
|
run: |
|
|
echo "## Coverage result" >> $GITHUB_STEP_SUMMARY
|
|
echo "✅ Uploaded to Codecov" >> $GITHUB_STEP_SUMMARY
|