Package limelight.styles.compiling

Source Code of limelight.styles.compiling.CursorAttributeCompilerTest

//- 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.compiling;

import junit.framework.Assert;
import limelight.styles.abstrstyling.InvalidStyleAttributeError;
import limelight.styles.values.SimpleCursorValue;
import limelight.util.FakeKeyword;
import org.junit.Before;
import org.junit.Test;

import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.fail;

public class CursorAttributeCompilerTest
{
  private CursorAttributeCompiler compiler;

  @Before
  public void setUp() throws Exception
  {
    compiler = new CursorAttributeCompiler();
    compiler.setName("Cursor");
  }

  @Test
  public void testValidValue() throws Exception
  {
    assertEquals(SimpleCursorValue.DEFAULT, compiler.compile("default"));
    assertEquals(SimpleCursorValue.TEXT, compiler.compile("text"));
    assertEquals(SimpleCursorValue.HAND, compiler.compile("hand"));
    assertEquals(SimpleCursorValue.CROSSHAIR, compiler.compile("crosshair"));
  }

  @Test
  public void testValidValuesWithClojureStyleKeywords() throws Exception
  {
    assertEquals(SimpleCursorValue.DEFAULT, compiler.compile(new FakeKeyword("default")));
    assertEquals(SimpleCursorValue.TEXT, compiler.compile(new FakeKeyword("text")));
    assertEquals(SimpleCursorValue.HAND, compiler.compile(new FakeKeyword("hand")));
    assertEquals(SimpleCursorValue.CROSSHAIR, compiler.compile(new FakeKeyword("crosshair")));
  }

  @Test
  public void shouldHaveInvalidValue() throws Exception
  {
    checkForError("blah");
  }

  private void checkForError(String value)
  {
    try
    {
      compiler.compile(value);
      fail("should have throw error");
    }
    catch(InvalidStyleAttributeError e)
    {
      assertEquals("Invalid value '" + value + "' for Cursor style attribute.", e.getMessage());
    }
  }
}
TOP

Related Classes of limelight.styles.compiling.CursorAttributeCompilerTest

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.