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

Source Code of org.pentaho.reporting.engine.classic.core.CompoundDataFactoryTest

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

import java.util.Arrays;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.TableModel;

import junit.framework.TestCase;
import org.pentaho.reporting.engine.classic.core.metadata.DataFactoryRegistry;
import org.pentaho.reporting.engine.classic.core.metadata.DefaultDataFactoryCore;
import org.pentaho.reporting.engine.classic.core.metadata.DefaultDataFactoryMetaData;
import org.pentaho.reporting.engine.classic.core.metadata.MetaDataLookupException;

public class CompoundDataFactoryTest extends TestCase
{
  private static class MockDataFactory extends AbstractDataFactory
  {
    private static final long serialVersionUID = 1L;
    private String[] queryNames;

    public MockDataFactory(final String... queryNames)
    {
      this.queryNames = queryNames;
    }

    public TableModel queryData(final String query, final DataRow parameters) throws ReportDataFactoryException
    {
      return new DefaultTableModel();
    }

    public DataFactory derive()
    {
      return this;
    }

    public void close()
    {
    }

    public boolean isQueryExecutable(final String query, final DataRow parameters)
    {
      return queryNames != null && Arrays.binarySearch(queryNames, query) != -1;
    }

    public String[] getQueryNames()
    {
      return queryNames;
    }

    @Override
    public MockDataFactory clone()
    {
      return new MockDataFactory(queryNames);
    }
  }


  public void testGetDataFactoryForName_no_metadata()
  {
    try
    {
      final String queryName = "test"; //$NON-NLS-1$
      final CompoundDataFactory cdf = new CompoundDataFactory();
      cdf.add(new MockDataFactory(queryName));

      assertFalse(DataFactoryRegistry.getInstance().isRegistered(MockDataFactory.class.getName()));
      assertEquals(1, cdf.getQueryNames().length);
      cdf.getDataFactoryForQuery(queryName);
      fail();
    }
    catch (MetaDataLookupException e)
    {
      // we no longer allow data-factories without metadata in the system.
      // e.printStackTrace();
    }

  }

  public void testGetDataFactoryForName_freeform()
  {
    final DefaultDataFactoryMetaData metadata = new DefaultDataFactoryMetaData(
        MockDataFactory.class.getName(),
        "", //$NON-NLS-1$
        "", //$NON-NLS-1$
        false,
        false,
        false,
        false,
        false,
        true, // freeform
        false,
        false,
        new DefaultDataFactoryCore(), -1);

    try
    {
      final String queryName = "test"; //$NON-NLS-1$
      final CompoundDataFactory cdf = new CompoundDataFactory();
      cdf.add(new MockDataFactory(queryName));

      DataFactoryRegistry.getInstance().register(metadata);

      assertTrue(DataFactoryRegistry.getInstance().isRegistered(MockDataFactory.class.getName()));
      assertEquals(1, cdf.getQueryNames().length);
      assertNotNull("Could not find DataFactory for query", cdf.getDataFactoryForQuery(queryName)); //$NON-NLS-1$
    }
    finally
    {
      DataFactoryRegistry.getInstance().unregister(metadata);
    }
  }

  public void testGetDataFactoryForName_non_freeform()
  {
    final DefaultDataFactoryMetaData metadata = new DefaultDataFactoryMetaData(
        MockDataFactory.class.getName(),
        "", //$NON-NLS-1$
        "", //$NON-NLS-1$
        false,
        false,
        false,
        false,
        false,
        false, // freeform
        false,
        false,
        new DefaultDataFactoryCore(), -1);

    try
    {
    final String queryName = "test"; //$NON-NLS-1$
    final CompoundDataFactory cdf = new CompoundDataFactory();
    cdf.add(new MockDataFactory(queryName));
    DataFactoryRegistry.getInstance().register(metadata);

    assertTrue(DataFactoryRegistry.getInstance().isRegistered(MockDataFactory.class.getName()));
    assertEquals(1, cdf.getQueryNames().length);
    assertNotNull("Could not find DataFactory for query", cdf.getDataFactoryForQuery(queryName)); //$NON-NLS-1$
    }
    finally
    {
      DataFactoryRegistry.getInstance().unregister(metadata);
    }
  }


}
TOP

Related Classes of org.pentaho.reporting.engine.classic.core.CompoundDataFactoryTest

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.