]> source.dussan.org Git - archiva.git/blob
8ebbca69e1b16f5cd3777aa48dfa24d0ff033f3d
[archiva.git] /
1 package org.apache.maven.archiva.reporting.artifact;
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.ArchivaDAO;
23 import org.codehaus.plexus.PlexusTestCase;
24 import org.codehaus.plexus.jdo.DefaultConfigurableJdoFactory;
25 import org.codehaus.plexus.jdo.JdoFactory;
26 import org.jpox.SchemaTool;
27
28 import java.io.File;
29 import java.net.URL;
30 import java.util.Iterator;
31 import java.util.Map;
32 import java.util.Properties;
33
34 import javax.jdo.PersistenceManager;
35 import javax.jdo.PersistenceManagerFactory;
36
37 /**
38  * AbstractArtifactReportsTestCase 
39  *
40  * @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
41  * @version $Id$
42  */
43 public class AbstractArtifactReportsTestCase
44     extends PlexusTestCase
45 {
46     protected ArchivaDAO dao;
47     
48     protected void setUp()
49         throws Exception
50     {
51         super.setUp();
52
53         DefaultConfigurableJdoFactory jdoFactory = (DefaultConfigurableJdoFactory) lookup( JdoFactory.ROLE, "archiva" );
54         assertEquals( DefaultConfigurableJdoFactory.class.getName(), jdoFactory.getClass().getName() );
55
56         jdoFactory.setPersistenceManagerFactoryClass( "org.jpox.PersistenceManagerFactoryImpl" );
57
58         /* derby version
59          File derbyDbDir = new File( "target/plexus-home/testdb" );
60          if ( derbyDbDir.exists() )
61          {
62          FileUtils.deleteDirectory( derbyDbDir );
63          }
64
65          jdoFactory.setDriverName( System.getProperty( "jdo.test.driver", "org.apache.derby.jdbc.EmbeddedDriver" ) );   
66          jdoFactory.setUrl( System.getProperty( "jdo.test.url", "jdbc:derby:" + derbyDbDir.getAbsolutePath() + ";create=true" ) );
67          */
68
69         jdoFactory.setDriverName( System.getProperty( "jdo.test.driver", "org.hsqldb.jdbcDriver" ) );
70         jdoFactory.setUrl( System.getProperty( "jdo.test.url", "jdbc:hsqldb:mem:" + getName() ) );
71
72         jdoFactory.setUserName( System.getProperty( "jdo.test.user", "sa" ) );
73
74         jdoFactory.setPassword( System.getProperty( "jdo.test.pass", "" ) );
75
76         jdoFactory.setProperty( "org.jpox.transactionIsolation", "READ_COMMITTED" );
77
78         jdoFactory.setProperty( "org.jpox.poid.transactionIsolation", "READ_COMMITTED" );
79
80         jdoFactory.setProperty( "org.jpox.autoCreateSchema", "true" );
81
82         jdoFactory.setProperty( "javax.jdo.option.RetainValues", "true" );
83
84         jdoFactory.setProperty( "javax.jdo.option.RestoreValues", "true" );
85
86         // jdoFactory.setProperty( "org.jpox.autoCreateColumns", "true" );
87
88         jdoFactory.setProperty( "org.jpox.validateTables", "true" );
89
90         jdoFactory.setProperty( "org.jpox.validateColumns", "true" );
91
92         jdoFactory.setProperty( "org.jpox.validateConstraints", "true" );
93
94         Properties properties = jdoFactory.getProperties();
95
96         for ( Iterator it = properties.entrySet().iterator(); it.hasNext(); )
97         {
98             Map.Entry entry = (Map.Entry) it.next();
99
100             System.setProperty( (String) entry.getKey(), (String) entry.getValue() );
101         }
102
103         URL jdoFileUrls[] = new URL[] { getClass().getResource( "/org/apache/maven/archiva/model/package.jdo" ) };
104
105         if ( ( jdoFileUrls == null ) || ( jdoFileUrls[0] == null ) )
106         {
107             fail( "Unable to process test " + getName() + " - missing package.jdo." );
108         }
109
110         File propsFile = null; // intentional
111         boolean verbose = true;
112
113         SchemaTool.deleteSchemaTables( jdoFileUrls, new URL[] {}, propsFile, verbose );
114         SchemaTool.createSchemaTables( jdoFileUrls, new URL[] {}, propsFile, verbose, null );
115
116         PersistenceManagerFactory pmf = jdoFactory.getPersistenceManagerFactory();
117
118         assertNotNull( pmf );
119
120         PersistenceManager pm = pmf.getPersistenceManager();
121
122         pm.close();
123
124         this.dao = (ArchivaDAO) lookup( ArchivaDAO.class.getName(), "jdo" );
125     }
126 }