KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jfree > chart > renderer > category > junit > IntervalBarRendererTests


1 /* ===========================================================
2  * JFreeChart : a free chart library for the Java(tm) platform
3  * ===========================================================
4  *
5  * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
6  *
7  * Project Info: http://www.jfree.org/jfreechart/index.html
8  *
9  * This library is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation; either version 2.1 of the License, or
12  * (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17  * License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22  * USA.
23  *
24  * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
25  * in the United States and other countries.]
26  *
27  * -----------------------------
28  * IntervalBarRendererTests.java
29  * -----------------------------
30  * (C) Copyright 2003-2005, by Object Refinery Limited and Contributors.
31  *
32  * Original Author: David Gilbert (for Object Refinery Limited);
33  * Contributor(s): -;
34  *
35  * $Id: IntervalBarRendererTests.java,v 1.1.2.1 2006/10/03 15:41:33 mungady Exp $
36  *
37  * Changes
38  * -------
39  * 25-Mar-2003 : Version 1 (DG);
40  *
41  */

42
43 package org.jfree.chart.renderer.category.junit;
44
45 import java.io.ByteArrayInputStream JavaDoc;
46 import java.io.ByteArrayOutputStream JavaDoc;
47 import java.io.ObjectInput JavaDoc;
48 import java.io.ObjectInputStream JavaDoc;
49 import java.io.ObjectOutput JavaDoc;
50 import java.io.ObjectOutputStream JavaDoc;
51
52 import junit.framework.Test;
53 import junit.framework.TestCase;
54 import junit.framework.TestSuite;
55
56 import org.jfree.chart.JFreeChart;
57 import org.jfree.chart.axis.CategoryAxis;
58 import org.jfree.chart.axis.NumberAxis;
59 import org.jfree.chart.plot.CategoryPlot;
60 import org.jfree.chart.renderer.category.IntervalBarRenderer;
61 import org.jfree.data.category.DefaultIntervalCategoryDataset;
62
63 /**
64  * Tests for the {@link IntervalBarRenderer} class.
65  */

66 public class IntervalBarRendererTests extends TestCase {
67
68     /**
69      * Returns the tests as a test suite.
70      *
71      * @return The test suite.
72      */

73     public static Test suite() {
74         return new TestSuite(IntervalBarRendererTests.class);
75     }
76
77     /**
78      * Constructs a new set of tests.
79      *
80      * @param name the name of the tests.
81      */

82     public IntervalBarRendererTests(String JavaDoc name) {
83         super(name);
84     }
85
86     /**
87      * Problem that the equals() method distinguishes all fields.
88      */

89     public void testEquals() {
90         IntervalBarRenderer r1 = new IntervalBarRenderer();
91         IntervalBarRenderer r2 = new IntervalBarRenderer();
92         assertEquals(r1, r2);
93     }
94
95     /**
96      * Two objects that are equal are required to return the same hashCode.
97      */

98     public void testHashcode() {
99         IntervalBarRenderer r1 = new IntervalBarRenderer();
100         IntervalBarRenderer r2 = new IntervalBarRenderer();
101         assertTrue(r1.equals(r2));
102         int h1 = r1.hashCode();
103         int h2 = r2.hashCode();
104         assertEquals(h1, h2);
105     }
106     
107     /**
108      * Confirm that cloning works.
109      */

110     public void testCloning() {
111         IntervalBarRenderer r1 = new IntervalBarRenderer();
112         IntervalBarRenderer r2 = null;
113         try {
114             r2 = (IntervalBarRenderer) r1.clone();
115         }
116         catch (CloneNotSupportedException JavaDoc e) {
117             System.err.println("Failed to clone.");
118         }
119         assertTrue(r1 != r2);
120         assertTrue(r1.getClass() == r2.getClass());
121         assertTrue(r1.equals(r2));
122     }
123
124     /**
125      * Serialize an instance, restore it, and check for equality.
126      */

127     public void testSerialization() {
128
129         IntervalBarRenderer r1 = new IntervalBarRenderer();
130         IntervalBarRenderer r2 = null;
131
132         try {
133             ByteArrayOutputStream JavaDoc buffer = new ByteArrayOutputStream JavaDoc();
134             ObjectOutput JavaDoc out = new ObjectOutputStream JavaDoc(buffer);
135             out.writeObject(r1);
136             out.close();
137
138             ObjectInput JavaDoc in = new ObjectInputStream JavaDoc(
139                 new ByteArrayInputStream JavaDoc(buffer.toByteArray())
140             );
141             r2 = (IntervalBarRenderer) in.readObject();
142             in.close();
143         }
144         catch (Exception JavaDoc e) {
145             System.out.println(e.toString());
146         }
147         assertEquals(r1, r2);
148
149     }
150
151     /**
152      * Draws the chart with a <code>null</code> info object to make sure that
153      * no exceptions are thrown (particularly by code in the renderer).
154      */

155     public void testDrawWithNullInfo() {
156         boolean success = false;
157         try {
158             double[][] starts = new double[][] {{0.1, 0.2, 0.3},
159                     {0.3, 0.4, 0.5}};
160             double[][] ends = new double[][] {{0.5, 0.6, 0.7}, {0.7, 0.8, 0.9}};
161             DefaultIntervalCategoryDataset dataset
162                 = new DefaultIntervalCategoryDataset(starts, ends);
163             IntervalBarRenderer renderer = new IntervalBarRenderer();
164             CategoryPlot plot = new CategoryPlot(dataset,
165                     new CategoryAxis("Category"), new NumberAxis("Value"),
166                     renderer);
167             JFreeChart chart = new JFreeChart(plot);
168             /* BufferedImage image = */ chart.createBufferedImage(300, 200,
169                     null);
170             success = true;
171         }
172         catch (NullPointerException JavaDoc e) {
173             e.printStackTrace();
174             success = false;
175         }
176         assertTrue(success);
177     }
178
179 }
180
Popular Tags