Package org.richfaces.renderkit.html.images

Source Code of org.richfaces.renderkit.html.images.SimpleSeparatorImageTest

/**
* License Agreement.
*
* Rich Faces - Natural Ajax for Java Server Faces (JSF)
*
* Copyright (C) 2007 Exadel, Inc.
*
* This library 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.
*
* This library 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
*/
package org.richfaces.renderkit.html.images;

import java.awt.Color;

import org.ajax4jsf.tests.AbstractAjax4JsfTestCase;
import org.ajax4jsf.util.HtmlColor;
import org.richfaces.component.html.HtmlSeparator;
import org.richfaces.skin.Skin;
import org.richfaces.skin.SkinFactory;

/**
* @author Anton Belevich
*
*/
public class SimpleSeparatorImageTest extends AbstractAjax4JsfTestCase {

  public SimpleSeparatorImageTest(String name) {
    super(name);
  }
 
  public void testSaveResources(){
   
    Skin skin = SkinFactory.getInstance().getSkin(facesContext);
    Skin defaultSkin = SkinFactory.getInstance().getDefaultSkin(facesContext);
   
    SimpleSeparatorImage img = new SimpleSeparatorImage();
   
    String skinParameter1 = "headerBackgroundColor";
    String headerBackgroundColor = (String) skin.getParameter(facesContext, skinParameter1);
   
    if (null == headerBackgroundColor || "".equals(headerBackgroundColor))
      headerBackgroundColor = (String) defaultSkin.getParameter(facesContext, skinParameter1);
   
    headerBackgroundColor = headerBackgroundColor == null ? "#4169E1" : headerBackgroundColor;
         
    Color color1 = HtmlColor.decode(headerBackgroundColor);
   
    HtmlSeparator separator = new HtmlSeparator();
   
    byte [] data = (byte []) img.getDataToStore(facesContext, separator);
    assertNotNull(data);
   
    SimpleSeparatorImage.SimpleSeparatorData separatorData = (SimpleSeparatorImage.SimpleSeparatorData)img.deserializeData(data);
    assertEquals(color1, new Color(separatorData.getColor()));

  }
}
TOP

Related Classes of org.richfaces.renderkit.html.images.SimpleSeparatorImageTest

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.