sebb 2003/12/03 17:59:10
Added: src/components/org/apache/jmeter/assertions/gui
BeanShellAssertionGui.java
src/components/org/apache/jmeter/assertions
BeanShellAssertion.java
Log:
BeanShell Assertion checker
Revision Changes Path
1.1
jakarta-jmeter/src/components/org/apache/jmeter/assertions/gui/BeanShellAssertionGui.java
Index: BeanShellAssertionGui.java
===================================================================
/*
* $Header:
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/assertions/gui/BeanShellAssertionGui.java,v
1.1 2003/12/04 01:59:10 sebb Exp $
* $Revision: 1.1 $
* $Date: 2003/12/04 01:59:10 $
*
* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2002,2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" and
* "Apache JMeter" must not be used to endorse or promote products
* derived from this software without prior written permission. For
* written permission, please contact [EMAIL PROTECTED]
*
* 5. Products derived from this software may not be called "Apache",
* "Apache JMeter", nor may "Apache" appear in their name, without
* prior written permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.jmeter.assertions.gui;
import java.awt.BorderLayout;
import javax.swing.Box;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import org.apache.jmeter.assertions.BeanShellAssertion;
import org.apache.jmeter.testelement.TestElement;
import org.apache.jmeter.util.JMeterUtils;
/**
* @author sebb AT apache DOT org
* @version $Revision: 1.1 $ $Date: 2003/12/04 01:59:10 $
*/
public class BeanShellAssertionGui extends AbstractAssertionGui
{
private JTextField filename;// script file name (if present)
private JTextField parameters;// parameters to pass to script file (or script)
private JTextArea scriptField;// script area
public BeanShellAssertionGui()
{
init();
}
public void configure(TestElement element)
{
scriptField.setText(element.getProperty(BeanShellAssertion.SCRIPT).toString());
filename.setText(element.getProperty(BeanShellAssertion.FILENAME).toString());
parameters.setText(element.getProperty(BeanShellAssertion.PARAMETERS).toString());
super.configure(element);
}
public TestElement createTestElement()
{
BeanShellAssertion sampler = new BeanShellAssertion();
modifyTestElement(sampler);
return sampler;
}
/**
* Modifies a given TestElement to mirror the data in the gui components.
* @see org.apache.jmeter.gui.JMeterGUIComponent#modifyTestElement(TestElement)
*/
public void modifyTestElement(TestElement te)
{
te.clear();
this.configureTestElement(te);
te.setProperty(BeanShellAssertion.SCRIPT, scriptField.getText());
te.setProperty(BeanShellAssertion.FILENAME, filename.getText());
te.setProperty(BeanShellAssertion.PARAMETERS, parameters.getText());
}
public String getStaticLabel()
{
return JMeterUtils.getResString("bsh_assertion_title");
}
private JPanel createFilenamePanel()//TODO ought to be a FileChooser ...
{
JLabel label = new JLabel(JMeterUtils.getResString("bsh_script_file"));
filename = new JTextField(10);
filename.setName(BeanShellAssertion.FILENAME);
label.setLabelFor(filename);
JPanel filenamePanel = new JPanel(new BorderLayout(5, 0));
filenamePanel.add(label, BorderLayout.WEST);
filenamePanel.add(filename, BorderLayout.CENTER);
return filenamePanel;
}
private JPanel createParameterPanel()
{
JLabel label = new JLabel(JMeterUtils.getResString("bsh_script_parameters"));
parameters = new JTextField(10);
parameters.setName(BeanShellAssertion.PARAMETERS);
label.setLabelFor(parameters);
JPanel parameterPanel = new JPanel(new BorderLayout(5,0));
parameterPanel.add(label,BorderLayout.WEST);
parameterPanel.add(parameters, BorderLayout.CENTER);
return parameterPanel;
}
private void init()
{
setLayout(new BorderLayout(0, 5));
setBorder(makeBorder());
Box box = Box.createVerticalBox();
box.add(makeTitlePanel());
box.add(createParameterPanel());
box.add(createFilenamePanel());
add(box,BorderLayout.NORTH);
JPanel panel = createScriptPanel();
add(panel, BorderLayout.CENTER);
// Don't let the input field shrink too much
add(
Box.createVerticalStrut(panel.getPreferredSize().height),
BorderLayout.WEST);
}
private JPanel createScriptPanel()
{
scriptField = new JTextArea();
scriptField.setRows(4);
scriptField.setLineWrap(true);
scriptField.setWrapStyleWord(true);
JLabel label = new
JLabel(JMeterUtils.getResString("bsh_assertion_script"));
label.setLabelFor(scriptField);
JPanel panel = new JPanel(new BorderLayout());
panel.add(label, BorderLayout.NORTH);
panel.add(new JScrollPane(scriptField), BorderLayout.CENTER);
return panel;
}
}
1.1
jakarta-jmeter/src/components/org/apache/jmeter/assertions/BeanShellAssertion.java
Index: BeanShellAssertion.java
===================================================================
/*
* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2002,2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" and
* "Apache JMeter" must not be used to endorse or promote products
* derived from this software without prior written permission. For
* written permission, please contact [EMAIL PROTECTED]
*
* 5. Products derived from this software may not be called "Apache",
* "Apache JMeter", nor may "Apache" appear in their name, without
* prior written permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.jmeter.assertions;
import java.io.IOException;
import java.io.Serializable;
//import bsh.EvalError;
import bsh.Interpreter;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.testelement.AbstractTestElement;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.jorphan.util.JOrphanUtils;
import org.apache.log.Logger;
/**
* A sampler which understands BeanShell
*
* @author sebb AT apache DOT org
* @version $Revision: 1.1 $ Updated on: $Date: 2003/12/04 01:59:10 $
*/
public class BeanShellAssertion extends AbstractTestElement
implements Serializable, Assertion
{
protected static Logger log = LoggingManager.getLoggerForClass();
public static final String FILENAME = "BeanShellAssertion.filename";
//$NON-NLS-1$
public static final String SCRIPT = "BeanShellAssertion.query";
//$NON-NLS-1$
public static final String PARAMETERS = "BeanShellAssertion.parameters";
//$NON-NLS-1$
private Interpreter bshInterpreter;
public BeanShellAssertion()
{
try{
bshInterpreter = new Interpreter();
} catch (NoClassDefFoundError e){
bshInterpreter=null;
}
}
public String getScript()
{
return getPropertyAsString(SCRIPT);
}
public String getFilename()
{
return getPropertyAsString(FILENAME);
}
public String getParameters()
{
return getPropertyAsString(PARAMETERS);
}
/* (non-Javadoc)
* @see
org.apache.jmeter.assertions.Assertion#getResult(org.apache.jmeter.samplers.SampleResult)
*/
public AssertionResult getResult(SampleResult response)
{
AssertionResult result = new AssertionResult();
try
{
String request=getScript();
String fileName=getFilename();
bshInterpreter.set("FileName",getFilename());
bshInterpreter.set("Parameters",getParameters());// as a
single line
bshInterpreter.set("bsh.args",JOrphanUtils.split(getParameters()," "));
bshInterpreter.set("Response",response);// Raw access to the
response
bshInterpreter.set("ResponseData",response.getResponseData());
bshInterpreter.set("ResponseCode",response.getResponseCode());
bshInterpreter.set("ResponseMessage",response.getResponseMessage());
bshInterpreter.set("ResponseHeaders",response.getResponseHeaders());
bshInterpreter.set("RequestHeaders",response.getRequestHeaders());
bshInterpreter.set("SampleLabel",response.getSampleLabel());
bshInterpreter.set("SamplerData",response.getSamplerData());
bshInterpreter.set("Successful",response.isSuccessful());
bshInterpreter.set("Result",result);// Raw access to the result
bshInterpreter.set("FailureMessage","");
bshInterpreter.set("Failure",false);
//Object bshOut;
if (fileName.length() == 0){
//bshOut =
bshInterpreter.eval(request);
} else {
//bshOut =
bshInterpreter.source(fileName);
}
result.setFailureMessage(bshInterpreter.get("FailureMessage").toString());//$NON-NLS-1$
result.setFailure(Boolean.valueOf(bshInterpreter.get("Failure")
//$NON-NLS-1$
.toString()).booleanValue());
result.setError(false);
}
/*
* To avoid class loading problems when bsh,jar is missing,
* we don't try to catch this error separately
* catch (bsh.EvalError ex)
{
log.debug("",ex);
result.setError(true);
result.setFailureMessage(ex.toString());
}
*/
// but we do trap this error to make tests work better
catch(NoClassDefFoundError ex){
result.setError(true);
log.error("BeanShell Jar missing? "+ex.toString());
response.setStopThread(true); // No point continuing
result.setFailureMessage("");
}
catch (IOException ex)
{
result.setError(true);
result.setFailureMessage(ex.toString());
log.warn(ex.toString());
}
catch (Exception ex) // Mainly for bsh.EvalError
{
result.setError(true);
result.setFailureMessage(ex.toString());
log.warn(ex.toString());
}
return result;
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]