]> source.dussan.org Git - archiva.git/blob
070e5495814363f3a7ea2581ecabb23efd9ec3c4
[archiva.git] /
1 package org.apache.maven.archiva.database;
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.maven.archiva.database.key.MetadataKey;
23 import org.apache.maven.artifact.repository.metadata.Metadata;
24 import org.codehaus.plexus.PlexusTestCase;
25 import org.codehaus.plexus.ibatis.PlexusIbatisHelper;
26
27 /**
28  * RepositoryMetadataDatabaseTest 
29  *
30  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
31  * @version $Id$
32  */
33 public class RepositoryMetadataDatabaseTest
34     extends PlexusTestCase
35 {
36     /**
37      * @plexus.requirement 
38      */
39     protected PlexusIbatisHelper ibatisHelper;
40     
41     protected void setUp()
42         throws Exception
43     {
44         super.setUp();
45     }
46
47     public void testRepositoryMetadataCreationAndDeletion() throws Exception
48     {
49         RepositoryMetadataDatabase db = (RepositoryMetadataDatabase) lookup( "org.apache.maven.archiva.database.RepositoryMetadataDatabase", "default" );
50         
51         assertNotNull( db );
52         assertTrue( db.tableExists( "RepositoryMetadata" ) );
53         assertTrue( db.tableExists( "MetadataKeys" ) );
54         
55         db.dropTable( "RepositoryMetadata" );
56         db.dropTable( "MetadataKeys" );
57         
58         assertFalse( db.tableExists( "RepositoryMetadata" ) );
59         assertFalse( db.tableExists( "MetadataKeys" ) );
60     }
61     
62     public void testMetadataKeyRetrieval() throws Exception
63     {
64         RepositoryMetadataDatabase db = (RepositoryMetadataDatabase) lookup( "org.apache.maven.archiva.database.RepositoryMetadataDatabase", "default" );
65         
66         Metadata metadata = new Metadata();
67         metadata.setArtifactId( "testArtifactId" );
68         metadata.setGroupId( "testGroupId" );
69         metadata.setVersion( "testVersion" );
70            
71         MetadataKey metadataKey = db.getMetadataKey( metadata );
72         
73         assertTrue( metadataKey.getMetadataKey() > 0 );
74         assertEquals( metadataKey.getArtifactId(), metadata.getArtifactId() );
75         assertEquals( metadataKey.getGroupId(), metadata.getGroupId() );
76         assertEquals( metadataKey.getVersion(), metadata.getVersion() );        
77         
78         db.dropTable( "RepositoryMetadata" );
79         db.dropTable( "MetadataKeys" );
80         
81         assertFalse( db.tableExists( "RepositoryMetadata" ) );
82         assertFalse( db.tableExists( "MetadataKeys" ) );
83         
84     }
85     
86     
87 }