org.apache.ctakes.jdl.data.xml.DomUtilTest.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.ctakes.jdl.data.xml.DomUtilTest.java

Source

/**
 * 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.ctakes.jdl.data.xml;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.nullValue;
import static org.junit.Assert.assertThat;

import javax.xml.parsers.ParserConfigurationException;

import org.apache.commons.lang.StringUtils;
import org.apache.ctakes.jdl.common.FileUtil;
import org.apache.ctakes.jdl.data.xml.DomUtil;
import org.apache.ctakes.jdl.test.Resources;
import org.junit.Test;
import org.junit.experimental.theories.DataPoint;
import org.junit.experimental.theories.Theories;
import org.junit.experimental.theories.Theory;
import org.junit.runner.RunWith;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

@RunWith(Theories.class)
public final class DomUtilTest {
    @DataPoint
    public static String L1C = Resources.LOAD1C;
    @DataPoint
    public static String L1X = Resources.LOAD1X;
    @DataPoint
    public static String L2C = Resources.LOAD2C;
    @DataPoint
    public static String L2X = Resources.LOAD2X;

    @Test
    public void getEmptyDocument() throws ParserConfigurationException {
        assertThat(DomUtil.getEmptyDocument().getDocumentElement(), nullValue());
    }

    @Test
    public void strToDocument() {
        Document document = DomUtil.strToDocument("<root />");
        Element element = document.getDocumentElement();
        assertThat(element.getTagName(), is("root"));
    }

    @Theory
    public void srcToDocument(String xml) {
        xml = FileUtil.getFile(xml).toString();
        Document document = DomUtil.srcToDocument(xml);
        Element element = document.getDocumentElement();
        assertThat(element.getTagName(), is(Resources.ROOT_LOAD));
    }

    @Theory
    public void nodeToStr(String xml) {
        xml = FileUtil.getFile(xml).toString();
        Document document = DomUtil.srcToDocument(xml);
        Element element = document.getDocumentElement();
        assertThat(StringUtils.startsWith(DomUtil.nodeToStr(element), "<" + Resources.ROOT_LOAD), is(true));
        assertThat(StringUtils.endsWith(DomUtil.nodeToStr(element).trim(), "</" + Resources.ROOT_LOAD + ">"),
                is(true));
    }
}