]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.server.jcr/src/org/argeo/jackrabbit/unit/AbstractJackrabbitTestCase.java
Introduce Argeo 2 security model-
[lgpl/argeo-commons.git] / org.argeo.server.jcr / src / org / argeo / jackrabbit / unit / AbstractJackrabbitTestCase.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.jackrabbit.unit;
17
18 import javax.jcr.Repository;
19
20 import org.apache.commons.io.FileUtils;
21 import org.apache.jackrabbit.core.RepositoryImpl;
22 import org.apache.jackrabbit.core.config.RepositoryConfig;
23 import org.argeo.jcr.unit.AbstractJcrTestCase;
24
25 /** Factorizes configuration of an in memory transient repository */
26 public abstract class AbstractJackrabbitTestCase extends AbstractJcrTestCase {
27 protected RepositoryImpl repositoryImpl;
28
29 // protected File getRepositoryFile() throws Exception {
30 // Resource res = new ClassPathResource(
31 // "org/argeo/jackrabbit/unit/repository-memory.xml");
32 // return res.getFile();
33 // }
34
35 protected Repository createRepository() throws Exception {
36 // Repository repository = new TransientRepository(getRepositoryFile(),
37 // getHomeDir());
38 RepositoryConfig repositoryConfig = RepositoryConfig.create(
39 AbstractJackrabbitTestCase.class
40 .getResourceAsStream(getRepositoryConfigResource()),
41 getHomeDir().getAbsolutePath());
42 RepositoryImpl repositoryImpl = RepositoryImpl.create(repositoryConfig);
43 return repositoryImpl;
44 }
45
46 protected String getRepositoryConfigResource() {
47 return "repository-memory.xml";
48 }
49
50 @Override
51 protected void clearRepository(Repository repository) throws Exception {
52 RepositoryImpl repositoryImpl = (RepositoryImpl) repository;
53 if (repositoryImpl != null)
54 repositoryImpl.shutdown();
55 FileUtils.deleteDirectory(getHomeDir());
56 }
57
58 }