use of org.nhindirect.common.rest.auth.exceptions.NoSuchUserException in project nhin-d by DirectProject.
the class HashableBasicAuthValidator_authenticateRawTest method testAuthenticate_unknownUser_assertAssertException.
@Test
public void testAuthenticate_unknownUser_assertAssertException() throws Exception {
BasicAuthValidator validator = buildValidator();
boolean exceptionOccured = false;
try {
final String rawAuth = buildRawCredential("test", "password");
validator.authenticate(rawAuth);
} catch (NoSuchUserException e) {
exceptionOccured = true;
}
assertTrue(exceptionOccured);
}
use of org.nhindirect.common.rest.auth.exceptions.NoSuchUserException in project nhin-d by DirectProject.
the class HashableBasicAuthValidator_authenticateTest method testAuthenticate_unknownUser_assertAssertException.
@Test
public void testAuthenticate_unknownUser_assertAssertException() throws Exception {
BasicAuthValidator validator = buildValidator();
boolean exceptionOccured = false;
try {
validator.authenticate("test", "password");
} catch (NoSuchUserException e) {
exceptionOccured = true;
}
assertTrue(exceptionOccured);
}
Aggregations