/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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. * * Copyright (c) 2006 - 2017 Pentaho Corporation.. All rights reserved. */ package org.pentaho.plugin.jfreereport.reportcharts; import java.awt.Color; import java.util.HashMap; import java.util.Map; import javax.swing.table.TableModel; import org.jfree.chart.plot.SpiderWebPlot; import org.junit.BeforeClass; import org.junit.Test; import org.junit.Assert; import org.mockito.Mockito; import org.pentaho.reporting.engine.classic.core.ClassicEngineBoot; import org.pentaho.reporting.engine.classic.core.StaticDataRow; import org.pentaho.reporting.engine.classic.core.function.AggregateTestDataTableModel; import org.pentaho.reporting.engine.classic.core.function.ProcessingContext; import org.pentaho.reporting.engine.classic.core.layout.output.DefaultProcessingContext; import org.pentaho.reporting.engine.classic.core.testsupport.DebugExpressionRuntime; public class RadarChartExpressionTest { @BeforeClass public static void ensureBootIsDone() { ClassicEngineBoot.getInstance().start(); } @Test public void testComputeChart() { System.out.println( "Start" ); RadarChartExpression radarChart = new RadarChartExpression(); TableModel tm = new AggregateTestDataTableModel(); Map<String, Object> data = new HashMap<String, Object>(); CollectorFunctionResult cfr = Mockito.mock( CollectorFunctionResult.class ); Mockito.when( cfr.getDataSet() ).thenReturn( Mockito.mock( org.jfree.data.general.Dataset.class ) ); data.put( "name1", cfr ); StaticDataRow dr = new StaticDataRow( data ); ProcessingContext pc = new DefaultProcessingContext(); DebugExpressionRuntime der = new DebugExpressionRuntime( dr, tm, 0, pc ); radarChart.setRuntime( der ); radarChart.setSeriesColor( new String[]{ "maroon", "#FDDF00" } ); radarChart.setDataSource( "name1" ); JFreeChartReportDrawable chart = (JFreeChartReportDrawable) radarChart.getValue(); Assert.assertTrue( "first color is maroon : ", ( ( (SpiderWebPlot) chart.getChart().getPlot() ).getSeriesPaint( 0 ).equals( ColorHelper.lookupColor( "maroon" ) ) ) ); Assert.assertTrue( "second color is #FDDF00 : ", ( ( (SpiderWebPlot) chart.getChart().getPlot() ).getSeriesPaint( 1 ).equals( Color.decode( "#FDDF00" ) ) ) ); System.out.println( "Finish" ); } }