1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
/*
* TestChart.java - Junit test for info.monitorenter.chart.gui.Chart2D.
* Copyright (C) Achim Westermann, created on 16.07.2005, 10:52:43
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* If you modify or optimize the code in a useful way please let me know.
* Achim.Westermann@gmx.de
*
*/
package info.monitorenter.gui.chart;
import info.monitorenter.gui.chart.axis.AAxis;
import info.monitorenter.gui.chart.axis.AxisLinear;
import info.monitorenter.gui.chart.test.ATestJChart2D;
import info.monitorenter.gui.chart.traces.Trace2DSimple;
import java.awt.Color;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.Iterator;
import javax.swing.JFrame;
import junit.framework.Assert;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Junit test for <code>{@link Chart2D}</code>.
* <p>
*
* @author <a href="mailto:Achim.Westermann@gmx.de">Achim Westermann</a>
*/
public class TestChart2D
extends ATestJChart2D {
/**
* Test suite for this test class.
* <p>
*
* @return the test suite
*/
public static Test suite() {
TestSuite suite = new TestSuite();
suite.setName(TestChart2D.class.getName());
suite.addTest(new TestChart2D("testAddInvisibleTrace"));
suite.addTest(new TestChart2D("testSetTraceName"));
suite.addTest(new TestChart2D("testSerializeChart"));
return suite;
}
/**
* Constructor with the test name.
* <p>
*
* @param testname
* the test name.
*/
public TestChart2D(final String testname) {
super(testname);
}
/**
* @see info.monitorenter.gui.chart.test.ATestJChart2D#createAxisX()
*/
@Override
protected AAxis<?> createAxisX() {
return new AxisLinear<IAxisScalePolicy>();
}
/**
* @see info.monitorenter.gui.chart.test.ATestJChart2D#createAxisY()
*/
@Override
protected AAxis<?> createAxisY() {
return this.createAxisX();
}
/**
* @see info.monitorenter.gui.chart.test.ATestJChart2D#createTraces()
*/
@Override
protected ITrace2D[] createTraces() {
return new ITrace2D[]{ new Trace2DSimple()};
}
/**
* @see info.monitorenter.gui.chart.test.ATestJChart2D#fillTrace(info.monitorenter.gui.chart.ITrace2D)
*/
@Override
protected void fillTrace(final ITrace2D trace2D) {
for (int i = 0; i < 101; i++) {
trace2D.addPoint(i, i);
}
}
/**
* Tests adding an invisible trace for correct scaling.
* <p>
* Invisible traces should not be scaled. If they are turned visible afterwards they should be
* scaled.
* <p>
*
* @throws InterruptedException
* if something threads wrong.
*/
public void testAddInvisibleTrace() throws InterruptedException {
ITrace2D trace = this.m_traces[0];
for (int i = 20; i < 40; i++) {
trace.addPoint(i, 70 - i);
}
trace.setVisible(false);
trace.setName("added invisible");
trace.setColor(Color.BLUE);
// should call repaint!
this.m_chart.addTrace(trace);
Thread.sleep(1000);
// test all points:
Iterator<ITracePoint2D> itpoints = trace.iterator();
ITracePoint2D point;
double forbidden = 0.0;
boolean scaleXDetected = false;
boolean scaleYDetected = false;
while (itpoints.hasNext()) {
point = itpoints.next();
if (forbidden != point.getScaledX()) {
scaleXDetected = true;
}
if (forbidden != point.getScaledY()) {
scaleYDetected = true;
}
if (scaleXDetected && scaleYDetected) {
break;
}
}
Assert.assertFalse("Invisible trace was scaled in x dimension", scaleXDetected);
Assert.assertFalse("Invisible trace was scaled in y dimension", scaleYDetected);
// now set it visible:
trace.setVisible(true);
Thread.sleep(2000);
itpoints = trace.iterator();
scaleXDetected = false;
scaleYDetected = false;
while (itpoints.hasNext()) {
point = itpoints.next();
if (forbidden != point.getScaledX()) {
scaleXDetected = true;
}
if (forbidden != point.getScaledY()) {
scaleYDetected = true;
}
if (scaleXDetected && scaleYDetected) {
break;
}
}
Assert.assertTrue("Visible trace was not scaled in x dimension", scaleXDetected);
Assert.assertTrue("Visible trace was not scaled in y dimension", scaleYDetected);
}
/**
* Tries to serialize a chart.
* <p>
*
* @throws IOException
* if something goes wrong.
* @throws ClassNotFoundException
* if something goes wrong.
* @throws InterruptedException
* if something goes wrong.
*/
public void testSerializeChart() throws IOException, ClassNotFoundException, InterruptedException {
for (int i = 0; i < 100; i++) {
this.m_traces[0].addPoint(i, (Math.random() + 1.0) * i);
}
java.io.File tmpOut = File.createTempFile("chart", ".ser", null);
tmpOut.deleteOnExit();
// write chart
ObjectOutputStream objOut = new ObjectOutputStream(new FileOutputStream(tmpOut));
objOut.writeObject(this.m_chart);
objOut.close();
// read chart
Chart2D serChart;
ObjectInputStream objIn = new ObjectInputStream(new FileInputStream(tmpOut));
serChart = (Chart2D) objIn.readObject();
JFrame frame = new JFrame();
frame.getContentPane().add(serChart);
frame.setSize(400, 600);
frame.setLocation(400, 0);
frame.setVisible(true);
Thread.sleep(5000);
}
/**
* Sets a new name to the trace.
* <p>
*/
public void testSetTraceName() {
this.m_traces[0].setName("Iphigenie");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
|