Compare commits
3 Commits
a64c29ac34
...
bf71dc3714
Author | SHA1 | Date | |
---|---|---|---|
bf71dc3714 | |||
69457f83c3 | |||
c51064af17 |
@ -36,6 +36,8 @@ jobs:
|
||||
- name: "Install stack orchestrator"
|
||||
run: pip3 install .tools/stack-orchestrator
|
||||
- name: "Run stack tests"
|
||||
env:
|
||||
CERC_SCRIPT_DEBUG: 1
|
||||
run: |
|
||||
PATH=$PATH:~/bin
|
||||
./tests/fixturenet-plugeth-stack/run-test.sh
|
||||
|
@ -20,6 +20,8 @@ COPY --from=fnetgen /opt/genesis /opt/testnet
|
||||
COPY --from=statediff /usr/local/lib/statediff.so /usr/local/lib/plugeth/
|
||||
|
||||
# Initialize the geth db with our config
|
||||
RUN geth --datadir ~/ethdata init /opt/testnet/build/el/geth.json && rm -f ~/ethdata/geth/nodekey
|
||||
RUN geth --datadir ~/ethdata --state.scheme hash \
|
||||
init /opt/testnet/build/el/geth.json && \
|
||||
rm -f ~/ethdata/geth/nodekey
|
||||
|
||||
ENTRYPOINT ["/opt/testnet/run.sh"]
|
||||
|
@ -67,6 +67,12 @@ if [ ! -d "$test_deployment_dir" ]; then
|
||||
fi
|
||||
echo "deploy create test: passed"
|
||||
|
||||
dump_logs () {
|
||||
echo "Test failed. Logs from stack:"
|
||||
$SO_COMMAND deployment --dir $test_deployment_dir logs
|
||||
}
|
||||
trap dump_logs ERR
|
||||
|
||||
$SO_COMMAND deployment --dir $test_deployment_dir start
|
||||
|
||||
geth_endpoint=localhost:$($SO_COMMAND deployment --dir $test_deployment_dir port fixturenet-eth-geth-1 8545 | cut -d: -f2)
|
||||
@ -109,12 +115,6 @@ log_info "Results of block height queries:"
|
||||
echo "Initial block height: $initial_block_number"
|
||||
echo "Subsequent block height: $subsequent_block_number"
|
||||
|
||||
dump_logs () {
|
||||
echo "Test failed. Logs from stack:"
|
||||
$SO_COMMAND deployment --dir $test_deployment_dir logs
|
||||
}
|
||||
trap dump_logs ERR
|
||||
|
||||
# Block height difference should be between 1 and some small number
|
||||
[[ $block_number_difference -gt 1 && $block_number_difference -lt 100 ]]
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user