run-tests.sh 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #!/bin/bash
  2. # This script runs the golang integration tests in the directories underneath.
  3. # It should be run from the same directory it is in, or in a directory above.
  4. # Specify the same image prefix used (if any) with build-images.sh
  5. #
  6. # Example:
  7. # ./run-tests.sh --prefix=docker.io/openshift/ansible-integration- --parallel=16
  8. set -o errexit
  9. set -o nounset
  10. set -o pipefail
  11. source_root=$(dirname "${0}")
  12. prefix="${PREFIX:-openshift-ansible-integration-}"
  13. gotest_options="${GOTEST_OPTIONS:--v}"
  14. push=false
  15. verbose=false
  16. help=false
  17. for args in "$@"
  18. do
  19. case $args in
  20. --prefix=*)
  21. prefix="${args#*=}"
  22. ;;
  23. --parallel=*)
  24. gotest_options="${gotest_options} -parallel ${args#*=}"
  25. ;;
  26. --verbose)
  27. verbose=true
  28. ;;
  29. --help)
  30. help=true
  31. ;;
  32. esac
  33. done
  34. if [ "$help" = true ]; then
  35. echo "Runs the openshift-ansible integration tests."
  36. echo
  37. echo "Options: "
  38. echo " --prefix=PREFIX"
  39. echo " The prefix to use for the image names."
  40. echo " default: openshift-ansible-integration-"
  41. echo
  42. echo " --parallel=NUMBER"
  43. echo " Number of tests to run in parallel."
  44. echo " default: GOMAXPROCS (typically, number of processors)"
  45. echo
  46. echo " --verbose"
  47. echo " Enables printing of the commands as they run."
  48. echo
  49. echo " --help"
  50. echo " Prints this help message"
  51. echo
  52. exit 0
  53. fi
  54. if ! [ -d $source_root/../../.tox/integration ]; then
  55. # have tox create a consistent virtualenv
  56. pushd $source_root/../..; tox -e integration; popd
  57. fi
  58. # use the virtualenv from tox
  59. set +o nounset; source $source_root/../../.tox/integration/bin/activate; set -o nounset
  60. if [ "$verbose" = true ]; then
  61. set -x
  62. fi
  63. # Run the tests. NOTE: "go test" requires a relative path for this purpose.
  64. # The PWD trick below will only work if cwd is in/above where this script lives.
  65. retval=0
  66. IMAGE_PREFIX="${prefix}" env -u GOPATH \
  67. go test ./${source_root#$PWD}/... ${gotest_options}