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