Package org.pentaho.reporting.engine.classic.core.bugs

Source Code of org.pentaho.reporting.engine.classic.core.bugs.Prd3187Test

/*!
* 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.core.bugs;

import javax.swing.table.TableModel;

import junit.framework.TestCase;
import org.pentaho.reporting.engine.classic.core.AbstractDataFactory;
import org.pentaho.reporting.engine.classic.core.ClassicEngineBoot;
import org.pentaho.reporting.engine.classic.core.DataFactory;
import org.pentaho.reporting.engine.classic.core.DataRow;
import org.pentaho.reporting.engine.classic.core.MasterReport;
import org.pentaho.reporting.engine.classic.core.ReportDataFactoryException;
import org.pentaho.reporting.engine.classic.core.ReportProcessingException;
import org.pentaho.reporting.engine.classic.core.ResourceBundleFactory;
import org.pentaho.reporting.engine.classic.core.SubReport;
import org.pentaho.reporting.engine.classic.core.modules.output.pageable.graphics.PrintReportProcessor;
import org.pentaho.reporting.engine.classic.core.states.ProcessStateHandle;
import org.pentaho.reporting.libraries.base.config.Configuration;
import org.pentaho.reporting.libraries.resourceloader.ResourceKey;
import org.pentaho.reporting.libraries.resourceloader.ResourceManager;

public class Prd3187Test extends TestCase
{
  private static class TestDataFactory extends AbstractDataFactory
  {
    private boolean open;

    private TestDataFactory()
    {
      open = true;
    }

    public TableModel queryData(final String query, final DataRow parameters) throws ReportDataFactoryException
    {
      throw new ReportDataFactoryException("Unconditional error thrown");
    }

    public DataFactory derive()
    {
      return this;
    }

    public DataFactory clone()
    {
      return this;
    }

    public void close()
    {
      if (open)
      {
        open = false;
      }
    }

    public boolean isOpen()
    {
      return open;
    }

    public boolean isQueryExecutable(final String query, final DataRow parameters)
    {
      return true;
    }

    public String[] getQueryNames()
    {
      return new String[0];
    }
  }

  private class TestPrintReportProcessor extends PrintReportProcessor
  {
    private TestPrintReportProcessor(final MasterReport report)
        throws ReportProcessingException
    {
      super(report);
    }

    public ProcessStateHandle getProcessStateHandle()
    {
      return super.getProcessStateHandle();
    }
  }


  public Prd3187Test()
  {
  }

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

  public void testErrorDoesNotClose() throws Exception
  {
    final MasterReport report = new MasterReport();
    final TestDataFactory dataFactory = new TestDataFactory();
    report.setDataFactory(dataFactory);

    final TestPrintReportProcessor reportProcessor = new TestPrintReportProcessor(report);
    try
    {
      reportProcessor.paginate();
    }
    catch (Exception e)
    {
      e.printStackTrace();
    }
    assertNotNull(reportProcessor.getErrorReason());
    final ProcessStateHandle processStateHandle = reportProcessor.getProcessStateHandle();
    processStateHandle.close();
    assertFalse(dataFactory.isOpen());
  }


  public void testErrorDoesNotCloseSubreport() throws Exception
  {
    final TestDataFactory dataFactory = new TestDataFactory();
    final SubReport subreport = new SubReport();
    subreport.setQuery("Query");
    subreport.setDataFactory(dataFactory);

    final MasterReport report = new MasterReport();
    report.getReportHeader().addSubReport(subreport);

    final TestPrintReportProcessor reportProcessor = new TestPrintReportProcessor(report);
    try
    {
      reportProcessor.paginate();
    }
    catch (Exception e)
    {
      e.printStackTrace();
    }
    assertNotNull(reportProcessor.getErrorReason());
    final ProcessStateHandle processStateHandle = reportProcessor.getProcessStateHandle();
    processStateHandle.close();
    assertFalse(dataFactory.isOpen());
  }
}
TOP

Related Classes of org.pentaho.reporting.engine.classic.core.bugs.Prd3187Test

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.