X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.server.jcr%2Fsrc%2Forg%2Fargeo%2Fjcr%2Funit%2FAbstractJcrTestCase.java;h=ca32f7df0b359fdc8a0f4ed72581348b1c03389c;hb=2e7b5578166da0854f29b69b1d2f25ee102d0d85;hp=530605eac6d4a62c4a8a366ac833d2a3576755d7;hpb=7a9cd8bfb3564d72c6e26774fe83eaec1454bfff;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.server.jcr/src/org/argeo/jcr/unit/AbstractJcrTestCase.java b/org.argeo.server.jcr/src/org/argeo/jcr/unit/AbstractJcrTestCase.java index 530605eac..ca32f7df0 100644 --- a/org.argeo.server.jcr/src/org/argeo/jcr/unit/AbstractJcrTestCase.java +++ b/org.argeo.server.jcr/src/org/argeo/jcr/unit/AbstractJcrTestCase.java @@ -34,10 +34,13 @@ public abstract class AbstractJcrTestCase extends TestCase { private Repository repository; private Session session = null; - protected abstract File getRepositoryFile() throws Exception; +// protected abstract File getRepositoryFile() throws Exception; protected abstract Repository createRepository() throws Exception; + protected abstract void clearRepository(Repository repository) + throws Exception; + @Override protected void setUp() throws Exception { File homeDir = getHomeDir(); @@ -45,27 +48,21 @@ public abstract class AbstractJcrTestCase extends TestCase { repository = createRepository(); } - protected File getHomeDir() { - File homeDir = new File(System.getProperty("java.io.tmpdir"), - AbstractJcrTestCase.class.getSimpleName() + "-" - + System.getProperty("user.name")); - return homeDir; - } - @Override protected void tearDown() throws Exception { if (session != null) { session.logout(); - if (log.isDebugEnabled()) - log.debug("Logout session"); + if (log.isTraceEnabled()) + log.trace("Logout session"); } + clearRepository(repository); } protected Session session() { - if (session == null) { + if (session == null || !session.isLive()) { try { - if (log.isDebugEnabled()) - log.debug("Login session"); + if (log.isTraceEnabled()) + log.trace("Login session"); session = getRepository().login( new SimpleCredentials("demo", "demo".toCharArray())); } catch (Exception e) { @@ -83,7 +80,39 @@ public abstract class AbstractJcrTestCase extends TestCase { * enables children class to set an existing repository in case it is not * deleted on startup, to test migration by instance */ - protected void setRepository(Repository repository) { + public void setRepository(Repository repository) { this.repository = repository; } + + // public void logout() { + // if (session != null && session.isLive()) + // JcrUtils.logoutQuietly(session); + // } + // + // protected static TestSuite defaultTestSuite(Class + // clss) { + // String testSuiteClassName = + // "org.argeo.jackrabbit.unit.JackrabbitTestSuite"; + // try { + // Class testSuiteClass = AbstractJcrTestCase.class + // .getClassLoader().loadClass(testSuiteClassName); + // if (clss == null) { + // return (TestSuite) testSuiteClass.newInstance(); + // } else { + // return (TestSuite) testSuiteClass.getConstructor(Class.class) + // .newInstance(clss); + // } + // } catch (Exception e) { + // throw new ArgeoException("Cannot find default test suite " + // + testSuiteClassName, e); + // } + // } + + protected File getHomeDir() { + File homeDir = new File(System.getProperty("java.io.tmpdir"), + AbstractJcrTestCase.class.getSimpleName() + "-" + + System.getProperty("user.name")); + return homeDir; + } + }