You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is one definite issue and one possible issue with this test.
Hard-coded requirement for Jakarta Authorization support.
boolean bIs115Compatible = false;
// ONLY if we are Jakarta Authorization compatible, we want to make an additional key test
if (bIs115Compatible) {
...
That boolean value needs to be externally configurable.
Once that has been addressed, there is a possible second issue with the alternative code branch
The CallerPrincipalCallback check expects the user name to be set to j2ee but the user name isn't set until PasswordValidationCallback is called which happens after CallerPrincipalCallback. I do not see how the test can pass in its current form.
It is quite possible that the second issue is a problem with my understanding rather than the TCK. If, so any pointers to where I am going wrong would be appreciated.
The text was updated successfully, but these errors were encountered:
There is one definite issue and one possible issue with this test.
That boolean value needs to be externally configurable.
Once that has been addressed, there is a possible second issue with the alternative code branch
CallerPrincipalCallback
check expects the user name to be set toj2ee
but the user name isn't set untilPasswordValidationCallback
is called which happens afterCallerPrincipalCallback
. I do not see how the test can pass in its current form.It is quite possible that the second issue is a problem with my understanding rather than the TCK. If, so any pointers to where I am going wrong would be appreciated.
The text was updated successfully, but these errors were encountered: