use of eu.ggnet.dwoss.spec.ee.entity.Monitor in project dwoss by gg-net.
the class PersistenceIT method testPersistence.
@Test
public void testPersistence() throws Exception {
utx.begin();
em.joinTransaction();
// A Notebook
ProductSeries ps = new ProductSeries(TradeName.ACER, ProductGroup.NOTEBOOK, "TravelMate");
em.persist(ps);
ProductFamily pf = new ProductFamily("TravelMate 8700");
pf.setSeries(ps);
em.persist(pf);
ProductModel pm = new ProductModel("TravelMate 8741-81222132");
pm.setFamily(pf);
em.persist(pm);
Notebook notebook = new Notebook();
notebook.setPartNo("LX.AAAAA.BBB");
notebook.setModel(pm);
notebook.setVideoPorts(EnumSet.allOf(BasicSpec.VideoPort.class));
notebook.setComment("Ein Kommentar");
notebook.setCpu(new Cpu(Cpu.Series.CORE, "Eine CPU", Cpu.Type.MOBILE, 123.1, 2));
notebook.setGpu(new Gpu(Gpu.Type.MOBILE, Gpu.Series.RADEON_HD_4000, "Eine Graphiccarte"));
notebook.setOs(Desktop.Os.LINUX);
notebook.setMemory(12345);
notebook.add(Desktop.Hdd.ROTATING_0500);
notebook.add(Desktop.Odd.BLURAY_COMBO);
notebook.setExtras(Desktop.Extra.KAMERA);
notebook.setDisplay(new Display(Display.Size._10_1, Display.Resolution.VGA, Display.Type.MATT, Display.Ration.FOUR_TO_THREE));
em.persist(notebook);
// An AllInOne
ps = new ProductSeries(TradeName.ACER, ProductGroup.ALL_IN_ONE, "AllInOne");
em.persist(ps);
pf = new ProductFamily("Z5600");
pf.setSeries(ps);
em.persist(pf);
pm = new ProductModel("Z6523");
pm.setFamily(pf);
em.persist(pm);
Notebook allInOne = new Notebook();
allInOne.setPartNo("PX.AASAA.BBB");
allInOne.setModel(pm);
allInOne.setVideoPorts(EnumSet.allOf(BasicSpec.VideoPort.class));
allInOne.setComment("Ein Kommentar");
allInOne.setCpu(new Cpu(Cpu.Series.CELERON, "Eine CPU", Cpu.Type.MOBILE, 123.1, 2));
allInOne.setGpu(new Gpu(Gpu.Type.MOBILE, Gpu.Series.RADEON_HD_4000, "Eine Graphiccarte"));
allInOne.setOs(Desktop.Os.LINUX);
allInOne.setMemory(12345);
allInOne.add(Desktop.Hdd.ROTATING_0500);
allInOne.add(Desktop.Odd.BLURAY_COMBO);
allInOne.setExtras(Desktop.Extra.KAMERA);
allInOne.setDisplay(new Display(Display.Size._10_1, Display.Resolution.VGA, Display.Type.MATT, Display.Ration.FOUR_TO_THREE));
em.persist(allInOne);
// A Desktop
ProductSeries veriton = new ProductSeries(TradeName.ACER, ProductGroup.DESKTOP, "Veriton");
em.persist(veriton);
ProductFamily m400 = new ProductFamily("M400");
m400.setSeries(veriton);
em.persist(m400);
ProductModel M480G = new ProductModel("M480G");
M480G.setFamily(m400);
em.persist(M480G);
Gpu gpu = new Gpu(Gpu.Type.MOBILE, Gpu.Series.RADEON_HD_4000, "Eine Graphiccarte");
em.persist(gpu);
Cpu cpu = new Cpu(Cpu.Series.CORE, "Eine CPU", Cpu.Type.MOBILE, 123.1, 2);
cpu.setEmbeddedGpu(gpu);
em.persist(cpu);
Desktop M480G_1 = new Desktop("PX.99999.321", 2L);
M480G_1.setModel(M480G);
M480G_1.setVideoPorts(EnumSet.allOf(BasicSpec.VideoPort.class));
M480G_1.setComment("Ein Kommentar");
M480G_1.setCpu(cpu);
M480G_1.setGpu(gpu);
M480G_1.setOs(Desktop.Os.LINUX);
M480G_1.setMemory(12345);
M480G_1.add(Desktop.Hdd.ROTATING_0500);
M480G_1.add(Desktop.Odd.BLURAY_COMBO);
M480G_1.setExtras(Desktop.Extra.KAMERA);
em.persist(M480G_1);
// A Monitor
ProductSeries a = new ProductSeries(TradeName.ACER, ProductGroup.MONITOR, "A");
em.persist(a);
ProductFamily a230 = new ProductFamily("A230");
a230.setSeries(a);
em.persist(a230);
ProductModel a231Hbmd = new ProductModel("A231Hbmd");
a231Hbmd.setFamily(a230);
em.persist(a231Hbmd);
Monitor A231spec = new Monitor(new Display(Display.Size._11_6, Display.Resolution.VGA, Display.Type.CRYSTAL_BRIGHT, Display.Ration.SIXTEEN_TO_NINE));
A231spec.setModel(a231Hbmd);
A231spec.setPartNo("ET.VA1HE.008");
A231spec.setProductId(3L);
A231spec.setVideoPorts(EnumSet.allOf(BasicSpec.VideoPort.class));
A231spec.setComment("Ein Kommentar");
em.persist(A231spec);
// A Bundle
ProductSeries box = new ProductSeries(TradeName.ACER, ProductGroup.DESKTOP_BUNDLE, "Veriton");
em.persist(box);
ProductFamily boxf = new ProductFamily("M480");
boxf.setSeries(box);
em.persist(boxf);
ProductModel boxm = new ProductModel("M480G + A231MuhMäh");
boxm.setFamily(boxf);
em.persist(boxm);
DesktopBundle bundle = new DesktopBundle();
bundle.setPartNo("BL.32199.321");
bundle.setProductId(1L);
bundle.setDesktop(M480G_1);
bundle.setMonitor(A231spec);
bundle.setModel(boxm);
em.persist(bundle);
utx.commit();
utx.begin();
em.joinTransaction();
CriteriaQuery<ProductSeries> cq = em.getCriteriaBuilder().createQuery(ProductSeries.class);
cq.select(cq.from(ProductSeries.class));
List<ProductSeries> serieses = em.createQuery(cq).getResultList();
assertFalse(serieses.isEmpty());
for (ProductSeries series : serieses) {
assertNotNull(series.getFamilys());
assertFalse(series.getFamilys().isEmpty());
for (ProductFamily family : series.getFamilys()) {
assertNotNull(family.getModels());
assertFalse(family.getModels().isEmpty());
for (ProductModel model : family.getModels()) {
assertNotNull(model.getSpecs());
assertFalse(model.getSpecs().isEmpty());
for (ProductSpec spec : model.getSpecs()) {
assertNotNull(spec.getPartNo());
assertNotNull(spec.getModel());
assertNotNull(spec.getModel().getFamily());
assertNotNull(spec.getModel().getFamily().getSeries());
assertNotNull(spec.getModel().getFamily().getSeries().getBrand());
assertNotNull(spec.getModel().getFamily().getSeries().getGroup());
}
}
}
}
utx.commit();
}
use of eu.ggnet.dwoss.spec.ee.entity.Monitor in project dwoss by gg-net.
the class SpecTest method testMonitor.
@Test
public void testMonitor() {
Display display = new Display(Display.Size._19, Display.Resolution.VGA, Display.Type.MATT, Display.Ration.FOUR_TO_THREE);
Monitor monitor = new Monitor(display);
monitor.setColor(BasicSpec.Color.RED);
monitor.setModel(basicSpec.getModel());
monitor.setPartNo(basicSpec.getPartNo());
monitor.setComment("TestBasicMonitor");
monitor.setExtras(ProductSpec.Extra.KAMERA, ProductSpec.Extra.CONVERTABLE);
assertTrue("ViolationException: Monitor look like this: " + monitor.toString() + "\nViolations: " + ConstraintViolationFormater.toSingleLine(validator.validate(monitor)), validator.validate(monitor).isEmpty());
}
use of eu.ggnet.dwoss.spec.ee.entity.Monitor in project dwoss by gg-net.
the class MonitorView method getSpec.
@Override
public Monitor getSpec() {
Monitor monitor = (Monitor) basicView.getSpec();
monitor.setDisplay(displayView.getDisplay());
return monitor;
}
Aggregations