X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=server%2Fruntime%2Forg.argeo.server.jcr%2Fsrc%2Ftest%2Fjava%2Forg%2Fargeo%2Fserver%2Fjcr%2FJcrResourceAdapterTest.java;h=525208c4391edaa477c2ce04418b506e7ab7c202;hb=462f742349458e2bc907e0d7f6bb76012caf2a3b;hp=65063e040faa29a0df7e18331a71eb4c13229752;hpb=0e11f046c7af8c6b95aa7372bd912455b40955d5;p=lgpl%2Fargeo-commons.git diff --git a/server/runtime/org.argeo.server.jcr/src/test/java/org/argeo/server/jcr/JcrResourceAdapterTest.java b/server/runtime/org.argeo.server.jcr/src/test/java/org/argeo/server/jcr/JcrResourceAdapterTest.java index 65063e040..525208c43 100644 --- a/server/runtime/org.argeo.server.jcr/src/test/java/org/argeo/server/jcr/JcrResourceAdapterTest.java +++ b/server/runtime/org.argeo.server.jcr/src/test/java/org/argeo/server/jcr/JcrResourceAdapterTest.java @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2010 Mathieu Baudier + * + * 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(); }