use of org.qi4j.api.unitofwork.UnitOfWork in project qi4j-sdk by Qi4j.
the class ValueToEntityTest method givenQualifiedValueNotFromSameInterfaceWhenCreatingEntityExpectNonOptionalException.
@Test(expected = ConstraintViolationException.class)
public void givenQualifiedValueNotFromSameInterfaceWhenCreatingEntityExpectNonOptionalException() throws UnitOfWorkCompletionException {
ValueBuilder<PersonValue4> builder = module.newValueBuilder(PersonValue4.class);
builder.prototype().firstName().set("Ed");
builder.prototype().lastName().set("Flintstone");
builder.prototype().dateOfBirth().set(someBirthDate);
builder.prototype().spouse().set(ednaIdentity);
builder.prototype().children().set(Arrays.asList(zekeIdentity, fredIdentity));
PersonValue4 edValue = builder.newInstance();
try (UnitOfWork uow = module.newUnitOfWork(newUsecase("CreatingEntityFromUnqualifiedValue"))) {
ValueToEntity conversion = module.findService(ValueToEntity.class).get();
PersonEntity edEntity = conversion.create(PersonEntity.class, "id:Ed", edValue);
uow.complete();
}
}
use of org.qi4j.api.unitofwork.UnitOfWork in project qi4j-sdk by Qi4j.
the class ValueToEntityTest method givenQualifiedValueNotFromSameInterfaceWhenUpdatingEntityExpectPropsNotUpdated.
@Test
public void givenQualifiedValueNotFromSameInterfaceWhenUpdatingEntityExpectPropsNotUpdated() throws UnitOfWorkCompletionException {
String rickyIdentity;
try (UnitOfWork uow = module.newUnitOfWork(newUsecase("CreateRickySlaghoopleWithTypo"))) {
PersonEntity ricky = createPerson(uow, "Ricky", "Slaghople", someBirthDate);
ricky.spouse().set(uow.get(PersonEntity.class, ednaIdentity));
ricky.children().add(uow.get(PersonEntity.class, zekeIdentity));
rickyIdentity = ricky.identity().get();
assertThat(ricky.spouse().get(), notNullValue());
assertThat(ricky.children().count(), is(1));
uow.complete();
}
ValueBuilder<PersonValue4> builder = module.newValueBuilder(PersonValue4.class);
builder.prototype().firstName().set("Ricky");
builder.prototype().lastName().set("Slaghoople");
builder.prototype().dateOfBirth().set(someBirthDate);
PersonValue4 newStateValue = builder.newInstance();
try (UnitOfWork uow = module.newUnitOfWork(newUsecase("UpdateRickySlaghoopleWontWork"))) {
PersonEntity ricky = uow.get(PersonEntity.class, rickyIdentity);
ValueToEntity conversion = module.findService(ValueToEntity.class).get();
conversion.update(ricky, newStateValue);
assertThat(ricky.lastName(), equalTo("Slaghople"));
assertThat(ricky.spouse().get(), nullValue());
assertThat(ricky.children().count(), is(0));
uow.complete();
}
}
use of org.qi4j.api.unitofwork.UnitOfWork in project qi4j-sdk by Qi4j.
the class ValueToEntityTest method givenUnqualifiedValueWhenUpdatingEntityExpectCorrectEntity.
@Test
public void givenUnqualifiedValueWhenUpdatingEntityExpectCorrectEntity() throws UnitOfWorkCompletionException {
String rickyIdentity;
try (UnitOfWork uow = module.newUnitOfWork(newUsecase("CreateRickySlaghoopleWithTypo"))) {
PersonEntity ricky = createPerson(uow, "Ricky", "Slaghople", someBirthDate);
ricky.spouse().set(uow.get(PersonEntity.class, ednaIdentity));
ricky.children().add(uow.get(PersonEntity.class, zekeIdentity));
rickyIdentity = ricky.identity().get();
assertThat(ricky.spouse().get(), notNullValue());
assertThat(ricky.children().count(), is(1));
uow.complete();
}
ValueBuilder<PersonValue2> builder = module.newValueBuilder(PersonValue2.class);
builder.prototype().firstName().set("Ricky");
builder.prototype().lastName().set("Slaghoople");
builder.prototype().dateOfBirth().set(someBirthDate);
PersonValue2 newStateValue = builder.newInstance();
try (UnitOfWork uow = module.newUnitOfWork(newUsecase("UpdateRickySlaghoople"))) {
PersonEntity ricky = uow.get(PersonEntity.class, rickyIdentity);
ValueToEntity conversion = module.findService(ValueToEntity.class).get();
conversion.update(ricky, newStateValue);
assertThat(ricky.lastName(), equalTo("Slaghoople"));
assertThat(ricky.spouse().get(), nullValue());
assertThat(ricky.children().count(), is(0));
uow.complete();
}
}
use of org.qi4j.api.unitofwork.UnitOfWork in project qi4j-sdk by Qi4j.
the class StandardAlarmModelTest method createAlarm.
private AlarmPoint createAlarm(String name) {
UnitOfWork uow = module.currentUnitOfWork();
EntityBuilder<AlarmPoint> builder = uow.newEntityBuilder(AlarmPoint.class);
builder.instance().category().set(createCategory("StandardModelTest"));
AlarmPoint.AlarmState state = builder.instanceFor(AlarmPoint.AlarmState.class);
state.currentStatus().set(createStatus(AlarmPoint.STATUS_NORMAL));
state.description().set("Test Description");
state.systemName().set(name);
return builder.newInstance();
}
use of org.qi4j.api.unitofwork.UnitOfWork in project qi4j-sdk by Qi4j.
the class StandardAlarmModelTest method tearDown.
@Override
public void tearDown() throws Exception {
UnitOfWork uow = module.currentUnitOfWork();
if (uow != null) {
uow.discard();
}
super.tearDown();
}
Aggregations