org.openxdata.server.export.VersionTextExportTest.java Source code

Java tutorial

Introduction

Here is the source code for org.openxdata.server.export.VersionTextExportTest.java

Source

/*
 *  Licensed to the OpenXdata Foundation (OXDF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The OXDF 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.
 *
 *  Copyright 2010 http://www.openxdata.org.
 */
package org.openxdata.server.export;

import org.junit.Assert;
import org.junit.Test;
import org.openxdata.server.admin.model.FormDefVersion;
import org.openxdata.server.admin.model.FormDefVersionText;
import org.openxdata.server.service.DataExportService;
import org.openxdata.server.util.XmlUtil;
import org.openxdata.test.BaseContextSensitiveTest;
import org.springframework.beans.factory.annotation.Autowired;
import org.w3c.dom.Document;
import org.w3c.dom.Element;

/**
 * Tests exporting of form version text to xml.
 * 
 * @author daniel
 *
 */
public class VersionTextExportTest extends BaseContextSensitiveTest {

    @Autowired
    protected DataExportService dataExportService;

    @Test
    public void export_shouldReturnNullForNullVersionTextAndParentNode() throws Exception {
        Assert.assertNull(VersionTextExport.export(null, null));
    }

    @Test
    public void export_shouldReturnNullForNullParentNode() throws Exception {
        Assert.assertNull(VersionTextExport.export(new FormDefVersionText(), null));
    }

    @Test
    public void export_shouldReturnNullForNullVersionText() throws Exception {
        Assert.assertNull(VersionTextExport.export(null, getVersionTextParent()));
    }

    @Test
    public void export_shouldReturnValidExportXmlForVersionTextWithNoXformsText() throws Exception {

        String xml = VersionTextExport.export(new FormDefVersionText("en", 1, null, ""), getVersionTextParent());

        Assert.assertNotNull(xml);
        Assert.assertTrue(xml.trim().length() > 50);
    }

    @Test
    public void export_shouldReturnValidExportXmlForVersionTextWithNoText() throws Exception {

        String xml = VersionTextExport.export(new FormDefVersionText("en", 1, "", null), getVersionTextParent());

        Assert.assertNotNull(xml);
        Assert.assertTrue(xml.trim().length() > 50);
    }

    @Test
    public void export_shouldReturnValidExportXml() throws Exception {

        FormDefVersion version = dataExportService.getFormDefVersion(1);
        assert (version.getVersionText().size() == 1);
        String xml = VersionTextExport.export((FormDefVersionText) version.getVersionText().get(0),
                getVersionTextParent());

        Assert.assertNotNull(xml);
        Assert.assertTrue(xml.trim().length() > 1000);
    }

    private Element getVersionTextParent() {
        Document doc = XmlUtil.createNewXmlDocument();
        doc.appendChild(doc.createElement("version"));
        return doc.getDocumentElement();
    }
}