use of org.pac4j.sql.profile.DbProfile in project pac4j by pac4j.
the class DbProfileServiceTests method testGoodUsernameAttribute.
@Test
public void testGoodUsernameAttribute() {
final UsernamePasswordCredentials credentials = login(GOOD_USERNAME, PASSWORD, FIRSTNAME);
final CommonProfile profile = credentials.getUserProfile();
assertNotNull(profile);
assertTrue(profile instanceof DbProfile);
final DbProfile dbProfile = (DbProfile) profile;
assertEquals(GOOD_USERNAME, dbProfile.getId());
assertEquals(FIRSTNAME_VALUE, dbProfile.getAttribute(FIRSTNAME));
}
use of org.pac4j.sql.profile.DbProfile in project pac4j by pac4j.
the class DbProfileService method internalInit.
@Override
protected void internalInit(final boolean forceReinit) {
assertNotNull("passwordEncoder", getPasswordEncoder());
assertNotNull("dataSource", this.dataSource);
this.dbi = new DBI(this.dataSource);
defaultProfileDefinition(new CommonProfileDefinition(x -> new DbProfile()));
setSerializer(new JsonSerializer(DbProfile.class));
super.internalInit(forceReinit);
}
use of org.pac4j.sql.profile.DbProfile in project pac4j by pac4j.
the class DbProfileService method internalInit.
@Override
protected void internalInit() {
CommonHelper.assertNotNull("passwordEncoder", getPasswordEncoder());
defaultProfileDefinition(new CommonProfileDefinition<>(x -> new DbProfile()));
CommonHelper.assertNotNull("dataSource", this.dataSource);
this.dbi = new DBI(this.dataSource);
super.internalInit();
}
use of org.pac4j.sql.profile.DbProfile in project pac4j by pac4j.
the class DbProfileServiceTests method testCreateUpdateFindDelete.
@Test
public void testCreateUpdateFindDelete() {
final DbProfile profile = new DbProfile();
profile.setId("" + DB_ID);
profile.setLinkedId(DB_LINKED_ID);
profile.addAttribute(USERNAME, DB_USER);
final DbProfileService dbProfileService = new DbProfileService(ds);
dbProfileService.setPasswordEncoder(DbServer.PASSWORD_ENCODER);
// create
dbProfileService.create(profile, DB_PASS);
// check credentials
final UsernamePasswordCredentials credentials = new UsernamePasswordCredentials(DB_USER, DB_PASS);
dbProfileService.validate(credentials, null);
final CommonProfile profile1 = credentials.getUserProfile();
assertNotNull(profile1);
// check data
final List<Map<String, Object>> results = getData(DB_ID);
assertEquals(1, results.size());
final Map<String, Object> result = results.get(0);
assertEquals(5, result.size());
assertEquals(DB_ID, result.get(ID));
assertEquals(DB_LINKED_ID, result.get(AbstractProfileService.LINKEDID));
assertNotNull(result.get(AbstractProfileService.SERIALIZED_PROFILE));
assertTrue(DbServer.PASSWORD_ENCODER.matches(DB_PASS, (String) result.get(PASSWORD)));
assertEquals(DB_USER, result.get(USERNAME));
// findById
final DbProfile profile2 = dbProfileService.findById("" + DB_ID);
assertEquals("" + DB_ID, profile2.getId());
assertEquals(DB_LINKED_ID, profile2.getLinkedId());
assertEquals(DB_USER, profile2.getUsername());
assertEquals(1, profile2.getAttributes().size());
// update
profile.addAttribute(USERNAME, DB_USER2);
dbProfileService.update(profile, null);
final List<Map<String, Object>> results2 = getData(DB_ID);
assertEquals(1, results2.size());
final Map<String, Object> result2 = results2.get(0);
assertEquals(5, result2.size());
assertEquals(DB_ID, result2.get(ID));
assertEquals(DB_LINKED_ID, result2.get(AbstractProfileService.LINKEDID));
assertNotNull(result2.get(AbstractProfileService.SERIALIZED_PROFILE));
assertTrue(DbServer.PASSWORD_ENCODER.matches(DB_PASS, (String) result2.get(PASSWORD)));
assertEquals(DB_USER2, result2.get(USERNAME));
// remove
dbProfileService.remove(profile);
final List<Map<String, Object>> results3 = getData(DB_ID);
assertEquals(0, results3.size());
}
use of org.pac4j.sql.profile.DbProfile in project pac4j by pac4j.
the class DbProfileServiceTests method testGoodUsernameNoAttribute.
@Test
public void testGoodUsernameNoAttribute() {
final UsernamePasswordCredentials credentials = login(GOOD_USERNAME, PASSWORD, "");
final CommonProfile profile = credentials.getUserProfile();
assertNotNull(profile);
assertTrue(profile instanceof DbProfile);
final DbProfile dbProfile = (DbProfile) profile;
assertEquals(GOOD_USERNAME, dbProfile.getId());
assertNull(dbProfile.getAttribute(FIRSTNAME));
}
Aggregations