Package org.apache.axiom.c14n.omwrapper

Source Code of org.apache.axiom.c14n.omwrapper.NamedNodeMapImplTest

/*
* 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.axiom.c14n.omwrapper;

import org.apache.axiom.c14n.omwrapper.interfaces.NamedNodeMap;
import org.apache.axiom.c14n.omwrapper.interfaces.Element;
import org.apache.axiom.c14n.DataParser;
import org.apache.axiom.om.OMElement;

import javax.xml.namespace.QName;

import junit.framework.TestCase;
import junit.framework.Test;
import junit.framework.TestSuite;
import junit.textui.TestRunner;

public class NamedNodeMapImplTest extends TestCase {
    private DataParser dp = null;
    private NamedNodeMap nnm = null;

    public NamedNodeMapImplTest(String name){
        super(name);
    }

    public static Test suite() {
        return new TestSuite(NamedNodeMapImplTest.class);
    }

    public static void main(String[] args) {
        TestRunner.run(suite());
    }

    public void setUp() throws Exception {
        dp = new DataParser("/sample1.xml");
        dp.init();
        // get e5
        OMElement e5 = dp.omDocEle.getFirstChildWithName(new QName("http://example.org", "e5"));
        // get the wrapped element of e5
        Element e = (Element) dp.fac.getNode(e5);
        nnm = e.getAttributes();
    }

    public void testGetLength(){
        assertEquals(7, nnm.getLength());
    }

    public void testItem(){
        assertNotNull("valid index should not return null", nnm.item(nnm.getLength() - 1));
        assertNull("invalid index should return null", nnm.item(-2));
        assertNull("invalid index should return null", nnm.item(nnm.getLength()));
    }


}
TOP

Related Classes of org.apache.axiom.c14n.omwrapper.NamedNodeMapImplTest

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.