| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | #! /bin/sh | 
					
						
							|  |  |  | # vim:et:ft=sh:sts=2:sw=2 | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Copyright 2008-2018 Kate Ward. All Rights Reserved. | 
					
						
							|  |  |  | # Released under the Apache 2.0 license. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # shUnit2 -- Unit testing framework for Unix shell scripts. | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # https://github.com/kward/shunit2 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Author: kate.ward@forestent.com (Kate Ward) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # shUnit2 is a xUnit based unit test framework for Bourne shell scripts. It is | 
					
						
							|  |  |  | # based on the popular JUnit unit testing framework for Java. | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # $() are not fully portable (POSIX != portable). | 
					
						
							|  |  |  | #   shellcheck disable=SC2006 | 
					
						
							|  |  |  | # expr may be antiquated, but it is the only solution in some cases. | 
					
						
							|  |  |  | #   shellcheck disable=SC2003 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Return if shunit2 already loaded. | 
					
						
							|  |  |  | command [ -n "${SHUNIT_VERSION:-}" ] && exit 0 | 
					
						
							|  |  |  | SHUNIT_VERSION='2.1.8pre' | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Return values that scripts can use. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | SHUNIT_TRUE=0 | 
					
						
							|  |  |  | SHUNIT_FALSE=1 | 
					
						
							|  |  |  | SHUNIT_ERROR=2 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Logging functions. | 
					
						
							|  |  |  | _shunit_warn() { | 
					
						
							|  |  |  |   ${__SHUNIT_CMD_ECHO_ESC} \ | 
					
						
							|  |  |  |       "${__shunit_ansi_yellow}shunit2:WARN${__shunit_ansi_none} $*" >&2 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | _shunit_error() { | 
					
						
							|  |  |  |   ${__SHUNIT_CMD_ECHO_ESC} \ | 
					
						
							|  |  |  |       "${__shunit_ansi_red}shunit2:ERROR${__shunit_ansi_none} $*" >&2 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | _shunit_fatal() { | 
					
						
							|  |  |  |   ${__SHUNIT_CMD_ECHO_ESC} \ | 
					
						
							|  |  |  |       "${__shunit_ansi_red}shunit2:FATAL${__shunit_ansi_none} $*" >&2 | 
					
						
							|  |  |  |   exit ${SHUNIT_ERROR} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Determine some reasonable command defaults. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | __SHUNIT_UNAME_S=`uname -s` | 
					
						
							|  |  |  | case "${__SHUNIT_UNAME_S}" in | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   BSD) __SHUNIT_CMD_EXPR='gexpr' ;; | 
					
						
							|  |  |  |   *) __SHUNIT_CMD_EXPR='expr' ;; | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | esac | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | __SHUNIT_CMD_ECHO_ESC='echo -e' | 
					
						
							|  |  |  | # shellcheck disable=SC2039 | 
					
						
							|  |  |  | command [ "`echo -e test`" = '-e test' ] && __SHUNIT_CMD_ECHO_ESC='echo' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Commands a user can override if needed. | 
					
						
							|  |  |  | SHUNIT_CMD_EXPR=${SHUNIT_CMD_EXPR:-${__SHUNIT_CMD_EXPR}} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Enable color output. Options are 'never', 'always', or 'auto'. | 
					
						
							|  |  |  | SHUNIT_COLOR=${SHUNIT_COLOR:-auto} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Specific shell checks. | 
					
						
							|  |  |  | if command [ -n "${ZSH_VERSION:-}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   setopt |grep "^shwordsplit$" >/dev/null | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $? -ne ${SHUNIT_TRUE} ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_fatal 'zsh shwordsplit option is required for proper operation' | 
					
						
							|  |  |  |   fi | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ -z "${SHUNIT_PARENT:-}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_fatal "zsh does not pass \$0 through properly. please declare \ | 
					
						
							|  |  |  | \"SHUNIT_PARENT=\$0\" before calling shUnit2" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Constants | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __SHUNIT_MODE_SOURCED='sourced' | 
					
						
							|  |  |  | __SHUNIT_MODE_STANDALONE='standalone' | 
					
						
							|  |  |  | __SHUNIT_PARENT=${SHUNIT_PARENT:-$0} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # User provided test prefix -- define SHUNIT_TEST_PREFIX variable. | 
					
						
							|  |  |  | __SHUNIT_TEST_PREFIX=${SHUNIT_TEST_PREFIX:-} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # ANSI colors. | 
					
						
							|  |  |  | __SHUNIT_ANSI_NONE='\033[0m' | 
					
						
							|  |  |  | __SHUNIT_ANSI_RED='\033[1;31m' | 
					
						
							|  |  |  | __SHUNIT_ANSI_GREEN='\033[1;32m' | 
					
						
							|  |  |  | __SHUNIT_ANSI_YELLOW='\033[1;33m' | 
					
						
							|  |  |  | __SHUNIT_ANSI_CYAN='\033[1;36m' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Set the constants readonly. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | __shunit_constants=`set |grep '^__SHUNIT_' |cut -d= -f1` | 
					
						
							|  |  |  | echo "${__shunit_constants}" |grep '^Binary file' >/dev/null && \ | 
					
						
							|  |  |  |     __shunit_constants=`set |grep -a '^__SHUNIT_' |cut -d= -f1` | 
					
						
							|  |  |  | for __shunit_const in ${__shunit_constants}; do | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ -z "${ZSH_VERSION:-}" ]; then | 
					
						
							|  |  |  |     readonly "${__shunit_const}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   else | 
					
						
							|  |  |  |     case ${ZSH_VERSION} in | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |       [123].*) readonly "${__shunit_const}" ;; | 
					
						
							|  |  |  |       *) readonly -g "${__shunit_const}"  # Declare readonly constants globally. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     esac | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | done | 
					
						
							|  |  |  | unset __shunit_const __shunit_constants | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Internal variables. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Variables. | 
					
						
							|  |  |  | __shunit_lineno=''  # Line number of executed test. | 
					
						
							|  |  |  | __shunit_mode=${__SHUNIT_MODE_SOURCED}  # Operating mode. | 
					
						
							|  |  |  | __shunit_reportGenerated=${SHUNIT_FALSE}  # Is report generated. | 
					
						
							|  |  |  | __shunit_script=''  # Filename of unittest script (standalone mode). | 
					
						
							|  |  |  | __shunit_skip=${SHUNIT_FALSE}  # Is skipping enabled. | 
					
						
							|  |  |  | __shunit_suite=''  # Suite of tests to execute. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # ANSI colors (populated by _shunit_configureColor()). | 
					
						
							|  |  |  | __shunit_ansi_none='' | 
					
						
							|  |  |  | __shunit_ansi_red='' | 
					
						
							|  |  |  | __shunit_ansi_green='' | 
					
						
							|  |  |  | __shunit_ansi_yellow='' | 
					
						
							|  |  |  | __shunit_ansi_cyan='' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Counts of tests. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | __shunit_testSuccess=${SHUNIT_TRUE} | 
					
						
							|  |  |  | __shunit_testsTotal=0 | 
					
						
							|  |  |  | __shunit_testsPassed=0 | 
					
						
							|  |  |  | __shunit_testsFailed=0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Counts of asserts. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | __shunit_assertsTotal=0 | 
					
						
							|  |  |  | __shunit_assertsPassed=0 | 
					
						
							|  |  |  | __shunit_assertsFailed=0 | 
					
						
							|  |  |  | __shunit_assertsSkipped=0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Macros. | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2089 | 
					
						
							|  |  |  | _SHUNIT_LINENO_='eval __shunit_lineno=""; if command [ "${1:-}" = "--lineno" ]; then command [ -n "$2" ] && __shunit_lineno="[$2] "; shift 2; fi' | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #----------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Assertion functions. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that two values are equal to one another. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertEquals() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertEquals() requires two or three arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   shunit_expected_=$1 | 
					
						
							|  |  |  |   shunit_actual_=$2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_return=${SHUNIT_TRUE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ "${shunit_expected_}" = "${shunit_actual_}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_assertPass | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     failNotEquals "${shunit_message_}" "${shunit_expected_}" "${shunit_actual_}" | 
					
						
							|  |  |  |     shunit_return=${SHUNIT_FALSE} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ shunit_expected_ shunit_actual_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_EQUALS_='eval assertEquals --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that two values are not equal to one another. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertNotEquals() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertNotEquals() requires two or three arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   shunit_expected_=$1 | 
					
						
							|  |  |  |   shunit_actual_=$2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_return=${SHUNIT_TRUE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ "${shunit_expected_}" != "${shunit_actual_}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_assertPass | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     failSame "${shunit_message_}" "$@" | 
					
						
							|  |  |  |     shunit_return=${SHUNIT_FALSE} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ shunit_expected_ shunit_actual_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_NOT_EQUALS_='eval assertNotEquals --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that a value is null (i.e. an empty string) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertNull() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 1 -o $# -gt 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertNull() requires one or two arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   assertTrue "${shunit_message_}" "[ -z '$1' ]" | 
					
						
							|  |  |  |   shunit_return=$? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_NULL_='eval assertNull --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that a value is not null (i.e. a non-empty string) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertNotNull() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -gt 2 ]; then  # allowing 0 arguments as $1 might actually be null | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertNotNull() requires one or two arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   shunit_actual_=`_shunit_escapeCharactersInString "${1:-}"` | 
					
						
							|  |  |  |   test -n "${shunit_actual_}" | 
					
						
							|  |  |  |   assertTrue "${shunit_message_}" $? | 
					
						
							|  |  |  |   shunit_return=$? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_actual_ shunit_message_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_NOT_NULL_='eval assertNotNull --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that two values are the same (i.e. equal to one another). | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertSame() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertSame() requires two or three arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   assertEquals "${shunit_message_}" "$1" "$2" | 
					
						
							|  |  |  |   shunit_return=$? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_SAME_='eval assertSame --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that two values are not the same (i.e. not equal to one another). | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertNotSame() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertNotSame() requires two or three arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_:-}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   assertNotEquals "${shunit_message_}" "$1" "$2" | 
					
						
							|  |  |  |   shunit_return=$? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_NOT_SAME_='eval assertNotSame --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that a value or shell test condition is true. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # In shell, a value of 0 is true and a non-zero value is false. Any integer | 
					
						
							|  |  |  | # value passed can thereby be tested. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Shell supports much more complicated tests though, and a means to support | 
					
						
							|  |  |  | # them was needed. As such, this function tests that conditions are true or | 
					
						
							|  |  |  | # false through evaluation rather than just looking for a true or false. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # The following test will succeed: | 
					
						
							|  |  |  | #   assertTrue 0 | 
					
						
							|  |  |  | #   assertTrue "[ 34 -gt 23 ]" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # The following test will fail with a message: | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | #   assertTrue 123 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | #   assertTrue "test failed" "[ -r '/non/existent/file' ]" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   condition: string: integer value or shell conditional statement | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertTrue() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 1 -o $# -gt 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertTrue() takes one or two arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   shunit_condition_=$1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # See if condition is an integer, i.e. a return value. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   shunit_match_=`expr "${shunit_condition_}" : '\([0-9]*\)'` | 
					
						
							|  |  |  |   shunit_return=${SHUNIT_TRUE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ -z "${shunit_condition_}" ]; then | 
					
						
							|  |  |  |     # Null condition. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_return=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   elif command [ -n "${shunit_match_}" -a "${shunit_condition_}" = "${shunit_match_}" ] | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   then | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Possible return value. Treating 0 as true, and non-zero as false. | 
					
						
							|  |  |  |     command [ "${shunit_condition_}" -ne 0 ] && shunit_return=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Hopefully... a condition. | 
					
						
							|  |  |  |     ( eval "${shunit_condition_}" ) >/dev/null 2>&1 | 
					
						
							|  |  |  |     command [ $? -ne 0 ] && shunit_return=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # Record the test. | 
					
						
							|  |  |  |   if command [ ${shunit_return} -eq ${SHUNIT_TRUE} ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_assertPass | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     _shunit_assertFail "${shunit_message_}" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ shunit_condition_ shunit_match_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_TRUE_='eval assertTrue --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Assert that a value or shell test condition is false. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # In shell, a value of 0 is true and a non-zero value is false. Any integer | 
					
						
							|  |  |  | # value passed can thereby be tested. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Shell supports much more complicated tests though, and a means to support | 
					
						
							|  |  |  | # them was needed. As such, this function tests that conditions are true or | 
					
						
							|  |  |  | # false through evaluation rather than just looking for a true or false. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # The following test will succeed: | 
					
						
							|  |  |  | #   assertFalse 1 | 
					
						
							|  |  |  | #   assertFalse "[ 'apples' = 'oranges' ]" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # The following test will fail with a message: | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | #   assertFalse 0 | 
					
						
							|  |  |  | #   assertFalse "test failed" "[ 1 -eq 1 -a 2 -eq 2 ]" | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   condition: string: integer value or shell conditional statement | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | assertFalse() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 1 -o $# -gt 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "assertFalse() quires one or two arguments; $# given" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_assertFail | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 2 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   shunit_condition_=$1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # See if condition is an integer, i.e. a return value. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   shunit_match_=`expr "${shunit_condition_}" : '\([0-9]*\)'` | 
					
						
							|  |  |  |   shunit_return=${SHUNIT_TRUE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ -z "${shunit_condition_}" ]; then | 
					
						
							|  |  |  |     # Null condition. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_return=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   elif command [ -n "${shunit_match_}" -a "${shunit_condition_}" = "${shunit_match_}" ] | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   then | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Possible return value. Treating 0 as true, and non-zero as false. | 
					
						
							|  |  |  |     command [ "${shunit_condition_}" -eq 0 ] && shunit_return=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Hopefully... a condition. | 
					
						
							|  |  |  |     ( eval "${shunit_condition_}" ) >/dev/null 2>&1 | 
					
						
							|  |  |  |     command [ $? -eq 0 ] && shunit_return=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # Record the test. | 
					
						
							|  |  |  |   if command [ "${shunit_return}" -eq "${SHUNIT_TRUE}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_assertPass | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     _shunit_assertFail "${shunit_message_}" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ shunit_condition_ shunit_match_ | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   return "${shunit_return}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _ASSERT_FALSE_='eval assertFalse --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #----------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Failure functions. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Records a test failure. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | fail() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -gt 1 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "fail() requires zero or one arguments; $# given" | 
					
						
							|  |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 1 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   _shunit_assertFail "${shunit_message_}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ | 
					
						
							|  |  |  |   return ${SHUNIT_FALSE} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _FAIL_='eval fail --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Records a test failure, stating two values were not equal. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | failNotEquals() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "failNotEquals() requires one or two arguments; $# given" | 
					
						
							|  |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   shunit_expected_=$1 | 
					
						
							|  |  |  |   shunit_actual_=$2 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   shunit_message_=${shunit_message_%% } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_assertFail "${shunit_message_:+${shunit_message_} }expected:<${shunit_expected_}> but was:<${shunit_actual_}>" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ shunit_expected_ shunit_actual_ | 
					
						
							|  |  |  |   return ${SHUNIT_FALSE} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _FAIL_NOT_EQUALS_='eval failNotEquals --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Records a test failure, stating two values should have been the same. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							|  |  |  | failSame() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_error "failSame() requires two or three arguments; $# given" | 
					
						
							|  |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   shunit_message_=${shunit_message_%% } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_assertFail "${shunit_message_:+${shunit_message_} }expected not same" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ | 
					
						
							|  |  |  |   return ${SHUNIT_FALSE} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _FAIL_SAME_='eval failSame --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Records a test failure, stating two values were not equal. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This is functionally equivalent to calling failNotEquals(). | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message [optional] | 
					
						
							|  |  |  | #   expected: string: expected value | 
					
						
							|  |  |  | #   actual: string: actual value | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   integer: success (TRUE/FALSE/ERROR constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | failNotSame() { | 
					
						
							|  |  |  |   # shellcheck disable=SC2090 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ${_SHUNIT_LINENO_} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -lt 2 -o $# -gt 3 ]; then | 
					
						
							|  |  |  |     _shunit_error "failNotSame() requires one or two arguments; $# given" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     return ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   _shunit_shouldSkip && return ${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   shunit_message_=${__shunit_lineno} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ $# -eq 3 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     shunit_message_="${shunit_message_}$1" | 
					
						
							|  |  |  |     shift | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  |   failNotEquals "${shunit_message_}" "$1" "$2" | 
					
						
							|  |  |  |   shunit_return=$? | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_message_ | 
					
						
							|  |  |  |   return ${shunit_return} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # shellcheck disable=SC2016,SC2034 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _FAIL_NOT_SAME_='eval failNotSame --lineno "${LINENO:-}"' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #----------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Skipping functions. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Force remaining assert and fail functions to be "skipped". | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function forces the remaining assert and fail functions to be "skipped", | 
					
						
							|  |  |  | # i.e. they will have no effect. Each function skipped will be recorded so that | 
					
						
							|  |  |  | # the total of asserts and fails will not be altered. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | startSkipping() { __shunit_skip=${SHUNIT_TRUE}; } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Resume the normal recording behavior of assert and fail calls. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | endSkipping() { __shunit_skip=${SHUNIT_FALSE}; } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Returns the state of assert and fail call skipping. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   boolean: (TRUE/FALSE constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | isSkipping() { return ${__shunit_skip}; } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #----------------------------------------------------------------------------- | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Suite functions. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Stub. This function should contains all unit test calls to be made. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # DEPRECATED (as of 2.1.0) | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function can be optionally overridden by the user in their test suite. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # If this function exists, it will be called when shunit2 is sourced. If it | 
					
						
							|  |  |  | # does not exist, shunit2 will search the parent script for all functions | 
					
						
							|  |  |  | # beginning with the word 'test', and they will be added dynamically to the | 
					
						
							|  |  |  | # test suite. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function should be overridden by the user in their unit test suite. | 
					
						
							|  |  |  | # Note: see _shunit_mktempFunc() for actual implementation | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | #suite() { :; }  # DO NOT UNCOMMENT THIS FUNCTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Adds a function name to the list of tests schedule for execution. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function should only be called from within the suite() function. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   function: string: name of a function to add to current unit test suite | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | suite_addTest() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   shunit_func_=${1:-} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   __shunit_suite="${__shunit_suite:+${__shunit_suite} }${shunit_func_}" | 
					
						
							|  |  |  |   __shunit_testsTotal=`expr ${__shunit_testsTotal} + 1` | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset shunit_func_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Stub. This function will be called once before any tests are run. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Common one-time environment preparation tasks shared by all tests can be | 
					
						
							|  |  |  | # defined here. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function should be overridden by the user in their unit test suite. | 
					
						
							|  |  |  | # Note: see _shunit_mktempFunc() for actual implementation | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | #oneTimeSetUp() { :; }  # DO NOT UNCOMMENT THIS FUNCTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Stub. This function will be called once after all tests are finished. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Common one-time environment cleanup tasks shared by all tests can be defined | 
					
						
							|  |  |  | # here. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function should be overridden by the user in their unit test suite. | 
					
						
							|  |  |  | # Note: see _shunit_mktempFunc() for actual implementation | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | #oneTimeTearDown() { :; }  # DO NOT UNCOMMENT THIS FUNCTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Stub. This function will be called before each test is run. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Common environment preparation tasks shared by all tests can be defined here. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function should be overridden by the user in their unit test suite. | 
					
						
							|  |  |  | # Note: see _shunit_mktempFunc() for actual implementation | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | #setUp() { :; }  # DO NOT UNCOMMENT THIS FUNCTION | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Note: see _shunit_mktempFunc() for actual implementation | 
					
						
							|  |  |  | # Stub. This function will be called after each test is run. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Common environment cleanup tasks shared by all tests can be defined here. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function should be overridden by the user in their unit test suite. | 
					
						
							|  |  |  | # Note: see _shunit_mktempFunc() for actual implementation | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | #tearDown() { :; }  # DO NOT UNCOMMENT THIS FUNCTION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #------------------------------------------------------------------------------ | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Internal shUnit2 functions. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Create a temporary directory to store various run-time files in. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # This function is a cross-platform temporary directory creation tool. Not all | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # OSes have the `mktemp` function, so one is included here. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | # Outputs: | 
					
						
							|  |  |  | #   string: the temporary directory that was created | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_mktempDir() { | 
					
						
							|  |  |  |   # Try the standard `mktemp` function. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   ( exec mktemp -dqt shunit.XXXXXX 2>/dev/null ) && return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # The standard `mktemp` didn't work. Use our own. | 
					
						
							|  |  |  |   # shellcheck disable=SC2039 | 
					
						
							|  |  |  |   if command [ -r '/dev/urandom' -a -x '/usr/bin/od' ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_random_=`/usr/bin/od -vAn -N4 -tx4 </dev/urandom \ | 
					
						
							|  |  |  |         |sed 's/^[^0-9a-f]*//'` | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   elif command [ -n "${RANDOM:-}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     # $RANDOM works | 
					
						
							|  |  |  |     _shunit_random_=${RANDOM}${RANDOM}${RANDOM}$$ | 
					
						
							|  |  |  |   else | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # `$RANDOM` doesn't work. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_date_=`date '+%Y%m%d%H%M%S'` | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_random_=`expr "${_shunit_date_}" / $$` | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   _shunit_tmpDir_="${TMPDIR:-/tmp}/shunit.${_shunit_random_}" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   ( umask 077 && command mkdir "${_shunit_tmpDir_}" ) || \ | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       _shunit_fatal 'could not create temporary directory! exiting' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   echo "${_shunit_tmpDir_}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   unset _shunit_date_ _shunit_random_ _shunit_tmpDir_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # This function is here to work around issues in Cygwin. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_mktempFunc() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   for _shunit_func_ in oneTimeSetUp oneTimeTearDown setUp tearDown suite noexec | 
					
						
							|  |  |  |   do | 
					
						
							|  |  |  |     _shunit_file_="${__shunit_tmpDir}/${_shunit_func_}" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     command cat <<EOF >"${_shunit_file_}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | #! /bin/sh | 
					
						
							|  |  |  | exit ${SHUNIT_TRUE} | 
					
						
							|  |  |  | EOF | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     command chmod +x "${_shunit_file_}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_file_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Final cleanup function to leave things as we found them. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Besides removing the temporary directory, this function is in charge of the | 
					
						
							|  |  |  | # final exit code of the unit test. The exit code is based on how the script | 
					
						
							|  |  |  | # was ended (e.g. normal exit, or via Ctrl-C). | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   name: string: name of the trap called (specified when trap defined) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_cleanup() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_name_=$1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   case ${_shunit_name_} in | 
					
						
							|  |  |  |     EXIT) _shunit_signal_=0 ;; | 
					
						
							|  |  |  |     INT) _shunit_signal_=2 ;; | 
					
						
							|  |  |  |     TERM) _shunit_signal_=15 ;; | 
					
						
							|  |  |  |     *) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |       _shunit_error "unrecognized trap value (${_shunit_name_})" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       _shunit_signal_=0 | 
					
						
							|  |  |  |       ;; | 
					
						
							|  |  |  |   esac | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # Do our work. | 
					
						
							|  |  |  |   command rm -fr "${__shunit_tmpDir}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # Exit for all non-EXIT signals. | 
					
						
							|  |  |  |   if command [ "${_shunit_name_}" != 'EXIT' ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_warn "trapped and now handling the (${_shunit_name_}) signal" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Disable EXIT trap. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     trap 0 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Add 128 to signal and exit. | 
					
						
							|  |  |  |     exit "`expr "${_shunit_signal_}" + 128`" | 
					
						
							|  |  |  |   elif command [ ${__shunit_reportGenerated} -eq ${SHUNIT_FALSE} ] ; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_assertFail 'Unknown failure encountered running a test' | 
					
						
							|  |  |  |     _shunit_generateReport | 
					
						
							|  |  |  |     exit ${SHUNIT_ERROR} | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_name_ _shunit_signal_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # configureColor based on user color preference. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   color: string: color mode (one of `always`, `auto`, or `none`). | 
					
						
							|  |  |  | _shunit_configureColor() { | 
					
						
							|  |  |  |   _shunit_color_=${SHUNIT_FALSE}  # By default, no color. | 
					
						
							|  |  |  |   case $1 in | 
					
						
							|  |  |  |     'always') _shunit_color_=${SHUNIT_TRUE} ;; | 
					
						
							|  |  |  |     'auto') | 
					
						
							|  |  |  |       ( exec tput >/dev/null 2>&1 )  # Check for existence of tput command. | 
					
						
							|  |  |  |       if command [ $? -lt 127 ]; then | 
					
						
							|  |  |  |         _shunit_tput_=`tput colors` | 
					
						
							|  |  |  |         # shellcheck disable=SC2166,SC2181 | 
					
						
							|  |  |  |         command [ $? -eq 0 -a "${_shunit_tput_}" -ge 16 ] && _shunit_color_=${SHUNIT_TRUE} | 
					
						
							|  |  |  |       fi | 
					
						
							|  |  |  |       ;; | 
					
						
							|  |  |  |     'none') ;; | 
					
						
							|  |  |  |     *) _shunit_fatal "unrecognized color option '$1'" ;; | 
					
						
							|  |  |  |   esac | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   case ${_shunit_color_} in | 
					
						
							|  |  |  |     ${SHUNIT_TRUE}) | 
					
						
							|  |  |  |       __shunit_ansi_none=${__SHUNIT_ANSI_NONE} | 
					
						
							|  |  |  |       __shunit_ansi_red=${__SHUNIT_ANSI_RED} | 
					
						
							|  |  |  |       __shunit_ansi_green=${__SHUNIT_ANSI_GREEN} | 
					
						
							|  |  |  |       __shunit_ansi_yellow=${__SHUNIT_ANSI_YELLOW} | 
					
						
							|  |  |  |       __shunit_ansi_cyan=${__SHUNIT_ANSI_CYAN} | 
					
						
							|  |  |  |       ;; | 
					
						
							|  |  |  |     ${SHUNIT_FALSE}) | 
					
						
							|  |  |  |       __shunit_ansi_none='' | 
					
						
							|  |  |  |       __shunit_ansi_red='' | 
					
						
							|  |  |  |       __shunit_ansi_green='' | 
					
						
							|  |  |  |       __shunit_ansi_yellow='' | 
					
						
							|  |  |  |       __shunit_ansi_cyan='' | 
					
						
							|  |  |  |       ;; | 
					
						
							|  |  |  |   esac | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_color_ _shunit_tput_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # The actual running of the tests happens here. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_execSuite() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   for _shunit_test_ in ${__shunit_suite}; do | 
					
						
							|  |  |  |     __shunit_testSuccess=${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Disable skipping. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     endSkipping | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Execute the per-test setup function. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     setUp | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     command [ $? -eq ${SHUNIT_TRUE} ] \ | 
					
						
							|  |  |  |         || _shunit_fatal "setup() returned non-zero return code." | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Execute the test. | 
					
						
							|  |  |  |     echo "${__SHUNIT_TEST_PREFIX}${_shunit_test_}" | 
					
						
							|  |  |  |     eval "${_shunit_test_}" | 
					
						
							|  |  |  |     if command [ $? -ne ${SHUNIT_TRUE} ]; then | 
					
						
							|  |  |  |       _shunit_error "${_shunit_test_}() returned non-zero return code." | 
					
						
							|  |  |  |       __shunit_testSuccess=${SHUNIT_ERROR} | 
					
						
							|  |  |  |       _shunit_incFailedCount | 
					
						
							|  |  |  |     fi | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Execute the per-test tear-down function. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     tearDown | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     command [ $? -eq ${SHUNIT_TRUE} ] \ | 
					
						
							|  |  |  |         || _shunit_fatal "tearDown() returned non-zero return code." | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     # Update stats. | 
					
						
							|  |  |  |     if command [ ${__shunit_testSuccess} -eq ${SHUNIT_TRUE} ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       __shunit_testsPassed=`expr ${__shunit_testsPassed} + 1` | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       __shunit_testsFailed=`expr ${__shunit_testsFailed} + 1` | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  |   done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_test_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Generates the user friendly report with appropriate OK/FAILED message. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | # Output: | 
					
						
							|  |  |  | #   string: the report of successful and failed tests, as well as totals. | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_generateReport() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_ok_=${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # If no exit code was provided one, determine an appropriate one. | 
					
						
							|  |  |  |   command [ "${__shunit_testsFailed}" -gt 0 \ | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       -o ${__shunit_testSuccess} -eq ${SHUNIT_FALSE} ] \ | 
					
						
							|  |  |  |           && _shunit_ok_=${SHUNIT_FALSE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   echo | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   _shunit_msg_="Ran ${__shunit_ansi_cyan}${__shunit_testsTotal}${__shunit_ansi_none}" | 
					
						
							|  |  |  |   if command [ "${__shunit_testsTotal}" -eq 1 ]; then | 
					
						
							|  |  |  |     ${__SHUNIT_CMD_ECHO_ESC} "${_shunit_msg_} test." | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     ${__SHUNIT_CMD_ECHO_ESC} "${_shunit_msg_} tests." | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   _shunit_failures_=0 | 
					
						
							|  |  |  |   _shunit_skipped_=0 | 
					
						
							|  |  |  |   command [ "${__shunit_assertsFailed}" -gt 0 ] \ | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       && _shunit_failures_="failures=${__shunit_assertsFailed}" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   command [ "${__shunit_assertsSkipped}" -gt 0 ] \ | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       && _shunit_skipped_="skipped=${__shunit_assertsSkipped}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   if command [ ${_shunit_ok_} -eq ${SHUNIT_TRUE} ]; then | 
					
						
							|  |  |  |     _shunit_msg_="${__shunit_ansi_green}OK${__shunit_ansi_none}" | 
					
						
							|  |  |  |     command [ "${_shunit_skipped_}" -gt 0 ] \ | 
					
						
							|  |  |  |         && _shunit_msg_="${_shunit_msg_} (${__shunit_ansi_yellow}${_shunit_skipped_}${__shunit_ansi_none})" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     _shunit_msg_="${__shunit_ansi_red}FAILED${__shunit_ansi_none}" | 
					
						
							|  |  |  |     _shunit_msg_="${_shunit_msg_} (${__shunit_ansi_red}${_shunit_failures_}${__shunit_ansi_none}" | 
					
						
							|  |  |  |     command [ "${_shunit_skipped_}" -gt 0 ] \ | 
					
						
							|  |  |  |         && _shunit_msg_="${_shunit_msg_},${__shunit_ansi_yellow}${_shunit_skipped_}${__shunit_ansi_none}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |     _shunit_msg_="${_shunit_msg_})" | 
					
						
							|  |  |  |   fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   echo | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   ${__SHUNIT_CMD_ECHO_ESC} "${_shunit_msg_}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   __shunit_reportGenerated=${SHUNIT_TRUE} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_failures_ _shunit_msg_ _shunit_ok_ _shunit_skipped_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Test for whether a function should be skipped. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   boolean: whether the test should be skipped (TRUE/FALSE constant) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_shouldSkip() { | 
					
						
							|  |  |  |   command [ ${__shunit_skip} -eq ${SHUNIT_FALSE} ] && return ${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_assertSkip | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Records a successful test. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_assertPass() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   __shunit_assertsPassed=`expr ${__shunit_assertsPassed} + 1` | 
					
						
							|  |  |  |   __shunit_assertsTotal=`expr ${__shunit_assertsTotal} + 1` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Records a test failure. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   message: string: failure message to provide user | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_assertFail() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   __shunit_testSuccess=${SHUNIT_FALSE} | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   _shunit_incFailedCount | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   \[ $# -gt 0 ] && ${__SHUNIT_CMD_ECHO_ESC} \ | 
					
						
							|  |  |  |       "${__shunit_ansi_red}ASSERT:${__shunit_ansi_none}$*" | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Increment the count of failed asserts. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   none | 
					
						
							|  |  |  | _shunit_incFailedCount() { | 
					
						
							|  |  |  |   __shunit_assertsFailed=`expr "${__shunit_assertsFailed}" + 1` | 
					
						
							|  |  |  |   __shunit_assertsTotal=`expr "${__shunit_assertsTotal}" + 1` | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # Records a skipped test. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   None | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_assertSkip() { | 
					
						
							|  |  |  |   __shunit_assertsSkipped=`expr "${__shunit_assertsSkipped}" + 1` | 
					
						
							|  |  |  |   __shunit_assertsTotal=`expr "${__shunit_assertsTotal}" + 1` | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Prepare a script filename for sourcing. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   script: string: path to a script to source | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   string: filename prefixed with ./ (if necessary) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_prepForSourcing() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_script_=$1 | 
					
						
							|  |  |  |   case "${_shunit_script_}" in | 
					
						
							|  |  |  |     /*|./*) echo "${_shunit_script_}" ;; | 
					
						
							|  |  |  |     *) echo "./${_shunit_script_}" ;; | 
					
						
							|  |  |  |   esac | 
					
						
							|  |  |  |   unset _shunit_script_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Escape a character in a string. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   c: string: unescaped character | 
					
						
							|  |  |  | #   s: string: to escape character in | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   string: with escaped character(s) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_escapeCharInStr() { | 
					
						
							|  |  |  |   command [ -n "$2" ] || return  # No point in doing work on an empty string. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   # Note: using shorter variable names to prevent conflicts with | 
					
						
							|  |  |  |   # _shunit_escapeCharactersInString(). | 
					
						
							|  |  |  |   _shunit_c_=$1 | 
					
						
							|  |  |  |   _shunit_s_=$2 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # Escape the character. | 
					
						
							|  |  |  |   # shellcheck disable=SC1003,SC2086 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   echo ''${_shunit_s_}'' |sed 's/\'${_shunit_c_}'/\\\'${_shunit_c_}'/g' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_c_ _shunit_s_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Escape a character in a string. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   str: string: to escape characters in | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   string: with escaped character(s) | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_escapeCharactersInString() { | 
					
						
							|  |  |  |   command [ -n "$1" ] || return  # No point in doing work on an empty string. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   _shunit_str_=$1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   # Note: using longer variable names to prevent conflicts with | 
					
						
							|  |  |  |   # _shunit_escapeCharInStr(). | 
					
						
							|  |  |  |   for _shunit_char_ in '"' '$' "'" '`'; do | 
					
						
							|  |  |  |     _shunit_str_=`_shunit_escapeCharInStr "${_shunit_char_}" "${_shunit_str_}"` | 
					
						
							|  |  |  |   done | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   echo "${_shunit_str_}" | 
					
						
							|  |  |  |   unset _shunit_char_ _shunit_str_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Extract list of functions to run tests against. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Args: | 
					
						
							|  |  |  | #   script: string: name of script to extract functions from | 
					
						
							|  |  |  | # Returns: | 
					
						
							|  |  |  | #   string: of function names | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | _shunit_extractTestFunctions() { | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   _shunit_script_=$1 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # Extract the lines with test function names, strip of anything besides the | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   # function name, and output everything on a single line. | 
					
						
							|  |  |  |   _shunit_regex_='^[ 	]*(function )*test[A-Za-z0-9_]* *\(\)' | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   # shellcheck disable=SC2196 | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   egrep "${_shunit_regex_}" "${_shunit_script_}" \ | 
					
						
							|  |  |  |   |sed 's/^[^A-Za-z0-9_]*//;s/^function //;s/\([A-Za-z0-9_]*\).*/\1/g' \ | 
					
						
							|  |  |  |   |xargs | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   unset _shunit_regex_ _shunit_script_ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #------------------------------------------------------------------------------ | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Main. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Determine the operating mode. | 
					
						
							|  |  |  | if command [ $# -eq 0 ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   __shunit_script=${__SHUNIT_PARENT} | 
					
						
							|  |  |  |   __shunit_mode=${__SHUNIT_MODE_SOURCED} | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   __shunit_script=$1 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |   command [ -r "${__shunit_script}" ] || \ | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |       _shunit_fatal "unable to read from ${__shunit_script}" | 
					
						
							|  |  |  |   __shunit_mode=${__SHUNIT_MODE_STANDALONE} | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Create a temporary storage location. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | __shunit_tmpDir=`_shunit_mktempDir` | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Provide a public temporary directory for unit test scripts. | 
					
						
							|  |  |  | # TODO(kward): document this. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | SHUNIT_TMPDIR="${__shunit_tmpDir}/tmp" | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | command mkdir "${SHUNIT_TMPDIR}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Setup traps to clean up after ourselves. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | trap '_shunit_cleanup EXIT' 0 | 
					
						
							|  |  |  | trap '_shunit_cleanup INT' 2 | 
					
						
							|  |  |  | trap '_shunit_cleanup TERM' 15 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Create phantom functions to work around issues with Cygwin. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _shunit_mktempFunc | 
					
						
							|  |  |  | PATH="${__shunit_tmpDir}:${PATH}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Make sure phantom functions are executable. This will bite if `/tmp` (or the | 
					
						
							|  |  |  | # current `$TMPDIR`) points to a path on a partition that was mounted with the | 
					
						
							|  |  |  | # 'noexec' option. The noexec command was created with `_shunit_mktempFunc()`. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | noexec 2>/dev/null || _shunit_fatal \ | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     'Please declare TMPDIR with path on partition with exec permission.' | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # We must manually source the tests in standalone mode. | 
					
						
							|  |  |  | if command [ "${__shunit_mode}" = "${__SHUNIT_MODE_STANDALONE}" ]; then | 
					
						
							|  |  |  |   # shellcheck disable=SC1090 | 
					
						
							|  |  |  |   command . "`_shunit_prepForSourcing \"${__shunit_script}\"`" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Configure default output coloring behavior. | 
					
						
							|  |  |  | _shunit_configureColor "${SHUNIT_COLOR}" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Execute the oneTimeSetUp function (if it exists). | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | oneTimeSetUp | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | command [ $? -eq ${SHUNIT_TRUE} ] \ | 
					
						
							|  |  |  |     || _shunit_fatal "oneTimeSetUp() returned non-zero return code." | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Execute the suite function defined in the parent test script. | 
					
						
							|  |  |  | # DEPRECATED as of 2.1.0. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | suite | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # If no suite function was defined, dynamically build a list of functions. | 
					
						
							|  |  |  | if command [ -z "${__shunit_suite}" ]; then | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   shunit_funcs_=`_shunit_extractTestFunctions "${__shunit_script}"` | 
					
						
							|  |  |  |   for shunit_func_ in ${shunit_funcs_}; do | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  |     suite_addTest "${shunit_func_}" | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  |   done | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | unset shunit_func_ shunit_funcs_ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Execute the suite of unit tests. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _shunit_execSuite | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Execute the oneTimeTearDown function (if it exists). | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | oneTimeTearDown | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | command [ $? -eq ${SHUNIT_TRUE} ] \ | 
					
						
							|  |  |  |     || _shunit_fatal "oneTimeTearDown() returned non-zero return code." | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # Generate a report summary. | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | _shunit_generateReport | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 21:25:49 +00:00
										 |  |  | # That's it folks. | 
					
						
							|  |  |  | command [ "${__shunit_testsFailed}" -eq 0 ] | 
					
						
							| 
									
										
										
										
											2016-08-22 08:26:38 +00:00
										 |  |  | exit $? |