add test cases for non-4 digit entries

This commit is contained in:
Carlosokumu 2025-03-19 09:05:19 +03:00
parent 5317ed3bd5
commit 4b1e3f09d0
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -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},
},