From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: development@lists.ipfire.org Subject: [PATCH 15/21] tests: Add functions test_that_array_doesnt_have_key Date: Mon, 20 May 2024 11:06:05 +0200 Message-ID: <20240520090611.10406-16-jonatan.schlag@ipfire.org> In-Reply-To: <20240520090611.10406-1-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1105628001723631970==" List-Id: --===============1105628001723631970== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Apparently we can set way more keys then I expected. So we need a function to check that we do not set certain key. Some keys need to be skipped. Signed-off-by: Jonatan Schlag --- tests/lib.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/lib.sh b/tests/lib.sh index 29f4e3b71..1eab92cf7 100644 --- a/tests/lib.sh +++ b/tests/lib.sh @@ -61,6 +61,24 @@ test_that_key_in_arry_has_value() { fi } =20 +test_that_array_doesnt_have_key() { + local -n array=3D"${1}" + local arrayname=3D"${1}" + local key=3D"${2}" + + test_that_array_is_defined "${arrayname}" || return 1 + + if [[ "${array["${key}"]+_}" =3D=3D "_" ]]; then + log_test_failed "The array '${arrayname}' does contain the key '${key}'." + return 1 + else + log_test_succeded "The array '${arrayname}' does not contain the key '${ke= y}'" + return 0 + fi + +} + + test_that_output_is(){ local reference_output_file=3D"${1}" local file_descriptor=3D"${2}" --=20 2.39.2 --===============1105628001723631970==--