From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 03/21] tests/lib.sh: Add function test_that_key_in_arry_has_value Date: Mon, 20 May 2024 11:05:53 +0200 Message-ID: <20240520090611.10406-4-jonatan.schlag@ipfire.org> In-Reply-To: <20240520090611.10406-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3574457316018026544==" List-Id: --===============3574457316018026544== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable I think the name says it all. Signed-off-by: Jonatan Schlag --- tests/lib.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/lib.sh b/tests/lib.sh index 7749d5158..c51257e79 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -18,3 +18,17 @@ test_that() { var_has_value() { [[ "${!1}" =3D=3D "${2}" ]] } + +test_that_key_in_arry_has_value() { + local array=3D"${!1}" + local key=3D"${2}" + local value=3D"${3}" + + 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 + else + echo -e "${CLR_RED_BG}Test failed: The array '${1}' contains the value '${= array[${key}]}' under the key '${key} and not '${value}' ${CLR_RESET}" + return 1 + fi +} --=20 2.39.2 --===============3574457316018026544==--