From 4b1e3f09d097b157f1f8f63b719e6842be8520da Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Wed, 19 Mar 2025 09:05:19 +0300 Subject: [PATCH] add test cases for non-4 digit entries --- handlers/application/menuhandler_test.go | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/handlers/application/menuhandler_test.go b/handlers/application/menuhandler_test.go index a4501aa..6ddc1c2 100644 --- a/handlers/application/menuhandler_test.go +++ b/handlers/application/menuhandler_test.go @@ -1315,8 +1315,15 @@ func TestAuthorize(t *testing.T) { }, }, { - name: "Test with pin that is not a 4 digit", - input: []byte("1235aqds"), + name: "Test with PIN that is more than 4 digits", + input: []byte("12357"), + expectedResult: resource.Result{ + FlagSet: []uint32{flag_invalid_pin}, + }, + }, + { + name: "Test with pin that is less than 4 digit", + input: []byte("123"), expectedResult: resource.Result{ FlagSet: []uint32{flag_invalid_pin}, },