feat: add file system integration tests to CI#23
Merged
Conversation
- Add ci_integration_test.rs example that runs the full file system workflow: create drive, create directories, upload/download files - Add fs-demo-ci command to justfile with configurable chain/provider URLs - Update CI workflow to run file system integration test after the Layer 0 demo test The test uses the same CI infrastructure (chain on port 2222, provider on port 3333) and verifies: - Drive creation with automatic bucket/agreement setup - Directory creation (nested structure) - File upload and download - Content verification
- Add RELAY_PORT, CHAIN_PORT, PROVIDER_PORT variables - Add RELAY_WS, CHAIN_WS, PROVIDER_URL constructed from ports - Replace all hardcoded ports/URLs with variables - Simplifies overriding ports for different environments
Remove hardcoded defaults - justfile is now the single source of truth for network configuration.
The runtime was built with SDK commit c7b9c08 (2026-01-28) but CI downloaded binaries from polkadot-stable2512 tag (2025-12-19). This version mismatch caused polkadot-omni-node to fail executing the runtime WASM in CI, while working locally due to cached binaries. Changes: - Update all SDK references to polkadot-stable2512-2 (00fbc91) - Fix generate_session_keys API change (signature changed in new SDK) - Add node_spawn_timeout = 240 to zombienet.toml for slower CI
bkontur
reviewed
Mar 1, 2026
Collaborator
|
I need to fix flaky CI before merging this #25 |
Explicitly specify that the collator needs 'aura' keys in its keystore. This ensures zombienet properly creates the Aura signing keys needed for block production.
…3-storage into feat/fs-integration-tests
# Conflicts: # justfile
410fca6 to
f2bb41c
Compare
bkontur
approved these changes
Mar 2, 2026
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
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.
Summary
Solving - #22
ci_integration_test.rsexample that runs the full file system workflow: create drive, create directories, upload/download filesfs-demo-cicommand to justfile with configurable chain/provider URLsThe test uses the same CI infrastructure (chain on port 2222, provider on port 3333) and verifies:
Test plan
🤖 Generated with Claude Code