]> source.dussan.org Git - archiva.git/blob
cc561227224c2e2765c15686a24ce135d769114e
[archiva.git] /
1 package org.apache.maven.archiva.common.spring;
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 java.net.URL;
23
24 import javax.xml.parsers.DocumentBuilder;
25 import javax.xml.parsers.DocumentBuilderFactory;
26
27 import junit.framework.TestCase;
28
29 import org.dom4j.io.DOMReader;
30 import org.dom4j.io.OutputFormat;
31 import org.dom4j.io.XMLWriter;
32 import org.springframework.beans.factory.config.BeanDefinition;
33 import org.springframework.core.io.UrlResource;
34 import org.w3c.dom.Document;
35
36 /**
37  * @author <a href="mailto:nicolas@apache.org">Nicolas De Loof</a>
38  */
39 public class PlexusBeanDefinitionDocumentReaderTest
40     extends TestCase
41 {
42
43     public void testXslt()
44         throws Exception
45     {
46         URL plexus = getClass().getResource( "components.xml" );
47         DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
48         DocumentBuilder builder = factory.newDocumentBuilder();
49         Document doc = builder.parse( plexus.openStream() );
50
51         PlexusBeanDefinitionDocumentReader reader = new PlexusBeanDefinitionDocumentReader();
52         doc = reader.convertPlexusDescriptorToSpringBeans( doc );
53
54         new XMLWriter( System.out, OutputFormat.createPrettyPrint() ).write( new DOMReader().read( doc ) );
55     }
56
57     /**
58      * Test conversion from a typical Plexus components descriptor to a spring beanFactory
59      * @throws Exception
60      */
61     public void testConvertPlexusToSpring()
62         throws Exception
63     {
64         URL plexus = getClass().getResource( "components.xml" );
65         PlexusBeanFactory factory = new PlexusBeanFactory( new UrlResource( plexus ) );
66         assertEquals( 2, factory.getBeanDefinitionCount() );
67
68         BeanDefinition bd = factory.getBeanDefinition( "org.apache.maven.archiva.configuration.ArchivaConfiguration" );
69         assertEquals( "org.apache.maven.archiva.configuration.DefaultArchivaConfiguration", bd.getBeanClassName() );
70         assertEquals( "prototype", bd.getScope() );
71         assertEquals( 5, bd.getPropertyValues().size() );
72     }
73 }