- /* ===========================================================
- * JFreeChart : a free chart library for the Java(tm) platform
- * ===========================================================
- *
- * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors.
- *
- * Project Info: http://www.jfree.org/jfreechart/index.html
- *
- * 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., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, USA.
- *
- * [Java is a trademark or registered trademark of Sun Microsystems, Inc.
- * in the United States and other countries.]
- *
- * -----------------------
- * XYBarRendererTests.java
- * -----------------------
- * (C) Copyright 2003-2005, by Object Refinery Limited and Contributors.
- *
- * Original Author: David Gilbert (for Object Refinery Limited);
- * Contributor(s): -;
- *
- * $Id: XYBarRendererTests.java,v 1.3 2005/01/07 12:14:08 mungady Exp $
- *
- * Changes
- * -------
- * 25-Mar-2003 : Version 1 (DG);
- * 22-Oct-2003 : Added hashCode test (DG);
- *
- */
- package org.jfree.chart.renderer.xy.junit;
- import java.io.ByteArrayInputStream;
- import java.io.ByteArrayOutputStream;
- import java.io.ObjectInput;
- import java.io.ObjectInputStream;
- import java.io.ObjectOutput;
- import java.io.ObjectOutputStream;
- import junit.framework.Test;
- import junit.framework.TestCase;
- import junit.framework.TestSuite;
- import org.jfree.chart.ChartFactory;
- import org.jfree.chart.JFreeChart;
- import org.jfree.chart.axis.NumberAxis;
- import org.jfree.chart.plot.PlotOrientation;
- import org.jfree.chart.plot.XYPlot;
- import org.jfree.chart.renderer.xy.XYBarRenderer;
- import org.jfree.data.Range;
- import org.jfree.data.xy.XYSeriesCollection;
- import org.jfree.ui.GradientPaintTransformType;
- import org.jfree.ui.StandardGradientPaintTransformer;
- /**
- * Tests for the {@link XYBarRenderer} class.
- */
- public class XYBarRendererTests extends TestCase {
- /**
- * Returns the tests as a test suite.
- *
- * @return The test suite.
- */
- public static Test suite() {
- return new TestSuite(XYBarRendererTests.class);
- }
- /**
- * Constructs a new set of tests.
- *
- * @param name the name of the tests.
- */
- public XYBarRendererTests(String name) {
- super(name);
- }
- /**
- * Test that the equals() method distinguishes all fields.
- */
- public void testEquals() {
- // default instances
- XYBarRenderer r1 = new XYBarRenderer();
- XYBarRenderer r2 = new XYBarRenderer();
- assertTrue(r1.equals(r2));
- assertTrue(r2.equals(r1));
- // setBase()
- r1.setBase(1.0);
- assertFalse(r1.equals(r2));
- r2.setBase(1.0);
- assertTrue(r1.equals(r2));
- // setUseYInterval
- r1.setUseYInterval(!r1.getUseYInterval());
- assertFalse(r1.equals(r2));
- r2.setUseYInterval(!r2.getUseYInterval());
- assertTrue(r1.equals(r2));
- // setMargin()
- r1.setMargin(0.10);
- assertFalse(r1.equals(r2));
- r2.setMargin(0.10);
- assertTrue(r1.equals(r2));
- // setDrawBarOutline()
- r1.setDrawBarOutline(!r1.isDrawBarOutline());
- assertFalse(r1.equals(r2));
- r2.setDrawBarOutline(!r2.isDrawBarOutline());
- assertTrue(r1.equals(r2));
- // setGradientPaintTransformer()
- r1.setGradientPaintTransformer(
- new StandardGradientPaintTransformer(
- GradientPaintTransformType.CENTER_HORIZONTAL
- )
- );
- assertFalse(r1.equals(r2));
- r2.setGradientPaintTransformer(
- new StandardGradientPaintTransformer(
- GradientPaintTransformType.CENTER_HORIZONTAL
- )
- );
- assertTrue(r1.equals(r2));
- }
- /**
- * Two objects that are equal are required to return the same hashCode.
- */
- public void testHashcode() {
- XYBarRenderer r1 = new XYBarRenderer();
- XYBarRenderer r2 = new XYBarRenderer();
- assertTrue(r1.equals(r2));
- int h1 = r1.hashCode();
- int h2 = r2.hashCode();
- assertEquals(h1, h2);
- }
- /**
- * Confirm that cloning works.
- */
- public void testCloning() {
- XYBarRenderer r1 = new XYBarRenderer();
- XYBarRenderer r2 = null;
- try {
- r2 = (XYBarRenderer) r1.clone();
- }
- catch (CloneNotSupportedException e) {
- System.err.println("XYBarRendererTests.testCloning: failed to clone.");
- }
- assertTrue(r1 != r2);
- assertTrue(r1.getClass() == r2.getClass());
- assertTrue(r1.equals(r2));
- }
- /**
- * Serialize an instance, restore it, and check for equality.
- */
- public void testSerialization() {
- XYBarRenderer r1 = new XYBarRenderer();
- XYBarRenderer r2 = null;
- try {
- ByteArrayOutputStream buffer = new ByteArrayOutputStream();
- ObjectOutput out = new ObjectOutputStream(buffer);
- out.writeObject(r1);
- out.close();
- ObjectInput in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray()));
- r2 = (XYBarRenderer) in.readObject();
- in.close();
- }
- catch (Exception e) {
- System.out.println(e.toString());
- }
- assertEquals(r1, r2);
- }
- /**
- * Check that the renderer is calculating the domain bounds correctly.
- */
- public void testFindDomainBounds() {
- XYSeriesCollection dataset = RendererXYPackageTests.createTestXYSeriesCollection();
- JFreeChart chart = ChartFactory.createXYBarChart(
- "Test Chart", "X", false, "Y", dataset, PlotOrientation.VERTICAL, false, false, false
- );
- XYPlot plot = (XYPlot) chart.getPlot();
- NumberAxis domainAxis = (NumberAxis) plot.getDomainAxis();
- domainAxis.setAutoRangeIncludesZero(false);
- Range bounds = domainAxis.getRange();
- System.out.println(bounds);
- assertFalse(bounds.contains(0.3));
- assertTrue(bounds.contains(0.5));
- assertTrue(bounds.contains(2.5));
- assertFalse(bounds.contains(2.8));
- }
- }