use of eu.bcvsolutions.idm.core.api.audit.dto.filter.IdmLoggingEventExceptionFilter in project CzechIdMng by bcvsolutions.
the class IdmDbAppenderTest method append.
@Test
public void append() {
final IdmDbAppender appender = new IdmDbAppender(loggingEventService, eventExceptionService, propertyService);
LoggerContext context = new LoggerContext();
final Logger logger = context.getLogger(IdmDbAppenderTest.class);
final RuntimeException runtimeException = new RuntimeException();
runtimeException.setStackTrace(new StackTraceElement[] { new StackTraceElement(IdmDbAppenderTest.class.getCanonicalName(), "test", "file", 0) });
ILoggingEvent loggingEvent = new LoggingEvent(IdmDbAppenderTest.class.getCanonicalName(), logger, Level.ERROR, "TEST", runtimeException, new String[] {});
appender.append(loggingEvent);
IdmLoggingEventFilter eventFilter = new IdmLoggingEventFilter();
eventFilter.setLoggerName(IdmDbAppenderTest.class.getCanonicalName());
final List<IdmLoggingEventDto> foundEvents = loggingEventService.find(eventFilter, null).getContent();
Assert.assertEquals(1, foundEvents.size());
final IdmLoggingEventDto loggingEventDto = foundEvents.get(0);
Assert.assertEquals("TEST", loggingEventDto.getFormattedMessage());
Assert.assertEquals(IdmDbAppenderTest.class.getCanonicalName(), loggingEventDto.getLoggerName());
Assert.assertEquals("ERROR", loggingEventDto.getLevelString().name());
IdmLoggingEventExceptionFilter loggingEventExceptionFilter = new IdmLoggingEventExceptionFilter();
loggingEventExceptionFilter.setEvent((Long) loggingEventDto.getId());
//
final List<IdmLoggingEventExceptionDto> exceptions = eventExceptionService.find(loggingEventExceptionFilter, null).getContent();
Assert.assertEquals(2, exceptions.size());
IdmLoggingEventExceptionDto exceptionDto = exceptions.stream().filter(e -> ((long) e.getId()) == 1l).findFirst().get();
Assert.assertTrue(exceptionDto.getTraceLine().contains("test"));
Assert.assertTrue(exceptionDto.getTraceLine().contains("file"));
Assert.assertTrue(exceptionDto.getTraceLine().contains("0"));
}
use of eu.bcvsolutions.idm.core.api.audit.dto.filter.IdmLoggingEventExceptionFilter in project CzechIdMng by bcvsolutions.
the class DefaultIdmLoggingEventExceptionService method saveInternal.
/**
* Needst to be overriden here, because original implementation from parent cannot handle composite identifier.
*
* @param dto {@link IdmLoggingEventExceptionDto} to save
* @return saved {@link IdmLoggingEventExceptionDto}
*/
@Override
@Transactional
public IdmLoggingEventExceptionDto saveInternal(IdmLoggingEventExceptionDto dto) {
Assert.notNull(dto, "DTO is required for save.");
dto = validateDto(dto);
//
IdmLoggingEventException persistedEntity = null;
if (dto.getId() != null) {
IdmLoggingEventExceptionFilter filter = new IdmLoggingEventExceptionFilter();
filter.setId((Long) dto.getId());
filter.setEvent(dto.getEvent());
persistedEntity = findEntities(filter, PageRequest.of(0, 1)).stream().findFirst().orElse(null);
}
// convert to entity
IdmLoggingEventException entity = toEntity(dto, persistedEntity);
// validate
entity = validateEntity(entity);
// then persist
entity = getRepository().saveAndFlush(entity);
// finally convert to dto
return toDto(entity);
}
use of eu.bcvsolutions.idm.core.api.audit.dto.filter.IdmLoggingEventExceptionFilter in project CzechIdMng by bcvsolutions.
the class DefaultIdmLoggingEventExceptionService method getEntity.
@Override
protected IdmLoggingEventException getEntity(Serializable id, BasePermission... permission) {
Assert.notNull(id, "Identifier is required to load a log event.");
IdmLoggingEventExceptionFilter filter = new IdmLoggingEventExceptionFilter();
filter.setId(Long.valueOf(id.toString()));
List<IdmLoggingEventExceptionDto> entities = this.find(filter, null, permission).getContent();
if (entities.isEmpty()) {
return null;
}
// for given id must found only one entity
IdmLoggingEventException entity = this.toEntity(entities.get(0));
return checkAccess(entity, permission);
}
Aggregations