/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This 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 software 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 software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.rendering.internal.macro.chart.source.table; import org.junit.Assert; import org.junit.Test; import org.jfree.data.general.Dataset; import org.jfree.chart.axis.ValueAxis; import org.jfree.chart.axis.CategoryAxis; import org.jfree.data.category.CategoryDataset; import org.xwiki.chart.model.ChartModel; /** * Tests building a category dataset from a table data source. * * @version $Id: 8091173cb6c930513484c6a782b792c9b80c3c69 $ * @since 4.2M1 */ public class TableCategoryDatasetBuilderTest extends AbstractMacroContentTableBlockDataSourceTest { @Test public void testBuildCategoryDataset() throws Exception { String content = "| column 1 | column 2 | column 3 | column 4\n" + "| row 1 | 12 | 13 | 14 \n" + "| row 2 | 22 | 23 | 24 \n"; setUpContentExpectation(content); getDataSource().buildDataset(content, map("type", "line", "range", "B2-D3"), null); ChartModel chartModel = getDataSource().getChartModel(); Dataset dataset = chartModel.getDataset(); Assert.assertTrue(dataset instanceof CategoryDataset); Assert.assertTrue(chartModel.getAxis(0) instanceof CategoryAxis); Assert.assertTrue(chartModel.getAxis(1) instanceof ValueAxis); CategoryDataset categoryDataset = (CategoryDataset) dataset; Assert.assertTrue(categoryDataset.getRowKey(0).equals(" row 1 ")); Assert.assertTrue(categoryDataset.getRowKey(1).equals(" row 2 ")); Assert.assertTrue(categoryDataset.getColumnKey(0).equals(" column 2 ")); Assert.assertTrue(categoryDataset.getColumnKey(1).equals(" column 3 ")); Assert.assertTrue(categoryDataset.getColumnKey(2).equals(" column 4")); Assert.assertTrue(categoryDataset.getValue(0, 0).intValue() == 12); Assert.assertTrue(categoryDataset.getValue(0, 1).intValue() == 13); Assert.assertTrue(categoryDataset.getValue(0, 2).intValue() == 14); Assert.assertTrue(categoryDataset.getValue(1, 0).intValue() == 22); Assert.assertTrue(categoryDataset.getValue(1, 1).intValue() == 23); Assert.assertTrue(categoryDataset.getValue(1, 2).intValue() == 24); } @Test public void testBuildCategoryDatasetColumnsSeries() throws Exception { String content = "| column 1 | column 2 | column 3 | column 4\n" + "| row 1 | 12 | 13 | 14 \n" + "| row 2 | 22 | 23 | 24 \n"; setUpContentExpectation(content); getDataSource().buildDataset(content, map("type", "line", "range", "B2-D3", "series", "columns"), null); ChartModel chartModel = getDataSource().getChartModel(); Dataset dataset = chartModel.getDataset(); Assert.assertTrue(dataset instanceof CategoryDataset); Assert.assertTrue(chartModel.getAxis(0) instanceof CategoryAxis); Assert.assertTrue(chartModel.getAxis(1) instanceof ValueAxis); CategoryDataset categoryDataset = (CategoryDataset) dataset; Assert.assertTrue(categoryDataset.getColumnKey(0).equals(" row 1 ")); Assert.assertTrue(categoryDataset.getColumnKey(1).equals(" row 2 ")); Assert.assertTrue(categoryDataset.getRowKey(0).equals(" column 2 ")); Assert.assertTrue(categoryDataset.getRowKey(1).equals(" column 3 ")); Assert.assertTrue(categoryDataset.getRowKey(2).equals(" column 4")); Assert.assertTrue(categoryDataset.getValue(0, 0).intValue() == 12); Assert.assertTrue(categoryDataset.getValue(1, 0).intValue() == 13); Assert.assertTrue(categoryDataset.getValue(2, 0).intValue() == 14); Assert.assertTrue(categoryDataset.getValue(0, 1).intValue() == 22); Assert.assertTrue(categoryDataset.getValue(1, 1).intValue() == 23); Assert.assertTrue(categoryDataset.getValue(2, 1).intValue() == 24); } }