]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - server/runtime/org.argeo.server.jcr/src/test/java/org/argeo/server/jcr/JcrResourceAdapterTest.java
Adapt to JCR 2.0
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.jcr / src / test / java / org / argeo / server / jcr / JcrResourceAdapterTest.java
index 65063e040faa29a0df7e18331a71eb4c13229752..525208c4391edaa477c2ce04418b506e7ab7c202 100644 (file)
@@ -1,3 +1,19 @@
+/*
+ * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package org.argeo.server.jcr;
 
 import java.io.File;
@@ -6,8 +22,6 @@ import java.text.SimpleDateFormat;
 import java.util.Calendar;
 import java.util.List;
 
-import javax.jcr.SimpleCredentials;
-
 import org.apache.commons.io.IOUtils;
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
@@ -75,15 +89,21 @@ public class JcrResourceAdapterTest extends AbstractJcrTestCase {
 
        @Override
        protected void setUp() throws Exception {
+               log.debug("SET UP");
                super.setUp();
                jra = new JcrResourceAdapter();
-               jra.setSession(getRepository().login(
-                               new SimpleCredentials("demo", "demo".toCharArray())));
+               jra.setSession(session());
+       }
+
+       @Override
+       protected void tearDown() throws Exception {
+               log.debug("TEAR DOWN");
+               super.tearDown();
        }
 
        protected File getRepositoryFile() throws Exception {
                Resource res = new ClassPathResource(
-                               "org/argeo/server/jcr/repository-inMemory.xml");
+                               "org/argeo/server/jcr/repository.xml");
                return res.getFile();
        }