-
Notifications
You must be signed in to change notification settings - Fork 6
Contract testing using testrunner and evmone #276
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
Open
mbenke
wants to merge
14
commits into
issue261
Choose a base branch
from
mbenke/contest
base: issue261
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Allow overriding paths and commands via environment variables: - SOLCORE_CMD (default: cabal exec sol-core --) - YULE_CMD (default: cabal run yule --) - testrunner_exe (default: test/testrunner/testrunner) - evmone (default: ~/.local/lib/libevmone.so) This preserves the ability to run scripts outside of Nix builds while allowing Nix to override these values as needed.
Documents: - C++ testrunner architecture and components - Contest integration test system - Environment variable configuration - Nix build system and packages - Development workflow for local and Nix builds
Documents: - Building the C++ testrunner with cmake - Running integration tests manually and via Nix - Distinction between Haskell unit tests and integration tests - Test case structure and usage - Using contest.sh for individual test execution
Adds parallel 'integration-tests' job that runs 'nix flake check' to execute the C++ testrunner and contest integration tests on every PR. The workflow now has two parallel jobs: - build: Builds sol-core (existing) - integration-tests: Runs full pipeline tests (new)
Removes branch restriction from pull_request trigger so the workflow runs on all PRs regardless of target branch. Keeps push trigger restricted to main branch to avoid duplicate runs.
Replaces separate 'build' and 'integration-tests' jobs with a single 'build-and-test' job that runs 'nix flake check'. This is more efficient because: - nix flake check builds sol-core as a dependency (no duplicate builds) - Single job is simpler and clearer - Still runs full integration test suite
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Contract testing (create contract and call its methods) using testrunner and evmone.
This PR integrates the C++ testrunner into the Nix build system and adds end-to-end integration tests to
nix flake check(which is now run as part of the CI workflow).Written using substantial Claude Code input, hence includes CLAUDE.md (which can also serve as a part of documentation).
Changes
Nix Build System:
Script Portability:
Testing:
Documentation:
Usage