![JAR search and dependency download from the Maven repository](/logo.png)
org.jboss.test.faces.mockito.component.ViewBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsf-mockito Show documentation
Show all versions of jsf-mockito Show documentation
Uses Mockito to create mocked JavaServer Faces environment classes
The newest version!
/*
* $Id$
* JBoss, Home of Professional Open Source
* Copyright 2010, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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 software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.faces.mockito.component;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import javax.faces.component.UIComponent;
import javax.faces.component.UIViewRoot;
/**
*
* @author [email protected]
*
*/
public class ViewBuilder extends TreeBuilderImpl {
protected ViewBuilder(UIViewRoot component) {
super(component);
}
public static ViewBuilder createView() {
return createView(mock(UIViewRoot.class));
}
public static ViewBuilder createView(UIViewRoot mockViewRoot) {
ViewBuilder treeBuilder = new ViewBuilder(mockViewRoot);
when(mockViewRoot.getParent()).thenReturn(null);
return treeBuilder;
}
public ViewBuilder setViewId(String viewId) {
when(getComponent().getViewId()).thenReturn(viewId);
return this;
}
public ViewBuilder children(TreeBuilder> ... builders) {
super.children(builders);
return this;
};
public ViewBuilder facets(Facet> ... facets) {
super.facets(facets);
return this;
};
public static TreeBuilder component() {
return component(mock(UIComponent.class));
}
public static TreeBuilder component(Class childType) {
return component(mock(childType));
}
public static TreeBuilder component(T child) {
TreeBuilderImpl treeBuilder = createComponent(child);
return treeBuilder;
}
private static TreeBuilderImpl createComponent(T child) {
TreeBuilderImpl treeBuilder = new TreeBuilderImpl(child);
return treeBuilder;
}
/* (non-Javadoc)
* @see org.jboss.test.faces.mock.component.TreeBuilder#addFacet(java.lang.String)
*/
public static Facet facet(String name) {
return facet(name, mock(UIComponent.class));
}
/* (non-Javadoc)
* @see org.jboss.test.faces.mock.component.TreeBuilder#addFacet(java.lang.String, java.lang.Class)
*/
public static Facet facet(String name, Class childType) {
return facet(name, mock(childType));
}
/* (non-Javadoc)
* @see org.jboss.test.faces.mock.component.TreeBuilder#addFacet(java.lang.String, javax.faces.component.UIComponent)
*/
public static Facet facet(String name, T child) {
TreeBuilderImpl treeBuilder = createComponent(child);
return new Facet(name,treeBuilder);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy