@Test public void update_characteristics_when_restoring_characteristics() { when(dao.selectEnabledCharacteristics(session)) .thenReturn( newArrayList( // Order and name have changed new CharacteristicDto() .setId(1) .setKey("PORTABILITY") .setName("Portability updated") .setOrder(2) .setCreatedAt(oldDate) .setUpdatedAt(oldDate), new CharacteristicDto() .setId(2) .setKey("COMPILER") .setName("Compiler updated") .setParentId(1) .setCreatedAt(oldDate) .setUpdatedAt(oldDate))); debtModelBackup.restoreCharacteristics( new DebtModel() .addRootCharacteristic( new DefaultDebtCharacteristic() .setKey("PORTABILITY") .setName("Portability") .setOrder(1)) .addSubCharacteristic( new DefaultDebtCharacteristic().setKey("COMPILER").setName("Compiler"), "PORTABILITY"), now, session); verify(dao, times(2)).update(characteristicCaptor.capture(), eq(session)); CharacteristicDto dto1 = characteristicCaptor.getAllValues().get(0); assertThat(dto1.getId()).isEqualTo(1); assertThat(dto1.getKey()).isEqualTo("PORTABILITY"); assertThat(dto1.getName()).isEqualTo("Portability"); assertThat(dto1.getParentId()).isNull(); assertThat(dto1.getOrder()).isEqualTo(1); assertThat(dto1.getCreatedAt()).isEqualTo(oldDate); assertThat(dto1.getUpdatedAt()).isEqualTo(now); CharacteristicDto dto2 = characteristicCaptor.getAllValues().get(1); assertThat(dto2.getId()).isEqualTo(2); assertThat(dto2.getKey()).isEqualTo("COMPILER"); assertThat(dto2.getName()).isEqualTo("Compiler"); assertThat(dto2.getParentId()).isEqualTo(1); assertThat(dto2.getOrder()).isNull(); assertThat(dto2.getCreatedAt()).isEqualTo(oldDate); assertThat(dto2.getUpdatedAt()).isEqualTo(now); }
private CharacteristicDto restoreCharacteristic( DebtCharacteristic targetCharacteristic, @Nullable Integer parentId, List<CharacteristicDto> sourceCharacteristics, Date updateDate, DbSession session) { CharacteristicDto sourceCharacteristic = characteristicByKey(targetCharacteristic.key(), sourceCharacteristics, false); if (sourceCharacteristic == null) { CharacteristicDto newCharacteristic = toDto(targetCharacteristic, parentId).setCreatedAt(updateDate); dbClient.debtCharacteristicDao().insert(newCharacteristic, session); return newCharacteristic; } else { // Update only if modifications if (ObjectUtils.notEqual(sourceCharacteristic.getName(), targetCharacteristic.name()) || ObjectUtils.notEqual(sourceCharacteristic.getOrder(), targetCharacteristic.order()) || ObjectUtils.notEqual(sourceCharacteristic.getParentId(), parentId)) { sourceCharacteristic.setName(targetCharacteristic.name()); sourceCharacteristic.setOrder(targetCharacteristic.order()); sourceCharacteristic.setParentId(parentId); sourceCharacteristic.setUpdatedAt(updateDate); dbClient.debtCharacteristicDao().update(sourceCharacteristic, session); } return sourceCharacteristic; } }
private static DebtCharacteristic toDebtCharacteristic(CharacteristicDto characteristic) { return new DefaultDebtCharacteristic() .setId(characteristic.getId()) .setKey(characteristic.getKey()) .setName(characteristic.getName()) .setOrder(characteristic.getOrder()) .setParentId(characteristic.getParentId()) .setCreatedAt(characteristic.getCreatedAt()) .setUpdatedAt(characteristic.getUpdatedAt()); }
@Test public void create_characteristics_when_restoring_characteristics() { when(dao.selectEnabledCharacteristics(session)) .thenReturn(Collections.<CharacteristicDto>emptyList()); debtModelBackup.restoreCharacteristics( new DebtModel() .addRootCharacteristic( new DefaultDebtCharacteristic() .setKey("PORTABILITY") .setName("Portability") .setOrder(1)) .addSubCharacteristic( new DefaultDebtCharacteristic().setKey("COMPILER").setName("Compiler"), "PORTABILITY"), now, session); verify(dao, times(2)).insert(characteristicCaptor.capture(), eq(session)); CharacteristicDto dto1 = characteristicCaptor.getAllValues().get(0); assertThat(dto1.getId()).isEqualTo(10); assertThat(dto1.getKey()).isEqualTo("PORTABILITY"); assertThat(dto1.getName()).isEqualTo("Portability"); assertThat(dto1.getParentId()).isNull(); assertThat(dto1.getOrder()).isEqualTo(1); assertThat(dto1.getCreatedAt()).isEqualTo(now); assertThat(dto1.getUpdatedAt()).isNull(); CharacteristicDto dto2 = characteristicCaptor.getAllValues().get(1); assertThat(dto2.getId()).isEqualTo(11); assertThat(dto2.getKey()).isEqualTo("COMPILER"); assertThat(dto2.getName()).isEqualTo("Compiler"); assertThat(dto2.getParentId()).isEqualTo(10); assertThat(dto2.getOrder()).isNull(); assertThat(dto2.getCreatedAt()).isEqualTo(now); assertThat(dto2.getUpdatedAt()).isNull(); }