//- 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.styles.values;
import limelight.ui.MockGraphics;
import limelight.util.Box;
import limelight.styles.HorizontalAlignment;
import limelight.styles.VerticalAlignment;
import java.awt.*;
public class RepeatYFillStrategyValueTest extends FillStrategyValueTest
{
private RepeatYFillStrategyValue attribute;
private MockGraphics graphics;
private Box clip;
public void setUp() throws Exception
{
attribute = new RepeatYFillStrategyValue();
graphics = new MockGraphics();
clip = new Box(0, 0, 60, 60);
graphics.clip = clip;
}
public void testName() throws Exception
{
assertEquals("repeat_y", attribute.toString());
}
public void testFill() throws Exception
{
Image image = new MockImage(20, 20);
attribute.fill(graphics, image, new StaticXCoordinateValue(0), new StaticYCoordinateValue(0));
assertEquals(3, graphics.drawnImages.size());
checkImage(graphics.drawnImages.get(0), image, 0, 0);
checkImage(graphics.drawnImages.get(1), image, 0, 20);
checkImage(graphics.drawnImages.get(2), image, 0, 40);
}
public void testFillNonZero() throws Exception
{
Image image = new MockImage(20, 20);
attribute.fill(graphics, image, new StaticXCoordinateValue(20), new StaticYCoordinateValue(20));
assertEquals(2, graphics.drawnImages.size());
checkImage(graphics.drawnImages.get(0), image, 20, 20);
checkImage(graphics.drawnImages.get(1), image, 20, 40);
}
public void testFillUneven() throws Exception
{
Image image = new MockImage(30, 30);
attribute.fill(graphics, image, new StaticXCoordinateValue(20), new StaticYCoordinateValue(20));
assertEquals(2, graphics.drawnImages.size());
checkImage(graphics.drawnImages.get(0), image, 20, 20);
checkImage(graphics.drawnImages.get(1), image, 20, 50);
}
public void testFillAligned() throws Exception
{
Image image = new MockImage(35, 35);
attribute.fill(graphics, image, new AlignedXCoordinateValue(HorizontalAlignment.CENTER), new AlignedYCoordinateValue(VerticalAlignment.CENTER));
assertEquals(2, graphics.drawnImages.size());
checkImage(graphics.drawnImages.get(0), image, 12, -5);
checkImage(graphics.drawnImages.get(1), image, 12, 30);
}
}