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;
33 import java.util.Arrays;
34 import java.util.Collections;
35 import java.util.List;
39 * @author Olivier Lamy
41 public class CassandraMetadataRepositoryTest
42 extends AbstractMetadataRepositoryTest
44 private Logger logger = LoggerFactory.getLogger( getClass() );
47 @Named(value = "archivaEntityManagerFactory#cassandra")
48 CassandraArchivaManager cassandraArchivaManager;
50 CassandraMetadataRepository cmr;
58 File directory = new File( "target/test-repositories" );
59 if ( directory.exists() )
61 FileUtils.deleteDirectory( directory );
64 Map<String, MetadataFacetFactory> factories = createTestMetadataFacetFactories();
66 this.cmr = new CassandraMetadataRepository( factories, null, cassandraArchivaManager );
67 this.repository = this.cmr;
69 clearReposAndNamespace();
74 public void shutdown()
77 clearReposAndNamespace();
81 protected void clearReposAndNamespace()
84 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
86 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
88 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
91 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
92 "projectversionmetadatamodel" );
94 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
95 "artifactmetadatamodel" );
97 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
98 "metadatafacetmodel" );
100 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),
101 "metadatafacetmodel" );
103 cassandraArchivaManager.getCluster().truncate( cassandraArchivaManager.getKeyspace().getKeyspaceName(),