view gnv-artifacts/src/test/java/de/intevation/gnv/artifacts/TimeSeriesPointTimeSeriesTestCase.java @ 364:2413273f1c13

Workarround: Store lower and upper bounds of data while iterating over all data and set the max range of axes with these information. JFreeCharts method NumberAxis.setAutoRange(true) doesn't seem to work properly. gnv-artifacts/trunk@439 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 16 Dec 2009 11:58:44 +0000
parents 2f84ac484d8c
children 4939236c2dc9
line wrap: on
line source
/**
 *
 */
package de.intevation.gnv.artifacts;

import java.io.FileOutputStream;

import org.apache.log4j.Logger;
import org.w3c.dom.Document;

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

/**
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public class TimeSeriesPointTimeSeriesTestCase extends GNVArtifactsTestCaseBase {

    
    /**
     * the logger, used to log exceptions and additonaly information
     */
    private static Logger log = Logger.getLogger(TimeSeriesPointTimeSeriesTestCase.class);
    
    /**
     * Constructor
     */
    public TimeSeriesPointTimeSeriesTestCase() {
    }

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

    /**
     * @see de.intevation.gnv.artifacts.GNVArtifactsTestCaseBase#testArtifact()
     */
    @Override
    public void testArtifact() {
        log.debug("GNVArtifactsTestCase.testTimeSeriesArtifact");
        try {
            String artefactName = "fis_marnet";
            ArtifactFactory artifactFactory = this
                    .getArtifactFactory(artefactName);
            assertNotNull(artifactFactory);
            log.debug("TimeSeries-ArtifactFactory is available");
            Artifact artifact = artifactFactory.createArtifact(
                    "" + System.currentTimeMillis(), bootstrap.getContext());
            assertNotNull(artifact);
            log.debug("TimeSeries-Artifact is available");
    
            CallContext cc = createCallContext();
    
            // Erster Schritt
    
            Document describeDocument = this.readDocument("src/test/ressources/timeseries/timeseries_describe.xml");
            
            int steps = 6;
            
            for (int i = 1; i <= steps; i++){
            
                this.doNextStep(
                            artifact,
                            cc,
                            "src/test/ressources/timeseries/" +
                            "timeseries_step_0"+i+"_feed.xml",
                            "src/test/ressources/timeseries/" +
                            "timeseries_step_0"+i+"_advance.xml", 
                            describeDocument);
            }
            
            Document outputData = artifact.describe(describeDocument,cc);
            FileOutputStream fos = null;
            FileOutputStream fos2 = null;
            FileOutputStream fos3 = null;
            FileOutputStream fos4 = null;
            try {
                fos = new FileOutputStream("src/test/results/timeseries"
                                           + System.currentTimeMillis()
                                           + ".png");
                fos2 = new FileOutputStream("src/test/results/timeseries"
                                            + System.currentTimeMillis()
                                            + ".xml");
                fos3 = new FileOutputStream("src/test/results/timeseries"
                                            + System.currentTimeMillis()
                                            + ".csv");
                fos4 = new FileOutputStream("src/test/results/timeseries"
                        + System.currentTimeMillis()
                        + ".odv");
            
                artifact.out(this
                             .readDocument("src/test/ressources/timeseries/timeseries_step_06_out_chart.xml"),
                                           fos, cc);
                artifact.out(this
                        .readDocument("src/test/ressources/timeseries/timeseries_step_06_out_statistics.xml"),
                                      fos2, cc);
                artifact.out(this
                        .readDocument("src/test/ressources/timeseries/timeseries_step_06_out_csv.xml"),
                                      fos3, cc);
                artifact.out(this
                        .readDocument("src/test/ressources/timeseries/timeseries_step_06_out_odv.xml"),
                                      fos4, cc);
            } catch (Exception e) {
                log.error(e, e);
                fail();
            } finally {
                try {
                    fos.flush();
                    fos.close();
                } catch (Exception e) {
                    log.error(e, e);
                }
            }
        } catch (Exception e) {
            log.error(e, e);
            fail();
        }
    }

}

http://dive4elements.wald.intevation.org