SEC-633: Handle null credentials in AbstractAuthenticationToken.equals

Also added a test for the OpenIDAuthenticationToken to reproduce the original error.
This commit is contained in:
Ray Krueger
2008-01-18 16:09:31 +00:00
parent 01569e5746
commit 61c91d1b79
2 changed files with 42 additions and 11 deletions

View File

@@ -0,0 +1,25 @@
package org.springframework.security.providers.openid;
import junit.framework.TestCase;
/**
* DOCUMENT ME!
*
* @author Ray Krueger
*/
public class OpenIdAuthenticationTokenTests extends TestCase {
public void test() throws Exception {
OpenIDAuthenticationToken token = newToken();
assertEquals(token, newToken());
}
private OpenIDAuthenticationToken newToken() {
return new OpenIDAuthenticationToken(
OpenIDAuthenticationStatus.SUCCESS,
"http://raykrueger.blogspot.com/",
"what is this for anyway?");
}
}