From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 04/21] tests/lib.sh: Add check if variable exists to test_that_key_in_arry_has_value Date: Mon, 20 May 2024 11:05:54 +0200 Message-ID: <20240520090611.10406-5-jonatan.schlag@ipfire.org> In-Reply-To: <20240520090611.10406-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8159007999540301809==" List-Id: --===============8159007999540301809== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Jonatan Schlag --- tests/lib.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/lib.sh b/tests/lib.sh index c51257e79..373b7c3a0 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -24,6 +24,11 @@ test_that_key_in_arry_has_value() { local key=3D"${2}" local value=3D"${3}" =20 + if [[ ! -v "${array}" ]]; then + echo -e "${CLR_RED_BG}Test failed: The array '${1}' does not exists. The v= ariable is not set.${CLR_RESET}'" + return 1 + fi + if [[ "${array[${key}]}" =3D=3D "${value}" ]] ; then echo -e "${CLR_GREEN_BG}Test succeded: The array '${1}' contains the value= '${value}' under the key '${key}' ${CLR_RESET}" return 0 --=20 2.39.2 --===============8159007999540301809==--