Skip to content

Commit

Permalink
Add a basic deployment test (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
dboreham authored Jul 31, 2023
1 parent a8f4e4c commit 5afe7a2
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 4 deletions.
7 changes: 7 additions & 0 deletions app/data/stacks/test/deploy/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ def init(command_context: DeployCommandContext):
return yaml.load(default_spec_file_content)


def create(command_context: DeployCommandContext):
data = "create-command-output-data"
output_file_path = command_context.deployment_dir.joinpath("create-file")
with open(output_file_path, 'w+') as output_file:
output_file.write(data)


def get_state(command_context: DeployCommandContext):
print("Here we get state")
return State.CONFIGURED
Expand Down
2 changes: 1 addition & 1 deletion app/deployment_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def create(ctx, spec_file, deployment_dir):
# stack member here.
deployment_command_context = ctx.obj
deployment_command_context.stack = stack_name
deployment_context = DeploymentContext(Path(deployment_dir), ctx.obj)
deployment_context = DeploymentContext(Path(deployment_dir), deployment_command_context)
call_stack_deploy_create(deployment_context)


Expand Down
44 changes: 41 additions & 3 deletions tests/deploy/run-deploy-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,18 @@ $TEST_TARGET_SO --stack test build-containers
# Test deploy command execution
$TEST_TARGET_SO --stack test deploy setup $CERC_REPO_BASE_DIR
# Check that we now have the expected output directory
if [ ! -d "$CERC_REPO_BASE_DIR/container-output-dir" ]; then
container_output_dir=$CERC_REPO_BASE_DIR/container-output-dir
if [ ! -d "$container_output_dir" ]; then
echo "deploy setup test: output directory not present"
echo "deploy setup test: FAILED"
exit 1
fi
if [ ! -f "$CERC_REPO_BASE_DIR/container-output-dir/output-file" ]; then
if [ ! -f "$container_output_dir/output-file" ]; then
echo "deploy setup test: output file not present"
echo "deploy setup test: FAILED"
exit 1
fi
output_file_content=$(<$CERC_REPO_BASE_DIR/container-output-dir/output-file)
output_file_content=$(<$container_output_dir/output-file)
if [ ! "$output_file_content" == "output-data" ]; then
echo "deploy setup test: output file contents not correct"
echo "deploy setup test: FAILED"
Expand Down Expand Up @@ -73,4 +74,41 @@ else
exit 1
fi
$TEST_TARGET_SO --stack test deploy down --delete-volumes
# Basic test of creating a deployment
test_deployment_dir=$CERC_REPO_BASE_DIR/test-deployment-dir
test_deployment_spec=$CERC_REPO_BASE_DIR/test-deployment-spec.yml
$TEST_TARGET_SO --stack test deploy init --output $test_deployment_spec
# Check the file now exists
if [ ! -f "$test_deployment_spec" ]; then
echo "deploy init test: spec file not present"
echo "deploy init test: FAILED"
exit 1
fi
echo "deploy init test: passed"
$TEST_TARGET_SO deploy create --spec-file $test_deployment_spec --deployment-dir $test_deployment_dir
# Check the deployment dir exists
if [ ! -d "$test_deployment_dir" ]; then
echo "deploy create test: deployment directory not present"
echo "deploy create test: FAILED"
exit 1
fi
echo "deploy create test: passed"
# Check the file writted by the create command in the stack now exists
if [ ! -f "$test_deployment_dir/create-file" ]; then
echo "deploy create test: create output file not present"
echo "deploy create test: FAILED"
exit 1
fi
# And has the right content
create_file_content=$(<$test_deployment_dir/create-file)
if [ ! "$create_file_content" == "create-command-output-data" ]; then
echo "deploy create test: create output file contents not correct"
echo "deploy create test: FAILED"
exit 1
fi
echo "deploy create output file test: passed"
# Try to start the deployment
$TEST_TARGET_SO deployment --dir $test_deployment_dir start
# Stop and clean up
$TEST_TARGET_SO deployment --dir $test_deployment_dir stop --delete-volumes
echo "Test passed"

0 comments on commit 5afe7a2

Please sign in to comment.