forked from cerc-io/stack-orchestrator
		
	Add fixturenet-eth test
This commit is contained in:
		
							parent
							
								
									a335ccde3a
								
							
						
					
					
						commit
						db6da4b75a
					
				
							
								
								
									
										27
									
								
								.gitea/fixturenet-eth-test.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								.gitea/fixturenet-eth-test.yml
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,27 @@ | ||||
| name: Fixturenet-Eth-Test | ||||
| 
 | ||||
| on: | ||||
|   push: | ||||
|     branches: 'test-ci' | ||||
| 
 | ||||
| jobs: | ||||
|   test: | ||||
|     name: "Run an Ethereum fixturenet test" | ||||
|     runs-on: ubuntu-latest | ||||
|     steps: | ||||
|       - name: "Clone project repository" | ||||
|         uses: actions/checkout@v3 | ||||
|       - name: "Install Python" | ||||
|         uses: cerc-io/setup-python@v4 | ||||
|         with: | ||||
|           python-version: '3.8' | ||||
|       - name: "Print Python version" | ||||
|         run: python3 --version | ||||
|       - name: "Install shiv" | ||||
|         run: pip install shiv | ||||
|       - name: "Generate build version file" | ||||
|         run: ./scripts/create_build_tag_file.sh | ||||
|       - name: "Build local shiv package" | ||||
|         run: ./scripts/build_shiv_package.sh | ||||
|       - name: "Run fixturenet-eth tests" | ||||
|         run: ./tests/fixturenet-eth/run-test.sh | ||||
							
								
								
									
										39
									
								
								tests/fixturenet-eth/run-test.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										39
									
								
								tests/fixturenet-eth/run-test.sh
									
									
									
									
									
										Executable file
									
								
							| @ -0,0 +1,39 @@ | ||||
| #!/usr/bin/env bash | ||||
| set -e | ||||
| if [ -n "$CERC_SCRIPT_DEBUG" ]; then | ||||
|   set -x | ||||
| fi | ||||
| set -e | ||||
| echo "Running stack-orchestrator Ethereum fixturenet test" | ||||
| # Bit of a hack, test the most recent package | ||||
| TEST_TARGET_SO=$( ls -t1 ./package/laconic-so* | head -1 ) | ||||
| # Set a new unique repo dir | ||||
| export CERC_REPO_BASE_DIR=$(mktemp -d stack-orchestrator-fixturenet-eth-test.XXXXXXXXXX) | ||||
| echo "Testing this package: $TEST_TARGET_SO" | ||||
| echo "Test version command" | ||||
| reported_version_string=$( $TEST_TARGET_SO version ) | ||||
| echo "Version reported is: ${reported_version_string}" | ||||
| echo "Cloning repositories into: $CERC_REPO_BASE_DIR" | ||||
| $TEST_TARGET_SO --stack fixturenet-eth setup-repositories  | ||||
| $TEST_TARGET_SO  --stack fixturenet-eth build-containers | ||||
| $TEST_TARGET_SO --stack fixturenet-eth deploy up | ||||
| # Verify that the fixturenet is up and running | ||||
| $TEST_TARGET_SO --stack fixturenet-eth deploy ps | ||||
| $TEST_TARGET_SO --stack fixturenet-eth deploy exec fixturenet-eth-bootnode-lighthouse /scripts/status-internal.sh | ||||
| initial_block_number=$($TEST_TARGET_SO --stack fixturenet-eth deploy exec foundry "cast block-number") | ||||
| # Check that the block number increases some time later | ||||
| sleep 12 | ||||
| subsequent_block_number=$($TEST_TARGET_SO  --stack fixturenet-eth deploy exec foundry "cast block-number") | ||||
| block_number_difference=$((subsequent_block_number - initial_block_number)) | ||||
| # Block height difference should be between 1 and some small number | ||||
| if [[ $block_number_difference -gt 1 && $block_number_difference -lt 10 ]]; then | ||||
|   echo "Test passed" | ||||
|   test_result=0 | ||||
| else | ||||
|   echo "Test failed: block numbers were ${initial_block_number} and ${subsequent_block_number}" | ||||
|   test_result=1 | ||||
| fi | ||||
| $TEST_TARGET_SO --stack fixturenet-eth deploy down | ||||
| echo "Removing cloned repositories" | ||||
| rm -rf $CERC_REPO_BASE_DIR | ||||
| exit $test_result | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user