Created
April 29, 2021 13:48
-
-
Save syyyr/de9014d34374873e23bef87f94e7ab12 to your computer and use it in GitHub Desktop.
gdb-ctest.bash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -eu | |
| if [[ $# != 1 || "$1" = "--help" || "$1" = "-h" ]]; then | |
| echo "$0 - runs a ctest inside gdb, including fixtures and environment" | |
| echo "Usage: $0 <test_name>" | |
| echo | |
| echo "Options:" | |
| echo " <test_name> Test to be ran. The same for 'ctest -R <test_name>'" | |
| echo | |
| echo "Information:" | |
| echo " - The test must have at most one FIXTURES_REQUIRED." | |
| echo " - The fixture must have at most one FIXTURES_SETUP and at most one FIXTURES_CLEANUP." | |
| echo " - That means that you can run tests that have ENVIRONMENT but no fixtures." | |
| echo " - You can run gdb repeatedly, if your test doesn't depend on redoing you fixtures on every run." | |
| exit 1 | |
| fi | |
| TEST_NAME="$1" | |
| DUMP="$(ctest --show-only=json-v1 -R "$TEST_NAME" | jq ".tests")" | |
| get_test_json() | |
| { | |
| jq "map(select(.name == \"$1\"))[]" <<< "$DUMP" | |
| } | |
| get_test_command() | |
| { | |
| get_test_json "$1" | jq -r ".command | join(\" \")" | |
| } | |
| get_test_property() | |
| { | |
| get_test_json "$1" | jq -r ".properties | map(select(.name == \"$2\"))[].value | join(\" \")" | |
| } | |
| match_property() | |
| { | |
| PROP_NAME="$1" | |
| PROP_VALUE="$2" | |
| # I need to find out who has the $1 property. The inner map() checks whether the $1 property | |
| # exist within that element array. If it doesn't exist, it maps to an empty array. I then filter out those empty | |
| # arrays with the outer map. | |
| jq -r "map(select((.properties | map(select(.name == \"$PROP_NAME\" and .value[] == \"$PROP_VALUE\"))) != []))[].name" <<< "$DUMP" | |
| } | |
| get_test_environment() | |
| { | |
| get_test_json "$1" | jq ".[].properties | map(select(.name == \"ENVIRONMENT\"))[].value" | |
| } | |
| # TEST_JSON="$(get_test_json "$TEST_NAME")" | |
| TEST_COMMAND="$(get_test_command "$TEST_NAME")" | |
| if [[ -z "$TEST_COMMAND" ]]; then | |
| echo "Couldn't find a test named '$TEST_NAME'" | |
| exit 1 | |
| fi | |
| FIXTURES_REQUIRED="$(get_test_property "$TEST_NAME" "FIXTURES_REQUIRED")" | |
| SETUP_NAME= | |
| CLEANUP_NAME= | |
| if [[ -n "$FIXTURES_REQUIRED" ]]; then | |
| SETUP_NAME="$(match_property "FIXTURES_SETUP" "$FIXTURES_REQUIRED")" | |
| if [[ -n "$SETUP_NAME" ]]; then | |
| SETUP_COMMAND="$(get_test_command $SETUP_NAME)" | |
| fi | |
| CLEANUP_NAME="$(match_property "FIXTURES_CLEANUP" "$FIXTURES_REQUIRED")" | |
| if [[ -n "$CLEANUP_NAME" ]]; then | |
| CLEANUP_COMMAND="$(get_test_command $CLEANUP_NAME)" | |
| fi | |
| fi | |
| # echo "TEST_NAME = $TEST_NAME" | |
| # echo "TEST_COMMAND = $TEST_COMMAND" | |
| # echo "FIXTURES_REQUIRED = $FIXTURES_REQUIRED" | |
| # echo "SETUP_NAME = $SETUP_NAME" | |
| # echo "SETUP_COMMAND = $SETUP_COMMAND" | |
| # echo "CLEANUP_NAME = $CLEANUP_NAME" | |
| # echo "CLEANUP_COMMAND = $CLEANUP_COMMAND" | |
| SETUP= | |
| CLEANUP= | |
| if [[ -n "$SETUP_NAME" ]]; then | |
| SETUP="$(get_test_property "$SETUP_NAME" "ENVIRONMENT") $SETUP_COMMAND" | |
| echo "Will run this to setup fixture '$FIXTURES_REQUIRED':" | |
| echo " $" $SETUP | |
| echo | |
| fi | |
| TEST="$(get_test_property "$TEST_NAME" "ENVIRONMENT") gdb --args $TEST_COMMAND" | |
| echo "Will run this as the test command for '$TEST_NAME' (gdb is included):" | |
| echo " $" $TEST | |
| if [[ -n "$CLEANUP_NAME" ]]; then | |
| echo | |
| CLEANUP="$(get_test_property "$CLEANUP_NAME" "ENVIRONMENT") $CLEANUP_COMMAND" | |
| echo "Will run this to cleanup fixture '$FIXTURES_REQUIRED':" | |
| echo " $" $CLEANUP | |
| fi | |
| echo | |
| read -r -p "Is that ok? [Y/n] " RESPONSE | |
| if [[ -z "$RESPONSE" ]]; then | |
| RESPONSE=y | |
| fi | |
| RESPONSE="${RESPONSE,,}" # tolower | |
| if ! [[ "$RESPONSE" =~ ^(yes|y)$ ]]; then | |
| exit 0 | |
| fi | |
| if [[ -n "$SETUP_NAME" ]]; then | |
| env $SETUP | |
| fi | |
| env $TEST | |
| if [[ -n "$CLEANUP_NAME" ]]; then | |
| env $CLEANUP | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment