]> source.dussan.org Git - archiva.git/blob
a232391f0bdb0364583b19dd93a17e0f8ef2d1c1
[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 com.google.common.base.Objects;
23 import org.apache.archiva.metadata.model.MetadataFacetFactory;
24 import org.apache.archiva.metadata.repository.AbstractMetadataRepositoryTest;
25 import org.apache.commons.io.FileUtils;
26 import org.apache.jackrabbit.oak.segment.file.InvalidFileStoreVersionException;
27 import org.junit.After;
28 import org.junit.Before;
29 import org.junit.BeforeClass;
30 import org.springframework.context.ApplicationContext;
31
32 import java.io.File;
33 import java.io.IOException;
34 import java.util.Map;
35 import javax.inject.Inject;
36 import javax.jcr.Repository;
37 import javax.jcr.RepositoryException;
38 import javax.jcr.Session;
39
40 public class JcrMetadataRepositoryTest
41     extends AbstractMetadataRepositoryTest
42 {
43     private JcrMetadataRepository jcrMetadataRepository;
44
45     @Inject
46     private ApplicationContext applicationContext;
47
48     private static Repository jcrRepository;
49
50     @BeforeClass
51     public static void setupSpec() throws IOException, InvalidFileStoreVersionException
52     {
53         File directory = new File( "target/test-repositories" );
54         if ( directory.exists() )
55         {
56             FileUtils.deleteDirectory( directory );
57         }
58         RepositoryFactory factory = new RepositoryFactory();
59         factory.setRepositoryPath( directory.getPath() );
60         jcrRepository = factory.createRepository();
61
62     }
63
64     @Before
65     @Override
66     public void setUp()
67         throws Exception
68     {
69         super.setUp();
70
71
72         Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
73
74         // TODO: probably don't need to use Spring for this
75         jcrMetadataRepository = new JcrMetadataRepository( factories, jcrRepository );
76
77         try
78         {
79             Session session = jcrMetadataRepository.getJcrSession();
80
81             // set up namespaces, etc.
82             JcrMetadataRepository.initialize( session );
83
84             // removing content is faster than deleting and re-copying the files from target/jcr
85             session.getRootNode().getNode( "repositories" ).remove();
86         }
87         catch ( RepositoryException e )
88         {
89             // ignore
90         }
91
92         this.repository = jcrMetadataRepository;
93     }
94
95
96     @After
97     @Override
98     public void tearDown()
99         throws Exception
100     {
101         jcrMetadataRepository.close();
102
103         super.tearDown();
104     }
105
106
107 }