Package org.apache.geronimo.web.deployment

Source Code of org.apache.geronimo.web.deployment.GenericToSpecificPlanConverterTest

/**
*  Licensed to the Apache Software Foundation (ASF) under one or more
*  contributor license agreements.  See the NOTICE file distributed with
*  this work for additional information regarding copyright ownership.
*  The ASF licenses this file to You under the Apache License, Version 2.0
*  (the "License"); you may not use this file except in compliance with
*  the License.  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
*/
package org.apache.geronimo.web.deployment;

import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.xml.namespace.QName;

import junit.framework.TestCase;
import org.apache.geronimo.deployment.xmlbeans.XmlBeansUtil;
import org.apache.geronimo.schema.ElementConverter;
import org.apache.geronimo.schema.NamespaceElementConverter;
import org.apache.geronimo.schema.SchemaConversionUtils;
import org.apache.geronimo.schema.SecurityElementConverter;
import org.apache.geronimo.security.deployment.GeronimoSecurityBuilderImpl;
import org.apache.xmlbeans.XmlCursor;
import org.apache.xmlbeans.XmlObject;

/**
* @version $Rev: 685070 $ $Date: 2008-08-12 15:27:25 +0800 (Tue, 12 Aug 2008) $
*/
public class GenericToSpecificPlanConverterTest extends TestCase {
    private ClassLoader classLoader = this.getClass().getClassLoader();

    protected void setUp() {
        Map<String, ElementConverter> converterMap = new HashMap<String, ElementConverter>();
        converterMap.put("security", new SecurityElementConverter());
        converterMap.put("default-subject", new NamespaceElementConverter(GeronimoSecurityBuilderImpl.GERONIMO_SECURITY_NAMESPACE));
        SchemaConversionUtils.registerNamespaceConversions(converterMap);
    }

    public void testConvertPlan1() throws Exception {
        testConvertPlan("plans/tomcat-pre.xml", "plans/tomcat-post.xml");
    }

    public void testConvertPlan2() throws Exception {
        testConvertPlan("plans/tomcat-pre2.xml", "plans/tomcat-post.xml");
    }

    public void testConvertPlan3() throws Exception {
        testConvertPlan("plans/tomcat-pre3.xml", "plans/tomcat-post.xml");
    }

    public void testConvertPlanMessageDestination1() throws Exception {
        testConvertPlan("plans/web-md-pre.xml", "plans/web-md-post.xml");
    }

    public void testConvertPlan(String prePlanName, String postPlanName) throws Exception {
        URL srcXml = classLoader.getResource(prePlanName);
        URL expectedOutputXml = classLoader.getResource(postPlanName);
        XmlObject rawPlan = XmlBeansUtil.parse(srcXml, getClass().getClassLoader());

        XmlObject expected = XmlObject.Factory.parse(expectedOutputXml);
        XmlObject webPlan = new GenericToSpecificPlanConverter("http://geronimo.apache.org/xml/ns/web/tomcat/config-1.0",
                "http://geronimo.apache.org/xml/ns/j2ee/web/tomcat-2.0.1", "tomcat").convertToSpecificPlan(rawPlan);

        List problems = new ArrayList();
        boolean ok = compareXmlObjects(webPlan, expected, problems);
        assertTrue("Differences: " + problems, ok);
    }

    private boolean compareXmlObjects(XmlObject xmlObject, XmlObject expectedObject, List problems) {
        XmlCursor test = xmlObject.newCursor();
        XmlCursor expected = expectedObject.newCursor();
        boolean similar = true;
        int elementCount = 0;
        while (toNextStartToken(test)) {
            elementCount++;
            if (!toNextStartToken(expected)) {
                problems.add("test longer than expected at element: " + elementCount);
                return false;
            }
            QName actualChars = test.getName();
            QName expectedChars = expected.getName();
            if (!actualChars.equals(expectedChars)) {
                problems.add("Different elements at elementCount: " + elementCount + ", test: " + actualChars + ", expected: " + expectedChars);
                similar = false;
            }
            test.toNextToken();
            expected.toNextToken();
        }
        if (toNextStartToken(expected)) {
            problems.add("test shorter that expected at element: " + elementCount);
            similar = false;
        }
        return similar;
    }

    private boolean toNextStartToken(XmlCursor cursor) {
        while (!cursor.isStart()) {
            if (!cursor.hasNextToken()) {
                return false;
            }
            cursor.toNextToken();
        }
        return true;
    }
}
TOP

Related Classes of org.apache.geronimo.web.deployment.GenericToSpecificPlanConverterTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.