View Javadoc
1   package org.apache.archiva.metadata.repository.jcr;
2   
3   /*
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
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
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
19   * under the License.
20   */
21  
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.junit.Test;
28  import org.springframework.context.ApplicationContext;
29  
30  import java.io.File;
31  import java.util.Map;
32  import javax.inject.Inject;
33  import javax.jcr.Repository;
34  import javax.jcr.RepositoryException;
35  import javax.jcr.Session;
36  
37  public class JcrMetadataRepositoryTest
38      extends AbstractMetadataRepositoryTest
39  {
40      private JcrMetadataRepository jcrMetadataRepository;
41  
42      @Inject
43      private ApplicationContext applicationContext;
44  
45      @Before
46      @Override
47      public void setUp()
48          throws Exception
49      {
50          super.setUp();
51  
52          File directory = new File( "target/test-repositories" );
53          if ( directory.exists() )
54          {
55              FileUtils.deleteDirectory( directory );
56          }
57  
58          Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
59  
60          // TODO: probably don't need to use Spring for this
61          Repository repository = applicationContext.getBean( Repository.class );
62          jcrMetadataRepository = new JcrMetadataRepository( factories, repository );
63  
64          try
65          {
66              Session session = jcrMetadataRepository.getJcrSession();
67  
68              // set up namespaces, etc.
69              JcrMetadataRepository.initialize( session );
70  
71              // removing content is faster than deleting and re-copying the files from target/jcr
72              session.getRootNode().getNode( "repositories" ).remove();
73          }
74          catch ( RepositoryException e )
75          {
76              // ignore
77          }
78  
79          this.repository = jcrMetadataRepository;
80      }
81  
82  
83      @After
84      @Override
85      public void tearDown()
86          throws Exception
87      {
88          jcrMetadataRepository.close();
89  
90          super.tearDown();
91      }
92  
93  
94  }