use of org.hibernate.tool.hbm2x.ArtifactCollector in project jbosstools-hibernate by jbosstools.
the class ArtifactCollectorFacadeTest method setUp.
@Before
public void setUp() throws Exception {
ProxyFactory proxyFactory = new ProxyFactory();
proxyFactory.setSuperclass(ArtifactCollector.class);
Class<?> proxyClass = proxyFactory.createClass();
ProxyObject proxy = (ProxyObject) proxyClass.newInstance();
proxy.setHandler(new MethodHandler() {
@Override
public Object invoke(Object self, Method m, Method proceed, Object[] args) throws Throwable {
if (methodName == null) {
methodName = m.getName();
}
if (arguments == null) {
arguments = args;
}
return proceed.invoke(self, args);
}
});
artifactCollector = new AbstractArtifactCollectorFacade(FACADE_FACTORY, (ArtifactCollector) proxy) {
};
reset();
}
use of org.hibernate.tool.hbm2x.ArtifactCollector in project jbosstools-hibernate by jbosstools.
the class ExporterFacadeTest method testSetArtifactCollector.
@Test
public void testSetArtifactCollector() {
ArtifactCollector ac = new ArtifactCollector();
IArtifactCollector artifactCollector = new AbstractArtifactCollectorFacade(FACADE_FACTORY, ac) {
};
exporterFacade.setArtifactCollector(artifactCollector);
Assert.assertEquals("setArtifactCollector", methodName);
Assert.assertArrayEquals(new Object[] { ac }, arguments);
}
use of org.hibernate.tool.hbm2x.ArtifactCollector in project jbosstools-hibernate by jbosstools.
the class ExporterFacadeTest method testStart.
@Test
public void testStart() throws Exception {
Exporter exporter = new AbstractExporter() {
@Override
protected void doStart() {
methodName = "start";
}
};
ArtifactCollector artifactCollector = new ArtifactCollector();
File testFile = File.createTempFile("test", "xml");
FileWriter writer = new FileWriter(testFile);
writer.write("<test/>");
writer.flush();
writer.close();
artifactCollector.addFile(testFile, "xml");
exporter.setArtifactCollector(artifactCollector);
exporterFacade = new AbstractExporterFacade(FACADE_FACTORY, exporter) {
};
exporterFacade.start();
Assert.assertEquals("start", methodName);
}
use of org.hibernate.tool.hbm2x.ArtifactCollector in project jbosstools-hibernate by jbosstools.
the class HibernateMappingExporterExtensionTest method testSuperExportPOJO.
@Test
public void testSuperExportPOJO() {
ArtifactCollector artifactCollector = new ArtifactCollector();
hibernateMappingExporterExtension.setArtifactCollector(artifactCollector);
File[] hbmXmlFiles = artifactCollector.getFiles("hbm.xml");
Assert.assertTrue(hbmXmlFiles.length == 0);
Assert.assertFalse(new File("foo" + File.separator + "Bar.hbm.xml").exists());
Map<String, Object> additionalContext = new HashMap<String, Object>();
Cfg2HbmTool c2h = new Cfg2HbmTool();
additionalContext.put("date", new Date().toString());
additionalContext.put("version", Version.getDefault().toString());
additionalContext.put("c2h", c2h);
hibernateMappingExporterExtension.superExportPOJO(additionalContext, pojoClass);
hbmXmlFiles = artifactCollector.getFiles("hbm.xml");
Assert.assertTrue(hbmXmlFiles.length == 1);
Assert.assertEquals("foo" + File.separator + "Bar.hbm.xml", hbmXmlFiles[0].getPath());
Assert.assertTrue(new File("foo" + File.separator + "Bar.hbm.xml").exists());
}
use of org.hibernate.tool.hbm2x.ArtifactCollector in project jbosstools-hibernate by jbosstools.
the class HibernateMappingExporterExtensionTest method testExportPOJO.
@Test
public void testExportPOJO() throws Exception {
// first without a delegate exporter
ArtifactCollector artifactCollector = new ArtifactCollector();
hibernateMappingExporterExtension.setArtifactCollector(artifactCollector);
File[] hbmXmlFiles = artifactCollector.getFiles("hbm.xml");
Assert.assertTrue(hbmXmlFiles.length == 0);
Assert.assertFalse(new File("foo" + File.separator + "Bar.hbm.xml").exists());
Map<Object, Object> additionalContext = new HashMap<Object, Object>();
Cfg2HbmTool c2h = new Cfg2HbmTool();
additionalContext.put("date", new Date().toString());
additionalContext.put("version", Version.getDefault().toString());
additionalContext.put("c2h", c2h);
hibernateMappingExporterExtension.exportPOJO(additionalContext, pojoClass);
hbmXmlFiles = artifactCollector.getFiles("hbm.xml");
Assert.assertTrue(hbmXmlFiles.length == 1);
Assert.assertEquals("foo" + File.separator + "Bar.hbm.xml", hbmXmlFiles[0].getPath());
Assert.assertTrue(new File("foo" + File.separator + "Bar.hbm.xml").exists());
Assert.assertNull(methodName);
Assert.assertNull(arguments);
// then with a delegate exporter
artifactCollector = new ArtifactCollector();
hibernateMappingExporterExtension.setArtifactCollector(artifactCollector);
hbmXmlFiles = artifactCollector.getFiles("hbm.xml");
Assert.assertTrue(hbmXmlFiles.length == 0);
Field delegateField = HibernateMappingExporterExtension.class.getDeclaredField("delegateExporter");
delegateField.setAccessible(true);
delegateField.set(hibernateMappingExporterExtension, exportPojoDelegate);
hibernateMappingExporterExtension.exportPOJO(additionalContext, pojoClass);
Assert.assertTrue(hbmXmlFiles.length == 0);
Assert.assertEquals("exportPOJO", methodName);
Assert.assertSame(additionalContext, arguments[0]);
Assert.assertSame(pojoClass, ((IFacade) arguments[1]).getTarget());
}
Aggregations