Skip to content

Commit 6ec7c9a

Browse files
authored
fix the " or exit " and output redirection on error (#70)
issue NMO-459 - best practice: `<command> || exit` need to change to `<command> || exit 1` so that it return an error on logic faillure - best practice: output redirection need to be from stdout to stder on error
2 parents 921f89b + 3fbfc4a commit 6ec7c9a

23 files changed

+36
-36
lines changed

import_norlab_shell_script_tools_lib.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ function n2st::source_lib(){
3030
_REPO_ROOT="$(dirname "${_PATH_TO_SCRIPT}")"
3131

3232
# ....Load environment variables from file.......................................................
33-
cd "${_REPO_ROOT}" || exit
33+
cd "${_REPO_ROOT}" || exit 1
3434
set -o allexport
3535
source .env.n2st
3636
set +o allexport
3737

3838
# ....Begin......................................................................................
39-
cd "${N2ST_PATH:?'[ERROR] env var not set!'}/src/function_library" || exit
39+
cd "${N2ST_PATH:?'[ERROR] env var not set!'}/src/function_library" || exit 1
4040
for each_file in "$(pwd)"/*.bash ; do
4141
source "${each_file}"
4242
done

src/function_library/docker_utilities.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# ....Pre-condition................................................................................
1313
if [[ "$(basename "$(pwd)")" != "function_library" ]]; then
14-
echo -e "\n[\033[1;31mERROR\033[0m] 'docker_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
14+
echo -e "\n[\033[1;31mERROR\033[0m] 'docker_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'" 1>&2
1515
echo '(press any key to exit)'
1616
read -r -n 1
1717
exit 1

src/function_library/dummy.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ function n2st::good_morning_norlab() {
1616
}
1717

1818
function n2st::this_is_not_cool() {
19-
echo -e "\n[\033[1;31mERROR\033[0m] Noooooooooooooo!"
19+
echo -e "\n[\033[1;31mERROR\033[0m] Noooooooooooooo!" 1>&2
2020
return 1
2121
}

src/function_library/general_utilities.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# ....Pre-condition................................................................................
1313
if [[ "$(basename "$(pwd)")" != "function_library" ]]; then
14-
echo -e "\n[\033[1;31mERROR\033[0m] 'general_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
14+
echo -e "\n[\033[1;31mERROR\033[0m] 'general_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'" 1>&2
1515
echo '(press any key to exit)'
1616
read -r -n 1
1717
exit 1
@@ -100,7 +100,7 @@ function n2st::set_which_architecture_and_os() {
100100
elif [[ $(uname) == "Linux" ]]; then
101101
export IMAGE_ARCH_AND_OS='linux/arm64'
102102
else
103-
echo -e "${MSG_ERROR} Unsupported OS for aarch64 processor"
103+
echo -e "${MSG_ERROR} Unsupported OS for aarch64 processor" 1>&2
104104
fi
105105
elif [[ $(uname -m) == "arm64" ]] && [[ $(uname) == "Darwin" ]]; then
106106
export IMAGE_ARCH_AND_OS='darwin/arm64'

src/function_library/prompt_utilities.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# ....Pre-condition................................................................................
1414
if [[ "$(basename "$(pwd)")" != "function_library" ]]; then
15-
echo -e "\n[\033[1;31mERROR\033[0m] 'prompt_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
15+
echo -e "\n[\033[1;31mERROR\033[0m] 'prompt_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'" 1>&2
1616
echo '(press any key to exit)'
1717
read -rn 1
1818
exit 1
@@ -98,7 +98,7 @@ function n2st::print_msg_error_and_exit() {
9898
local ERROR_MSG=$1
9999

100100
echo ""
101-
echo -e "${MSG_ERROR}: ${ERROR_MSG}" >&2
101+
echo -e "${MSG_ERROR}: ${ERROR_MSG}" 1>&2
102102
# Note: The >&2 sends the echo output to standard error
103103
echo "Exiting now."
104104
echo ""
@@ -109,7 +109,7 @@ function n2st::print_msg_error() {
109109
local ERROR_MSG=$1
110110

111111
echo ""
112-
echo -e "${MSG_ERROR}: ${ERROR_MSG}" >&2
112+
echo -e "${MSG_ERROR}: ${ERROR_MSG}" 1>&2
113113
echo ""
114114
}
115115

src/function_library/teamcity_utilities.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# ....Pre-condition................................................................................
1414
if [[ "$(basename "$(pwd)")" != "function_library" ]]; then
15-
echo -e "\n[\033[1;31mERROR\033[0m] 'teamcity_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'"
15+
echo -e "\n[\033[1;31mERROR\033[0m] 'teamcity_utilities.bash' script must be sourced from the 'function_library/'!\n Curent working directory is '$(pwd)'" 1>&2
1616
echo '(press any key to exit)'
1717
read -r -n 1
1818
exit 1

src/function_library/terminal_splash.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ function n2st::norlab_splash() {
320320
else
321321
MSG_ERROR_FORMAT="\033[1;31m"
322322
MSG_END_FORMAT="\033[0m"
323-
echo -e "${MSG_ERROR_FORMAT}SPLASH_TYPE \"${SPLASH_TYPE}\" not implemented! ${MSG_END_FORMAT}"
323+
echo -e "${MSG_ERROR_FORMAT}SPLASH_TYPE \"${SPLASH_TYPE}\" not implemented! ${MSG_END_FORMAT}" 1>&2
324324
fi
325325

326326
}

src/utility_scripts/install_docker_tools.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# ....Pre-condition................................................................................
1515
if [[ "$(basename "$(pwd)")" != "utility_scripts" ]]; then
16-
echo -e "\n[\033[1;31mERROR\033[0m] 'install_docker_tools.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"
16+
echo -e "\n[\033[1;31mERROR\033[0m] 'install_docker_tools.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'" 1>&2
1717
echo '(press any key to exit)'
1818
read -r -n 1
1919
exit 1
@@ -22,7 +22,7 @@ fi
2222
# ....Load helper function.........................................................................
2323
TMP_CWD=$(pwd)
2424
source ../../.env.n2st
25-
cd ../function_library || exit
25+
cd ../function_library || exit 1
2626
source ./prompt_utilities.bash
2727
source ./docker_utilities.bash
2828
cd "${TMP_CWD}"
@@ -77,4 +77,4 @@ n2st::add_user_to_the_docker_group "$(whoami)"
7777

7878
n2st::print_formated_script_footer 'install_docker_tools.bash'
7979
# ====Teardown=====================================================================================
80-
cd "${TMP_CWD}" || exit
80+
cd "${TMP_CWD}" || exit 1

src/utility_scripts/which_architecture_and_os.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
# ....Pre-condition................................................................................
2828
if [[ "$(basename "$(pwd)")" != "utility_scripts" ]]; then
29-
echo -e "\n[\033[1;31mERROR\033[0m] 'which_architecture_and_os.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"
29+
echo -e "\n[\033[1;31mERROR\033[0m] 'which_architecture_and_os.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1
@@ -42,7 +42,7 @@ if [[ -z $PROJECT_PROMPT_NAME ]] && [[ -z $PROJECT_GIT_NAME ]] ; then
4242
set +o allexport
4343
fi
4444

45-
cd ../function_library || exit
45+
cd ../function_library || exit 1
4646
source ./general_utilities.bash
4747

4848
cd "${TMP_CWD}"

src/utility_scripts/which_python_version.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# ....Pre-condition................................................................................
1919
if [[ "$(basename "$(pwd)")" != "utility_scripts" ]]; then
20-
echo -e "\n[\033[1;31mERROR\033[0m] 'which_python_version.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'"
20+
echo -e "\n[\033[1;31mERROR\033[0m] 'which_python_version.bash' script must be sourced from the 'utility_scripts/'!\n Curent working directory is '$(pwd)'" 1>&2
2121
echo '(press any key to exit)'
2222
read -r -n 1
2323
exit 1
@@ -33,7 +33,7 @@ if [[ -z $PROJECT_PROMPT_NAME ]] && [[ -z $PROJECT_GIT_NAME ]] ; then
3333
set +o allexport
3434
fi
3535

36-
cd ../function_library || exit
36+
cd ../function_library || exit 1
3737
source ./general_utilities.bash
3838

3939
cd "${TMP_CWD}"

tests/bats_testing_tools/bats_helper_functions.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function mock_docker_command_exit_ok() {
3737

3838
function mock_docker_command_exit_error() {
3939
function docker() {
40-
echo "Error" >&2
40+
echo "Error" 1>&2
4141
return 1
4242
}
4343
}

tests/bats_testing_tools/run_bats_tests_in_docker.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ N2ST_BATS_TESTING_TOOLS_ABS_PATH="$( cd "$( dirname "${0}" )" &> /dev/null && pw
3232
N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH=".${N2ST_BATS_TESTING_TOOLS_ABS_PATH/$REPO_ROOT/}"
3333

3434
if [[ $(basename "$REPO_ROOT") != ${PROJECT_CLONE_GIT_NAME} ]]; then
35-
echo -e "\n[\033[1;31mERROR\033[0m] $0 must be executed from the project root!\nCurrent wordir: $(pwd)"
35+
echo -e "\n[\033[1;31mERROR\033[0m] $0 must be executed from the project root!\nCurrent wordir: $(pwd)" 1>&2
3636
echo '(press any key to exit)'
3737
read -r -n 1
3838
exit 1

tests/test_docker_utilities.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -d ${BATS_HELPER_PATH} ]]; then
2626
load "${SRC_CODE_PATH}/${N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH}/bats_helper_functions"
2727
#load "${BATS_HELPER_PATH}/bats-detik/load" # << Kubernetes support
2828
else
29-
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!"
29+
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1
@@ -45,7 +45,7 @@ setup_file() {
4545

4646
setup() {
4747
source .env.project
48-
cd $TESTED_FILE_PATH || exit
48+
cd $TESTED_FILE_PATH || exit 1
4949
source ./$TESTED_FILE
5050

5151
}

tests/test_dotenv_files.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -d ${BATS_HELPER_PATH} ]]; then
2626
load "${SRC_CODE_PATH}/${N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH}/bats_helper_functions"
2727
#load "${BATS_HELPER_PATH}/bats-detik/load" # << Kubernetes support
2828
else
29-
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!"
29+
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1

tests/test_general_utilities.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -d ${BATS_HELPER_PATH} ]]; then
2626
load "${SRC_CODE_PATH}/${N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH}/bats_helper_functions"
2727
#load "${BATS_HELPER_PATH}/bats-detik/load" # << Kubernetes support
2828
else
29-
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!"
29+
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1
@@ -44,7 +44,7 @@ setup_file() {
4444

4545
setup() {
4646
source .env.project
47-
cd $TESTED_FILE_PATH || exit
47+
cd $TESTED_FILE_PATH || exit 1
4848
source ./$TESTED_FILE
4949
}
5050

tests/test_import_lib.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -d ${BATS_HELPER_PATH} ]]; then
2626
load "${SRC_CODE_PATH}/${N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH}/bats_helper_functions"
2727
#load "${BATS_HELPER_PATH}/bats-detik/load" # << Kubernetes support
2828
else
29-
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!"
29+
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1
@@ -48,7 +48,7 @@ setup_file() {
4848

4949
# executed before each test
5050
setup() {
51-
cd "$TESTED_FILE_PATH" || exit
51+
cd "$TESTED_FILE_PATH" || exit 1
5252
}
5353

5454
# ====Teardown=====================================================================================

tests/test_install_docker_tools.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -d ${BATS_HELPER_PATH} ]]; then
2626
load "${SRC_CODE_PATH}/${N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH}/bats_helper_functions"
2727
#load "${BATS_HELPER_PATH}/bats-detik/load" # << Kubernetes support
2828
else
29-
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!"
29+
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1
@@ -44,7 +44,7 @@ setup_file() {
4444
}
4545

4646
setup() {
47-
cd "$TESTED_FILE_PATH" || exit
47+
cd "$TESTED_FILE_PATH" || exit 1
4848
}
4949

5050
# ====Teardown=====================================================================================

tests/test_prompt_utilities.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [[ -d ${BATS_HELPER_PATH} ]]; then
2626
load "${SRC_CODE_PATH}/${N2ST_BATS_TESTING_TOOLS_RELATIVE_PATH}/bats_helper_functions"
2727
#load "${BATS_HELPER_PATH}/bats-detik/load" # << Kubernetes support
2828
else
29-
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!"
29+
echo -e "\n[\033[1;31mERROR\033[0m] $0 path to bats-core helper library unreachable at \"${BATS_HELPER_PATH}\"!" 1>&2
3030
echo '(press any key to exit)'
3131
read -r -n 1
3232
exit 1
@@ -43,7 +43,7 @@ setup_file() {
4343

4444
setup() {
4545
source .env.project
46-
cd "src/function_library" || exit
46+
cd "src/function_library" || exit 1
4747
source ./$TESTED_FILE
4848
TEST_TEMP_DIR="$(temp_make)"
4949
}

tests/test_teamcity_utilities.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ setup_file() {
4444

4545
setup() {
4646
source .env.project
47-
cd $TESTED_FILE_PATH || exit
47+
cd $TESTED_FILE_PATH || exit 1
4848
source ./$TESTED_FILE
4949
}
5050

tests/test_terminal_splash.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ setup_file() {
4141
}
4242

4343
setup() {
44-
cd "src/function_library" || exit
44+
cd "src/function_library" || exit 1
4545
source ./terminal_splash.bash
4646
}
4747

tests/test_which_architecture_and_os.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ setup_file() {
4444
}
4545

4646
setup() {
47-
cd "$TESTED_FILE_PATH" || exit
47+
cd "$TESTED_FILE_PATH" || exit 1
4848
}
4949

5050
# ====Teardown=====================================================================================

tests/test_which_python_version.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ setup_file() {
4444
}
4545

4646
setup() {
47-
cd "$TESTED_FILE_PATH" || exit
47+
cd "$TESTED_FILE_PATH" || exit 1
4848
}
4949

5050
# ====Teardown=====================================================================================

tests/tests_template/test_template.bats

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ setup_file() {
4949

5050
# executed before each test
5151
setup() {
52-
cd "$TESTED_FILE_PATH" || exit
52+
cd "$TESTED_FILE_PATH" || exit 1
5353
source ./$TESTED_FILE
5454
}
5555

0 commit comments

Comments
 (0)