32 Commits

Author SHA1 Message Date
andrussal
b62e712085 Decouple nomos and core 2026-02-16 11:38:31 +01:00
Hansie Odendaal
b3d54125ea
chore: merge dev into master (#29)
* Add node config overrides (#14)

* chore: merge master into dev and update configs after merge (#17)

* Sdp config structs from logos blockchain (#15)

* Update configs after main repo merge

---------

Co-authored-by: gusto <bacv@users.noreply.github.com>

* Local deployer allows to stop and restart nodes (#16)

* Unify local node control and restart support

* Add local stop-node support

* Use node names for restart/stop control

* merge

---------

Co-authored-by: hansieodendaal <hansie.odendaal@gmail.com>

* Add orphan manual cluster test utilities

* Update node rev and align consensus/wallet config

* Update node rev and align wallet/KMS configs

* Update main repo ref (#23)

* Fix genesis utxos and scale leader stake

* Document leader stake constants

* feat: add custom persistent dir option for working files (#26)

* chore: config and naming updates (#27)

* Update config and crate naming

- Updated configs to the lates main repo configs.
- Updated all main repo crate namings to be same as the main repo.
- Added `create_dir_all` to `pub(crate) fn create_tempdir(custom_work_dir: Option<PathBuf>) -> std::io::Result<TempDir> {`.
- Wired in optional `persist_dir` when using the local deployer.
- Update `time` vulnerability

**Note:** Unsure about the `service_params` mapping in `pub(crate) fn cryptarchia_deployment(config: &GeneralConfig) -> CryptarchiaDeploymentSettings {`

* fix ntp server config

---------

Co-authored-by: Andrus Salumets <andrus@status.im>
Co-authored-by: gusto <bacv@users.noreply.github.com>
Co-authored-by: andrussal <salumets.andrus@gmail.com>
2026-02-09 14:12:26 +02:00
Hansie Odendaal
59697f0830
chore: merge dev to master (#25) 2026-02-05 08:23:14 +02:00
gusto
70c40615d0
Sdp config structs from logos blockchain (#15) 2026-01-28 11:25:05 +02:00
andrussal
a372a808bc docs: sync book with current framework 2026-01-27 03:42:36 +01:00
andrussal
8d2dd4c86a Unify ndoe types 2026-01-26 09:08:00 +01:00
Hansie Odendaal
dc06af5486
update for main repo changes (#10)
Update for main repo changes - this implied many changes in the testing framework code

removal of DA config-related code that was still present because it was required by node code until now
nomos-da-network-core = { workspace = true }
subnetworks-assignations = { workspace = true }
nomos-da-dispersal = { workspace = true }
nomos-da-network-core = { workspace = true }
nomos-da-network-service = { workspace = true }
nomos-da-sampling = { workspace = true }
nomos-da-verifier = { workspace = true }
nomos-ledger = { workspace = true, features = ["serde"] }
removal of the executor node
logos-blockchain-executor = { workspace = true }
2026-01-25 10:11:16 +02:00
andrussal
625179b0e9 testing: add dynamic node control and config helpers 2026-01-22 12:08:13 +01:00
andrussal
6310a5cbe9 Remove DA workload usage from framework 2026-01-22 11:16:13 +01:00
andrussal
50ec0e9506 Update testing framework for logos-blockchain rename 2026-01-20 13:39:43 +01:00
andrussal
4d2c4c77e4 core: split topology build/readiness phases
Refactors long functions into small helpers without behavior changes.

- TopologyBuilder::build
  - Before: validation + base config build + provider/genesis wiring + node descriptor assembly.
  - After: participant_count/resolve_and_validate_vectors/collect_provider_infos/
    create+apply_consensus_genesis_tx/build_node_descriptors.

- GeneratedTopology::wait_remote_readiness
  - Before: endpoint assertions + network readiness + membership endpoint selection.
  - After: collect_node_endpoints/wait_for_network_readiness/
    collect_membership_endpoints/testing_base_url.

- NetworkReadiness::collect + MembershipReadiness::collect
  - Before: duplicated validator/executor join_all blocks.
  - After: collect_validator_statuses/collect_executor_statuses helpers.

- spawn_node
  - Before: mixed config IO + process spawn + readiness polling.
  - After: write_node_config/spawn_node_process/wait_for_consensus_readiness.
2025-12-19 00:05:32 +01:00
andrussal
47b4e8531d core: make scenario/topology building fallible 2025-12-18 22:48:45 +01:00
andrussal
4da09bfe85 core: avoid Url parse expect in topology readiness 2025-12-18 22:28:37 +01:00
andrussal
5bcdb6a1c9 core: remove deprecated membership panic helper 2025-12-18 22:27:52 +01:00
andrussal
132c8d823e core: make node spawning fallible 2025-12-18 22:23:02 +01:00
andrussal
17180d8c37 configs: make consensus/genesis generation fallible 2025-12-18 22:12:28 +01:00
andrussal
b9741f8d03 config: share base config generator 2025-12-18 20:33:37 +01:00
andrussal
4a47024a11 config: return Result from api/network config builders 2025-12-18 18:08:53 +01:00
andrussal
128e073ed8 config: add shared topology invariants validator 2025-12-18 18:02:50 +01:00
andrussal
e7093df4e5 core: add non-panicking testing-endpoint APIs 2025-12-18 15:04:25 +01:00
andrussal
a582c00692 core: make readiness collectors resilient to HTTP errors 2025-12-18 14:27:49 +01:00
andrussal
6031e7fd98 refactor(core): name settle and balancer intervals 2025-12-16 04:09:13 +01:00
andrussal
7891bc0be3 refactor(core): name retry policies and tuple aliases 2025-12-16 03:03:54 +01:00
andrussal
6e619d4c03 testing-framework: improve runner defaults + checks 2025-12-15 22:29:36 +01:00
andrussal
3dbdc2acac Sync updates to docs, workloads, and monitoring 2025-12-13 05:59:28 +01:00
andrussal
e7c4bccaa6 Refactor node spawn helpers and cleanup wrappers 2025-12-10 15:15:34 +01:00
andrussal
a76630d3e1 Update topology imports to new module structure 2025-12-10 08:29:41 +01:00
andrussal
253b0e7a0e Factor readiness checks into dedicated modules 2025-12-10 08:07:16 +01:00
andrussal
ab026f67fa Refactor topology module into separated config/generation/deployment/readiness 2025-12-10 07:41:14 +01:00
andrussal
ce5f2146ae Align workflows and configs with latest nomos-node rev 2025-12-06 10:17:06 +01:00
andrussal
77026378e1 Log DA balancer stats on readiness timeout 2025-12-05 18:48:06 +01:00
andrussal
e1c2bb2b95 Initial import of Nomos testing framework 2025-12-01 18:36:58 +01:00