use of org.qi4j.bootstrap.Assembler in project qi4j-sdk by Qi4j.
the class TransientVisibilityTest method setup.
@Before
public void setup() throws Exception {
qi4j = new Energy4Java();
Assembler[][][] assemblers = new Assembler[][][] { { // Layer Above
{ new AboveAssembler() } }, { // Layer From
{ // From Module
new FromAssembler() }, { // Beside Module
new BesideAssembler() } }, { // Layer Below
{ new BelowAssembler() } } };
app = qi4j.newApplication(new ApplicationAssemblerAdapter(assemblers) {
});
app.activate();
module = app.findModule("From Layer", "From");
}
use of org.qi4j.bootstrap.Assembler in project qi4j-sdk by Qi4j.
the class PrivateEntityUnitOfWorkTest method givenAppWithPrivateEntityWhenUnitOfWorkCanSeeItThenCanCommit.
@Test
public void givenAppWithPrivateEntityWhenUnitOfWorkCanSeeItThenCanCommit() throws Exception {
System.setProperty("qi4j.compacttrace", "off");
Energy4Java is = new Energy4Java();
Application app = is.newApplication(new ApplicationAssembler() {
public ApplicationAssembly assemble(ApplicationAssemblyFactory applicationFactory) throws AssemblyException {
return applicationFactory.newApplicationAssembly(new Assembler[][][] { { { new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.objects(PrivateEntityUnitOfWorkTest.class);
}
} } }, { { new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.entities(ProductEntity.class);
module.entities(ProductCatalogEntity.class).visibleIn(application);
module.values(ProductInfo.class);
new EntityTestAssembler().assemble(module);
}
} } } });
}
});
app.activate();
Module module = app.findModule("Layer 1", "Module 1");
module.injectTo(this);
UnitOfWork unitOfWork = uowf.newUnitOfWork();
try {
unitOfWork.newEntity(ProductEntity.class);
fail("Should not be able to create product here");
} catch (EntityTypeNotFoundException e) {
// Ok
ProductCatalog catalog = unitOfWork.newEntity(ProductCatalog.class, "1");
unitOfWork.complete();
}
unitOfWork = uowf.newUnitOfWork();
String id;
try {
ProductCatalog catalog = unitOfWork.get(ProductCatalog.class, "1");
id = ((Identity) catalog.newProduct()).identity().get();
unitOfWork.complete();
} finally {
unitOfWork.discard();
}
unitOfWork = module.newUnitOfWork();
try {
ProductCatalog catalog = unitOfWork.get(ProductCatalog.class, "1");
Product product = catalog.findProduct(id);
product.price().set(100);
unitOfWork.complete();
} finally {
unitOfWork.discard();
}
}
use of org.qi4j.bootstrap.Assembler in project qi4j-sdk by Qi4j.
the class ValueVisibilityTest method setup.
@Before
public void setup() throws Exception {
qi4j = new Energy4Java();
Assembler[][][] assemblers = new Assembler[][][] { { // Layer Above
{ new AboveAssembler() } }, { // Layer From
{ // From Module
new FromAssembler() }, { // Beside Module
new BesideAssembler() } }, { // Layer Below
{ new BelowAssembler() } } };
app = qi4j.newApplication(new ApplicationAssemblerAdapter(assemblers) {
});
app.activate();
module = app.findModule("From Layer", "From");
}
use of org.qi4j.bootstrap.Assembler in project qi4j-sdk by Qi4j.
the class MixinVisibilityTest method testMultipleMixinsInModuleWillFail.
@Test(expected = AmbiguousTypeException.class)
public void testMultipleMixinsInModuleWillFail() throws Exception {
Energy4Java boot = new Energy4Java();
Assembler[][][] assemblers = new Assembler[][][] { { // Layer
{ // Module 1
new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.setName("Module A");
module.transients(B1Composite.class, B2Composite.class);
module.objects(ObjectA.class);
}
} } } };
Application app = boot.newApplication(new ApplicationAssemblerAdapter(assemblers) {
});
app.activate();
ObjectA object = app.findModule("Layer 1", "Module A").newObject(ObjectA.class);
assertEquals("ok", object.test1());
assertEquals("abc", object.test2());
}
use of org.qi4j.bootstrap.Assembler in project qi4j-sdk by Qi4j.
the class MixinVisibilityTest method testMixinInLayerIsVisible.
@Test
public void testMixinInLayerIsVisible() throws Exception {
Energy4Java boot = new Energy4Java();
Assembler[][][] assemblers = new Assembler[][][] { { // Layer
{ new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.setName("Module A");
module.objects(ObjectA.class);
}
} }, { new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.setName("Module B");
module.transients(B1Composite.class).visibleIn(Visibility.layer);
}
} } } };
Application app = boot.newApplication(new ApplicationAssemblerAdapter(assemblers) {
});
app.activate();
ObjectA object = app.findModule("Layer 1", "Module A").newObject(ObjectA.class);
assertEquals("ok", object.test1());
assertEquals("abc", object.test2());
}
Aggregations