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.junit.After;
26 import org.junit.Before;
27 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 public class JcrMetadataRepositoryTest
37 extends AbstractMetadataRepositoryTest
39 private JcrMetadataRepository jcrMetadataRepository;
42 private ApplicationContext applicationContext;
50 File directory = new File( "target/test-repositories" );
51 if (directory.exists())
53 FileUtils.deleteDirectory( directory );
56 Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
58 // TODO: probably don't need to use Spring for this
59 Repository repository = applicationContext.getBean( Repository.class );
60 jcrMetadataRepository = new JcrMetadataRepository( factories, repository );
64 Session session = jcrMetadataRepository.getJcrSession();
66 // set up namespaces, etc.
67 JcrMetadataRepository.initialize( session );
69 // removing content is faster than deleting and re-copying the files from target/jcr
70 session.getRootNode().getNode( "repositories" ).remove();
72 catch ( RepositoryException e )
77 this.repository = jcrMetadataRepository;
81 public void tearDown()
84 jcrMetadataRepository.close();