All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.struts.mock.MockFormBean Maven / Gradle / Ivy

/*
 * $Id: MockFormBean.java 471754 2006-11-06 14:55:09Z husted $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.apache.struts.mock;

import org.apache.struts.action.ActionForm;

import java.util.HashMap;
import java.util.Map;

/**
 * 

General purpose form bean for unit tests.

* * @version $Rev: 471754 $ $Date: 2005-05-07 12:45:39 -0400 (Sat, 07 May 2005) * $ */ public class MockFormBean extends ActionForm { /* *

* Flag to indicate whether certain methods should complete properly * or throw an Exception *

*/ private boolean throwException = false; private boolean returnNulls = false; private String defaultValue; private Double defaultDouble; private int arrayCount; protected boolean booleanProperty = false; protected String stringProperty = null; // ------------------- Constructors public MockFormBean() { this(null); } public MockFormBean(boolean throwException, boolean returnNulls) { super(); this.throwException = throwException; this.returnNulls = returnNulls; } public MockFormBean(boolean throwException) { this.throwException = throwException; } public MockFormBean(boolean throwException, boolean returnNulls, String defaultValue) { this(throwException, returnNulls); this.defaultValue = defaultValue; } public MockFormBean(String stringProperty) { this.stringProperty = stringProperty; } public MockFormBean(boolean throwException, boolean returnNulls, String defaultValue, int arrayCount) { this(throwException, returnNulls, defaultValue); this.arrayCount = arrayCount; } public MockFormBean(boolean throwException, boolean returnNulls, Double defaultDouble) { this(throwException, returnNulls); this.defaultDouble = defaultDouble; } // ------------------- public methods public String getJustThrowAnException() throws Exception { throw new Exception(); } public Object getThrowIllegalAccessException() throws Exception { if (true) { throw new IllegalAccessException(); } return null; } public String getStringValue() throws Exception { if (throwException) { throw new Exception(); } if (returnNulls) { return null; } return defaultValue; } public String[] getStringArray() throws Exception { if (throwException) { throw new Exception(); } if (returnNulls) { return null; } String[] rtn = new String[arrayCount]; for (int i = 0; i < rtn.length; i++) { rtn[i] = defaultValue + i; } return rtn; } public Double getDoubleValue() throws Exception { if (throwException) { throw new Exception(); } if (returnNulls) { return null; } return defaultDouble; } public boolean getBooleanProperty() { return (this.booleanProperty); } public void setBooleanProperty(boolean booleanProperty) { this.booleanProperty = booleanProperty; } public Map getMapProperty() { HashMap map = new HashMap(); map.put("foo1", "bar1"); map.put("foo2", "bar2"); return (map); } public Map getMapPropertyArrayValues() { HashMap map = new HashMap(); map.put("foo1", new String[] { "bar1", "baz1" }); map.put("foo2", new String[] { "bar2", "baz2" }); return (map); } public String getStringProperty() { return (this.stringProperty); } public void setStringProperty(String stringProperty) { this.stringProperty = stringProperty; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy