1 package org.apache.archiva.metadata.repository.cassandra;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
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;
30 import javax.inject.Inject;
31 import javax.inject.Named;
36 * @author Olivier Lamy
38 public class CassandraMetadataRepositoryTest
39 extends AbstractMetadataRepositoryTest
41 private Logger logger = LoggerFactory.getLogger( getClass() );
44 @Named(value = "archivaEntityManagerFactory#cassandra")
45 CassandraArchivaManager cassandraArchivaManager;
47 CassandraMetadataRepository cmr;
55 File directory = new File( "target/test-repositories" );
56 if ( directory.exists() )
58 FileUtils.deleteDirectory( directory );
61 Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
63 this.cmr = new CassandraMetadataRepository( factories, null, cassandraArchivaManager );
64 this.repository = this.cmr;
66 clearReposAndNamespace();
71 public void shutdown()
74 clearReposAndNamespace();
78 protected void clearReposAndNamespace()
81 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
83 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
85 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
88 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
89 "projectversionmetadatamodel" );
91 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
92 "artifactmetadatamodel" );
94 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
95 "metadatafacetmodel" );
97 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
98 "metadatafacetmodel" );