view gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/MeshVerticalCrossSectionTestCase.java @ 780:c4156275c1e1

Bring @author javadoc tags in form '@author <a href="john.doe@example.com">John Doe</a>' gnv-artifacts/trunk@857 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:35:44 +0000
parents b1f5f2a8840f
children f953c9a559d8
line wrap: on
line source
package de.intevation.gnv.artifacts;

import de.intevation.artifacts.Artifact;
import de.intevation.artifacts.ArtifactFactory;
import de.intevation.artifacts.CallContext;

import java.io.FileOutputStream;

import org.apache.log4j.Logger;

import org.w3c.dom.Document;

/**
 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a>
 *
 */
public class MeshVerticalCrossSectionTestCase extends GNVArtifactsTestCaseBase {

    private static Logger log = Logger.getLogger(MeshVerticalCrossSectionTestCase.class);

    /**
     * Constructor
     */
    public MeshVerticalCrossSectionTestCase() {
    }

    /**
     * Constructor
     * @param name
     */
    public MeshVerticalCrossSectionTestCase(String name) {
        super(name);
    }

    /**
     * @see de.intevation.gnv.artifacts.GNVArtifactsTestCaseBase#testArtifact()
     */
    @Override
    public void testArtifact() {
        try {
            log.debug("GNVArtifactsTestCase." +
                      "testHVerticalCrossSectionMeshArtifact");
            String artefactName = "fis_modeldata";
            ArtifactFactory artifactFactory = this
                    .getArtifactFactory(artefactName);
            assertNotNull(artifactFactory);
            log.debug("VerticalProfile-ArtifactFactory is available");

            Artifact artifact = createArtifact(artifactFactory);

            CallContext cc = createCallContext(artifactFactory);
            Document describeDocument = this.readDocument("src/test/ressources/verticalcrosssection_mesh/verticalcrosssection_describe.xml");

            int steps = 7;

            for (int i = 1; i <= steps; i++){

                this.doNextStep(
                            artifact,
                            cc,
                            "src/test/ressources/verticalcrosssection_mesh/" +
                            "verticalcrosssection_step_0"+i+"_feed.xml",
                            "src/test/ressources/verticalcrosssection_mesh/" +
                            "verticalcrosssection_step_0"+i+"_advance.xml",
                            describeDocument);
            }

            Document outputData = artifact.describe(describeDocument,cc);
            FileOutputStream fos = null;
            FileOutputStream fos2 = null;
            FileOutputStream fos3 = null;
            try {
                fos = new FileOutputStream(
                        "src/test/results/verticalcrosssection_mesh"
                                + System.currentTimeMillis() + ".png");

                fos2 = new FileOutputStream(
                        "src/test/results/verticalcrosssection_mesh"
                                + System.currentTimeMillis() + ".csv");
                fos3 = new FileOutputStream(
                        "src/test/results/verticalcrosssection_mesh"
                                + System.currentTimeMillis() + ".odv");
               artifact.out(this.readDocument("src/test/ressources/" +
                                               "verticalcrosssection_mesh/" +
                                               "verticalcrosssection_step_0"+steps+"_out_chart.xml"),
                             fos, cc);
                artifact.out(this.readDocument("src/test/ressources/" +
                                               "verticalcrosssection_mesh/" +
                                               "verticalcrosssection_step_0"+steps+"_out_csv.xml"),
                             fos2,cc);
                // TODO: FIXME: ODV-Export nach Reparatur wieder Testbar machen.
//                artifact.out(this.readDocument("src/test/ressources/" +
//                                               "verticalcrosssection_mesh/" +
//                                               "verticalcrosssection_step_0"+steps+"_out_odv.xml"),
//                             fos3,cc);

            } catch (Exception e) {
                log.error(e, e);
                fail();
            } finally {
                try {
                    fos.flush();
                    fos.close();
                    fos2.flush();
                    fos2.close();
                    fos3.flush();
                    fos3.close();
                } catch (Exception e) {
                    log.error(e, e);
                }
            }
        } catch (Exception e) {
            log.error(e, e);
            fail();
        }
    }

}

http://dive4elements.wald.intevation.org