From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH v2 06/18] test_value_in_array: Check if the key is defined Date: Sun, 16 Jun 2024 18:02:33 +0200 Message-ID: <20240616160245.18865-7-jonatan.schlag@ipfire.org> In-Reply-To: <20240616160245.18865-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4746648446240580276==" List-Id: --===============4746648446240580276== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Jonatan Schlag --- tests/lib.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/lib.sh b/tests/lib.sh index f49a94748..af8c632cf 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -48,6 +48,14 @@ test_value_in_array() { return 1 fi =20 + # If key is not defined we return _ + # If the key is defined we return nothing + # See also https://www.gnu.org/software/bash/manual/html_node/Shell-Paramet= er-Expansion.html + if [[ "${array["${key}"]+_}" =3D=3D "" ]]; 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 --===============4746648446240580276==--