From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 08/21] test_that_key_in_arry_has_value: Check if the key is defined Date: Mon, 20 May 2024 11:05:58 +0200 Message-ID: <20240520090611.10406-9-jonatan.schlag@ipfire.org> In-Reply-To: <20240520090611.10406-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8692944127237116822==" List-Id: --===============8692944127237116822== 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 0f4de8e43..006862da6 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -38,6 +38,11 @@ test_that_key_in_arry_has_value() { return 1 fi =20 + if [[ ! -v "${array[${key}]}" ]]; then + log_test_failed "The array does not contain the key '${key}', valid keys a= re: ${!array[*]}" + return 1 + fi + if [[ "${array[${key}]}" =3D=3D "${value}" ]] ; then log_test_succeded "The array '${1}' contains the value '${value}' under th= e key '${key}'" return 0 --=20 2.39.2 --===============8692944127237116822==--