1 package org.apache.archiva.metadata.repository.jcr;
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
22 import org.apache.archiva.metadata.model.MetadataFacetFactory;
23 import org.apache.archiva.metadata.repository.AbstractMetadataRepositoryTest;
24 import org.apache.commons.io.FileUtils;
25 import org.apache.jackrabbit.oak.segment.file.InvalidFileStoreVersionException;
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.BeforeClass;
29 import org.springframework.context.ApplicationContext;
31 import javax.inject.Inject;
32 import javax.jcr.Repository;
33 import javax.jcr.RepositoryException;
34 import javax.jcr.Session;
36 import java.io.IOException;
39 public class JcrMetadataRepositoryTest
40 extends AbstractMetadataRepositoryTest
42 private JcrMetadataRepository jcrMetadataRepository;
45 private ApplicationContext applicationContext;
47 private static Repository jcrRepository;
50 public static void setupSpec() throws IOException, InvalidFileStoreVersionException
52 File directory = new File( "target/test-repositories" );
53 if ( directory.exists() )
55 FileUtils.deleteDirectory( directory );
57 RepositoryFactory factory = new RepositoryFactory();
58 factory.setRepositoryPath( directory.getPath() );
59 jcrRepository = factory.createRepository();
70 Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
72 // TODO: probably don't need to use Spring for this
73 jcrMetadataRepository = new JcrMetadataRepository( factories, jcrRepository );
77 Session session = jcrMetadataRepository.getJcrSession();
79 // set up namespaces, etc.
80 JcrMetadataRepository.initialize( session );
82 // removing content is faster than deleting and re-copying the files from target/jcr
83 session.getRootNode().getNode( "repositories" ).remove();
86 catch ( RepositoryException e )
91 this.repository = jcrMetadataRepository;
97 public void tearDown()
100 jcrMetadataRepository.close();