Package org.pentaho.reporting.engine.classic.wizard

Source Code of org.pentaho.reporting.engine.classic.wizard.GeneratorTest

/*!
* 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) 2002-2013 Pentaho Corporation..  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.wizard;

import junit.framework.TestCase;
import org.pentaho.reporting.engine.classic.core.AttributeNames;
import org.pentaho.reporting.engine.classic.core.ClassicEngineBoot;
import org.pentaho.reporting.engine.classic.core.CrosstabColumnGroup;
import org.pentaho.reporting.engine.classic.core.CrosstabColumnGroupBody;
import org.pentaho.reporting.engine.classic.core.CrosstabGroup;
import org.pentaho.reporting.engine.classic.core.CrosstabRowGroup;
import org.pentaho.reporting.engine.classic.core.CrosstabRowGroupBody;
import org.pentaho.reporting.engine.classic.core.MasterReport;
import org.pentaho.reporting.engine.classic.core.RelationalGroup;
import org.pentaho.reporting.engine.classic.core.SubGroupBody;
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.states.NoOpPerformanceMonitorContext;
import org.pentaho.reporting.engine.classic.core.states.datarow.DefaultFlowController;
import org.pentaho.reporting.engine.classic.core.util.ReportParameterValues;
import org.pentaho.reporting.engine.classic.wizard.model.DefaultDetailFieldDefinition;
import org.pentaho.reporting.engine.classic.wizard.model.DefaultGroupDefinition;
import org.pentaho.reporting.engine.classic.wizard.model.DefaultWizardSpecification;
import org.pentaho.reporting.engine.classic.wizard.model.DetailFieldDefinition;
import org.pentaho.reporting.engine.classic.wizard.model.GroupDefinition;
import org.pentaho.reporting.engine.classic.wizard.model.GroupType;

public class GeneratorTest extends TestCase
{
  public GeneratorTest()
  {
  }

  public GeneratorTest(final String s)
  {
    super(s);
  }

  protected void setUp() throws Exception
  {
    ClassicEngineBoot.getInstance().start();
  }

  public void testCrosstab() throws Exception
  {
    final GroupDefinition[] groupDefs = new GroupDefinition[3];
    groupDefs[0] = new DefaultGroupDefinition(GroupType.RELATIONAL, "group-field1");
    groupDefs[1] = new DefaultGroupDefinition(GroupType.CT_ROW, "group-field2");
    groupDefs[2] = new DefaultGroupDefinition(GroupType.CT_COLUMN, "group-field3");

    final DetailFieldDefinition[] detailFields = new DetailFieldDefinition[1];
    detailFields[0] = new DefaultDetailFieldDefinition("detail-field1");

    final DefaultWizardSpecification wizardSpecification = new DefaultWizardSpecification();
    wizardSpecification.setGroupDefinitions(groupDefs);
    wizardSpecification.setDetailFieldDefinitions(detailFields);

    final MasterReport report = new MasterReport();
    report.setAttribute(AttributeNames.Wizard.NAMESPACE, "wizard-spec", wizardSpecification);

    final ProcessingContext processingContext = new DefaultProcessingContext();
    final DefaultFlowController flowController = new DefaultFlowController
        (processingContext, report.getDataSchemaDefinition(), new ReportParameterValues(),
            new NoOpPerformanceMonitorContext());

    final WizardProcessor processor = new WizardProcessor();
    final MasterReport masterReport = processor.performPreProcessing(report, flowController);

    final int count = masterReport.getGroupCount();
    assertEquals(groupDefs.length + 2, count);
    final RelationalGroup defaultGroup = (RelationalGroup) masterReport.getRootGroup();
    assertEquals("Default-Group detector", 0, defaultGroup.getFieldsArray().length);
    final SubGroupBody body = (SubGroupBody) defaultGroup.getBody();
    final RelationalGroup group1 = (RelationalGroup) body.getGroup();
    assertEquals("Rel-Group", "group-field1", group1.getFieldsArray()[0]);
    final SubGroupBody body1 = (SubGroupBody) group1.getBody();
    final CrosstabGroup ctGroup = (CrosstabGroup) body1.getGroup();
    final CrosstabRowGroupBody body2 = (CrosstabRowGroupBody) ctGroup.getBody();
    final CrosstabRowGroup rowGroup = body2.getGroup();
    assertEquals("Row-Group", "group-field2", rowGroup.getField());

    final CrosstabColumnGroupBody body3 = (CrosstabColumnGroupBody) rowGroup.getBody();
    final CrosstabColumnGroup colGroup = body3.getGroup();
    assertEquals("Col-Group", "group-field3", colGroup.getField());

  }
}
TOP

Related Classes of org.pentaho.reporting.engine.classic.wizard.GeneratorTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.