use of org.qi4j.bootstrap.Energy4Java in project qi4j-sdk by Qi4j.
the class MixinVisibilityTest method testMixinInModuleIsVisible.
@Test
public void testMixinInModuleIsVisible() 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);
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.Energy4Java in project qi4j-sdk by Qi4j.
the class PrivateCompositeVisibilityTest method testPrivateCompositeVisibility.
@Test(expected = NoSuchTransientException.class)
public void testPrivateCompositeVisibility() throws Exception {
Energy4Java boot = new Energy4Java();
Assembler[][][] assemblers = new Assembler[][][] { { // Layer
{ new AssemblerA() }, { new AssemblerB() } } };
Application app = boot.newApplication(new ApplicationAssemblerAdapter(assemblers) {
});
app.activate();
ObjectA object = app.findModule("Layer 1", "Module A").newObject(ObjectA.class);
object.test();
}
use of org.qi4j.bootstrap.Energy4Java in project qi4j-sdk by Qi4j.
the class StructureTest method createApplicationUsingArrayOfAssemblers.
@Test
public void createApplicationUsingArrayOfAssemblers() throws AssemblyException {
Energy4Java boot = new Energy4Java();
Assembler[][][] assemblers = new Assembler[][][] { { // User Interface layer
{ new ViewAssembler() } }, { // Application layer
{ new DomainApplicationAssembler() } }, { // Domain layer
{ new DomainModelAssembler() } }, { // Infrastructure layer
{ new InfrastructureAssembler() } } };
boot.newApplication(new ApplicationAssemblerAdapter(assemblers) {
});
}
use of org.qi4j.bootstrap.Energy4Java in project qi4j-sdk by Qi4j.
the class StructureTest method createApplicationUsingApplicationAssembly.
@Test
public void createApplicationUsingApplicationAssembly() throws AssemblyException {
Energy4Java boot = new Energy4Java();
boot.newApplication(new ApplicationAssembler() {
public ApplicationAssembly assemble(ApplicationAssemblyFactory applicationFactory) throws AssemblyException {
ApplicationAssembly applicationAssembly = applicationFactory.newApplicationAssembly();
// Application Layer
LayerAssembly applicationLayer = applicationAssembly.layer("Application");
ModuleAssembly applicationModule = applicationLayer.module("Application");
new DomainApplicationAssembler().assemble(applicationModule);
// View Layer
LayerAssembly viewLayer = applicationAssembly.layer("View");
ModuleAssembly viewModule = viewLayer.module("View");
new ViewAssembler().assemble(viewModule);
viewLayer.uses(applicationLayer);
return applicationAssembly;
}
});
}
use of org.qi4j.bootstrap.Energy4Java in project qi4j-sdk by Qi4j.
the class MixinVisibilityTest method testMultipleMixinsInLayerWillFailDiffModule.
@Test(expected = AmbiguousTypeException.class)
public void testMultipleMixinsInLayerWillFailDiffModule() 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.objects(ObjectA.class);
}
} }, { // Module 2
new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.setName("Module B");
module.transients(B1Composite.class).visibleIn(Visibility.layer);
}
} }, { // Module 3
new Assembler() {
public void assemble(ModuleAssembly module) throws AssemblyException {
module.setName("Module C");
module.transients(B2Composite.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