nixpkgs/nixos/tests/geth.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.6 KiB
Nix
Raw Normal View History

2020-11-22 17:35:39 +01:00
import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "geth";
meta = with pkgs.lib; {
maintainers = with maintainers; [ bachp ];
};
2022-03-21 00:15:30 +01:00
nodes.machine =
{ ... }:
{
2020-11-22 17:35:39 +01:00
services.geth."mainnet" = {
enable = true;
http = {
2020-11-22 17:35:39 +01:00
enable = true;
};
};
2025-01-31 16:47:53 +01:00
services.geth."holesky" = {
2020-11-22 17:35:39 +01:00
enable = true;
port = 30304;
2024-09-27 01:17:21 +02:00
network = "holesky";
2020-11-22 17:35:39 +01:00
http = {
enable = true;
port = 18545;
};
authrpc = {
enable = true;
port = 18551;
};
};
2025-01-31 16:47:53 +01:00
services.geth."sepolia" = {
enable = true;
port = 30305;
network = "sepolia";
http = {
enable = true;
port = 28545;
};
authrpc = {
enable = true;
port = 28551;
};
};
};
2020-11-22 17:35:39 +01:00
testScript = ''
start_all()
machine.wait_for_unit("geth-mainnet.service")
2025-01-31 16:47:53 +01:00
machine.wait_for_unit("geth-holesky.service")
machine.wait_for_unit("geth-sepolia.service")
2020-11-22 17:35:39 +01:00
machine.wait_for_open_port(8545)
machine.wait_for_open_port(18545)
2025-01-31 16:47:53 +01:00
machine.wait_for_open_port(28545)
2020-11-22 17:35:39 +01:00
machine.succeed(
'geth attach --exec "eth.blockNumber" http://localhost:8545 | grep \'^0$\' '
2020-11-22 17:35:39 +01:00
)
machine.succeed(
'geth attach --exec "eth.blockNumber" http://localhost:18545 | grep \'^0$\' '
2020-11-22 17:35:39 +01:00
)
2025-01-31 16:47:53 +01:00
machine.succeed(
'geth attach --exec "eth.blockNumber" http://localhost:28545 | grep \'^0$\' '
)
2020-11-22 17:35:39 +01:00
'';
}
)