]> source.dussan.org Git - archiva.git/blob
e501b82668e5d69aea41219840bc7a8a6f38cc05
[archiva.git] /
1 package org.apache.archiva.metadata.repository.cassandra;
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.slf4j.Logger;
28 import org.slf4j.LoggerFactory;
29
30 import javax.inject.Inject;
31 import javax.inject.Named;
32 import java.io.File;
33 import java.util.Map;
34
35 /**
36  * @author Olivier Lamy
37  */
38 public class CassandraMetadataRepositoryTest
39     extends AbstractMetadataRepositoryTest
40 {
41     private Logger logger = LoggerFactory.getLogger( getClass() );
42
43     @Inject
44     @Named(value = "archivaEntityManagerFactory#cassandra")
45     CassandraArchivaManager cassandraArchivaManager;
46
47     CassandraMetadataRepository cmr;
48
49     @Before
50     public void setUp()
51         throws Exception
52     {
53         super.setUp();
54
55         File directory = new File( "target/test-repositories" );
56         if ( directory.exists() )
57         {
58             FileUtils.deleteDirectory( directory );
59         }
60
61         Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
62
63         this.cmr = new CassandraMetadataRepository( factories, null, cassandraArchivaManager );
64         this.repository = this.cmr;
65
66         clearReposAndNamespace();
67     }
68
69
70     @After
71     public void shutdown()
72         throws Exception
73     {
74         clearReposAndNamespace();
75         super.tearDown();
76     }
77
78     protected void clearReposAndNamespace()
79         throws Exception
80     {
81         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
82                                                        "project" );
83         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
84                                                        "namespace" );
85         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
86                                                        "repository" );
87
88         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
89                                                        "projectversionmetadatamodel" );
90
91         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
92                                                        "artifactmetadatamodel" );
93
94         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
95                                                        "metadatafacetmodel" );
96
97         cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
98                                                        "metadatafacetmodel" );
99
100     }
101
102 }