|
JMeter example source code file (AbstractFunction.java)
The JMeter AbstractFunction.java source code/* * 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.jmeter.functions; import java.util.Collection; import org.apache.jmeter.engine.util.CompoundVariable; import org.apache.jmeter.samplers.SampleResult; import org.apache.jmeter.samplers.Sampler; import org.apache.jmeter.threads.JMeterContext; import org.apache.jmeter.threads.JMeterContextService; import org.apache.jmeter.threads.JMeterVariables; /** * Provides common methods for all functions */ public abstract class AbstractFunction implements Function { /** * <p> * N.B. setParameters() and execute() are called from different threads, * so both must be synchronized unless there are no parameters to save * </b> * @see Function#execute(SampleResult, Sampler) */ abstract public String execute(SampleResult previousResult, Sampler currentSampler) throws InvalidVariableException; public String execute() throws InvalidVariableException { JMeterContext context = JMeterContextService.getContext(); SampleResult previousResult = context.getPreviousResult(); Sampler currentSampler = context.getCurrentSampler(); return execute(previousResult, currentSampler); } /** * * <p> * N.B. setParameters() and execute() are called from different threads, * so both must be synchronized unless there are no parameters to save * </b> * * @see Function#setParameters(Collection) * <br/> * Note: This is always called even if no parameters are provided * (versions of JMeter after 2.3.1) */ abstract public void setParameters(Collection<CompoundVariable> parameters) throws InvalidVariableException; /** * @see Function#getReferenceKey() */ abstract public String getReferenceKey(); protected JMeterVariables getVariables() { return JMeterContextService.getContext().getVariables(); } /** * Utility method to check parameter counts. * * @param parameters collection of parameters * @param min minimum number of parameters allowed * @param max maximum number of parameters allowed * * @throws InvalidVariableException if the number of parameters is incorrect */ protected void checkParameterCount(Collection<CompoundVariable> parameters, int min, int max) throws InvalidVariableException { int num = parameters.size(); if ((num > max) || (num < min)) { throw new InvalidVariableException( getReferenceKey() + " called with wrong number of parameters. Actual: "+num+ ( min==max ? ". Expected: "+min+"." : ". Expected: >= "+min+" and <= "+max ) ); } } /** * Utility method to check parameter counts. * * @param parameters collection of parameters * @param count number of parameters expected * * @throws InvalidVariableException if the number of parameters is incorrect */ protected void checkParameterCount(Collection<CompoundVariable> parameters, int count) throws InvalidVariableException { int num = parameters.size(); if (num != count) { throw new InvalidVariableException( getReferenceKey() + " called with wrong number of parameters. Actual: "+num+". Expected: "+count+"." ); } } /** * Utility method to check parameter counts. * * @param parameters collection of parameters * @param minimum number of parameters expected * * @throws InvalidVariableException if the number of parameters is incorrect */ protected void checkMinParameterCount(Collection<CompoundVariable> parameters, int minimum) throws InvalidVariableException { int num = parameters.size(); if (num < minimum) { throw new InvalidVariableException( getReferenceKey() + " called with wrong number of parameters. Actual: "+num+". Expected at least: "+minimum+"." ); } } } Other JMeter examples (source code examples)Here is a short list of links related to this JMeter AbstractFunction.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.