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