Package limelight.ui.painting

Source Code of limelight.ui.painting.BackgroundPainterTest

//- Copyright © 2008-2011 8th Light, Inc. All Rights Reserved.
//- Limelight and all included source files are distributed under terms of the MIT License.

package limelight.ui.painting;

import junit.framework.TestCase;
import limelight.ui.Painter;
import limelight.ui.model.MockProp;
import limelight.util.Colors;
import limelight.ui.MockGraphics;
import limelight.styles.Style;
import limelight.styles.compiling.RealStyleAttributeCompilerFactory;

import java.awt.*;

public class BackgroundPainterTest extends TestCase
{
  static
  {
    RealStyleAttributeCompilerFactory.install();
  }

  private Style style;
  private Painter painter;
  private MockGraphics graphics;
  private MockProp panel;

  public void setUp() throws Exception
  {
    panel = new MockProp();
    style = panel.getStyle();
    painter = BackgroundPainter.instance;
    graphics = new MockGraphics();
  }

  public void testNoPainting() throws Exception
  {
    style.setBackgroundColor("transparent");

    painter.paint(graphics, panel);

    assertEquals(0, graphics.filledShapes.size());
  }

//  public void testImageBackground() throws Exception
//  {
//    //???
//  }

  public void testPlainColor() throws Exception
  {
    style.setBackgroundColor("blue");

    painter.paint(graphics, panel);

    assertEquals(1, graphics.filledShapes.size());
    assertEquals(Color.blue, graphics.filledShapes.get(0).color);
    assertEquals(null, graphics.filledShapes.get(0).paint);
  }

  public void testGradient() throws Exception
  {
    style.setBackgroundColor("blue");
    style.setGradient("on");

    painter.paint(graphics, panel);

    assertEquals(1, graphics.filledShapes.size());
    MockGraphics.DrawnShape filledShape = graphics.filledShapes.get(0);
    assertEquals(GradientPaint.class, filledShape.paint.getClass());
    GradientPaint paint = (GradientPaint)filledShape.paint;
    assertEquals(Color.blue, paint.getColor1());
    assertEquals(Colors.TRANSPARENT, paint.getColor2());
  }
}
TOP

Related Classes of limelight.ui.painting.BackgroundPainterTest

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.