Package org.pentaho.reporting.engine.classic.testcases.table.model

Source Code of org.pentaho.reporting.engine.classic.testcases.table.model.ResultTable

/*
* 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) 2007 - 2009 Pentaho Corporation, .  All rights reserved.
*/

package org.pentaho.reporting.engine.classic.testcases.table.model;

import junit.framework.Assert;
import junit.framework.AssertionFailedError;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.pentaho.reporting.engine.classic.core.layout.model.BorderEdge;
import org.pentaho.reporting.engine.classic.core.layout.model.LogicalPageBox;
import org.pentaho.reporting.engine.classic.core.modules.output.table.base.CellBackground;
import org.pentaho.reporting.engine.classic.core.modules.output.table.base.CellBackgroundProducer;
import org.pentaho.reporting.engine.classic.core.modules.output.table.base.SheetLayout;
import org.pentaho.reporting.engine.classic.core.modules.output.table.base.TableContentProducer;
import org.pentaho.reporting.libraries.base.util.ObjectTable;

/**
* Creation-Date: 20.08.2007, 15:39:22
*
* @author Thomas Morgner
*/
public class ResultTable extends ObjectTable
{
  private static final Log logger = LogFactory.getLog(ResultTable.class);
  private boolean strict;
  private String name;
  private CellBackgroundProducer cellBackgroundProducer;

  public ResultTable()
  {
    this.cellBackgroundProducer = new CellBackgroundProducer(true, true);
  }

  public String getName()
  {
    return name;
  }

  public void setName(final String name)
  {
    this.name = name;
  }

  public boolean isStrict()
  {
    return strict;
  }

  public void setStrict(final boolean strict)
  {
    this.strict = strict;
  }

  public void setResultCell(final int row, final int column, final ResultCell object)
  {
    super.setObject(row, column, object);
  }

  public ResultCell getResultCell(final int row, final int column)
  {
    return (ResultCell) super.getObject(row, column);
  }

  public void validate(final LogicalPageBox logicalPageBox,
                       final SheetLayout sheetLayout,
                       final TableContentProducer contentProducer)
  {
    Assert.assertEquals("RowCount", getRowCount(), sheetLayout.getRowCount());
    Assert.assertEquals("ColCount", getColumnCount(), sheetLayout.getColumnCount());
    int row = 0;
    int col = 0;
    try
    {
      for (row = 0; row < getRowCount(); row++)
      {
        for (col = 0; col < getColumnCount(); col++)
        {
          final int sectionType = contentProducer.getSectionType(row, col);
          final ResultCell resultCell = getResultCell(row, col);
          final CellBackground backgroundAt =
              cellBackgroundProducer.getBackgroundAt(logicalPageBox, sheetLayout, col, row, true, sectionType);
          if (resultCell == null)
          {
            assertEmptyBackground(backgroundAt);
          }
          else
          {
            resultCell.assertValidity(backgroundAt);
          }
        }
      }
    }
    catch (AssertionFailedError afe)
    {
      logger.error("Assertation failure at row " + row + ", column " + col);
      throw afe;
    }
  }

  private void assertEmptyBackground(final CellBackground background)
  {
    if (background == null)
    {
      return;
    }
    Assert.assertEquals(background.getAnchors().length, 0);
    Assert.assertEquals(BorderEdge.EMPTY, background.getBottom());
    Assert.assertEquals(BorderEdge.EMPTY, background.getTop());
    Assert.assertEquals(BorderEdge.EMPTY, background.getLeft());
    Assert.assertEquals(BorderEdge.EMPTY, background.getRight());
    Assert.assertNull(background.getBackgroundColor());
  }
}
TOP

Related Classes of org.pentaho.reporting.engine.classic.testcases.table.model.ResultTable

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.