alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

JMeter example source code file (TestRegexFunction.java)

This example JMeter source code file (TestRegexFunction.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - JMeter tags/keywords

all, compoundvariable, compoundvariable, exception, linkedlist, linkedlist, outvar, outvar, outvar_g0, outvar_g1, outvar_g2, outvar_matchnr, string, string, util

The JMeter TestRegexFunction.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 java.util.LinkedList;

import org.apache.jmeter.engine.util.CompoundVariable;
import org.apache.jmeter.junit.JMeterTestCase;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.threads.JMeterContext;
import org.apache.jmeter.threads.JMeterContextService;
import org.apache.jmeter.threads.JMeterVariables;

public class TestRegexFunction extends JMeterTestCase {
        private static final String INPUT_VARIABLE_NAME = "INVAR";

        private RegexFunction variable;

        private SampleResult result;

        private Collection<CompoundVariable> params;

        private JMeterVariables vars;

        private JMeterContext jmctx;

        public TestRegexFunction(String name) {
            super(name);
        }

        @Override
        public void setUp() {
            variable = new RegexFunction();
            result = new SampleResult();
            jmctx = JMeterContextService.getContext();
            String data = "<company-xmlext-query-ret>" + "" + "LIS_OK" + "" + "0"
                    + "</row>";
            result.setResponseData(data, null);
            vars = new JMeterVariables();
            String data2 = "The quick brown fox jumped over the lazy dog 123 times";
            vars.put(INPUT_VARIABLE_NAME, data2);
            jmctx.setVariables(vars);
            jmctx.setPreviousResult(result);
        }

        public void testVariableExtraction() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$2$"));
            params.add(new CompoundVariable("2"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("5", match);
        }

        // Test with output variable name
        public void testVariableExtraction1a() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$2$")); // template
            params.add(new CompoundVariable("2")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("3", vars.getObject("OUTVAR_matchNr"));
            assertEquals("5", match);
            assertEquals("5", vars.getObject("OUTVAR"));
            assertEquals("<value field=\"pinposition2\">5", vars.getObject("OUTVAR_g0"));
            assertEquals("pinposition2", vars.getObject("OUTVAR_g1"));
            assertEquals("5", vars.getObject("OUTVAR_g2"));
        }

        // Test with empty output variable name
        public void testVariableExtraction1b() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$2$")); // template
            params.add(new CompoundVariable("2")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable(""));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("5", match);
            assertNull(vars.getObject("OUTVAR"));
        }

        public void testVariableExtractionFromVariable() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("$2$")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("times", match);
            assertEquals("times", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable2() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("$1$$2$")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("123times", match);
            assertEquals("123times", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable3() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("pre$2$post")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("pretimespost", match);
            assertEquals("pretimespost", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable4() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("pre$2$")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("pretimes", match);
            assertEquals("pretimes", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable5() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("$2$post")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("timespost", match);
            assertEquals("timespost", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable6() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("$2$$2$")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("timestimes", match);
            assertEquals("timestimes", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable7() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("pre$1$mid$2$post")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("pre123midtimespost", match);
            assertEquals("pre123midtimespost", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable8() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("pre$1$mid$2$")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("pre123midtimes", match);
            assertEquals("pre123midtimes", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtractionFromVariable9() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("(\\d+)\\s+(\\w+)"));
            params.add(new CompoundVariable("$1$mid$2$post")); // template
            params.add(new CompoundVariable("1")); // match number
            params.add(new CompoundVariable("-")); // ALL separator
            params.add(new CompoundVariable("default"));
            params.add(new CompoundVariable("OUTVAR"));
            params.add(new CompoundVariable(INPUT_VARIABLE_NAME));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1", vars.getObject("OUTVAR_matchNr"));
            assertEquals("123midtimespost", match);
            assertEquals("123midtimespost", vars.getObject("OUTVAR"));
            assertEquals("123 times", vars.getObject("OUTVAR_g0"));
            assertEquals("123", vars.getObject("OUTVAR_g1"));
            assertEquals("times", vars.getObject("OUTVAR_g2"));
        }

        public void testVariableExtraction2() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$1$"));
            params.add(new CompoundVariable("3"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("pinposition3", match);
        }

        public void testVariableExtraction5() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$1$"));
            params.add(new CompoundVariable("ALL"));
            params.add(new CompoundVariable("_"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("pinposition1_pinposition2_pinposition3", match);
        }

        public void testVariableExtraction6() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$2$"));
            params.add(new CompoundVariable("4"));
            params.add(new CompoundVariable(""));
            params.add(new CompoundVariable("default"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("default", match);
        }

        public void testComma() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value,? field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$1$"));
            params.add(new CompoundVariable("3"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("pinposition3", match);
        }

        public void testVariableExtraction3() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("_$1$"));
            params.add(new CompoundVariable("2"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("_pinposition2", match);
        }

        public void testVariableExtraction4() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$2$, "));
            params.add(new CompoundVariable(".333"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("1, ", match);
        }

        public void testDefaultValue() throws Exception {
            params = new LinkedList<CompoundVariable>();
            params.add(new CompoundVariable("<value,, field=\"(pinposition\\d+)\">(\\d+)"));
            params.add(new CompoundVariable("$2$, "));
            params.add(new CompoundVariable(".333"));
            params.add(new CompoundVariable(""));
            params.add(new CompoundVariable("No Value Found"));
            variable.setParameters(params);
            String match = variable.execute(result, null);
            assertEquals("No Value Found", match);
        }
}

Other JMeter examples (source code examples)

Here is a short list of links related to this JMeter TestRegexFunction.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

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.