Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add variable support for Include Controller #679

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
import java.io.IOException;
import java.util.ArrayList;

import org.apache.jmeter.engine.util.CompoundVariable;
import org.apache.jmeter.functions.InvalidVariableException;
import org.apache.jmeter.gui.tree.JMeterTreeNode;
import org.apache.jmeter.save.SaveService;
import org.apache.jmeter.services.FileServer;
Expand Down Expand Up @@ -101,6 +103,32 @@ public String getIncludePath() {
return get(getSchema().getIncludePath());
}

/**
* return the JMX file path with function support.
* @return the JMX file path with function support
*/
public String getIncludePathAsFunction()
{
String jmxfile = this.getPropertyAsString(INCLUDE_PATH);
CompoundVariable masterFunction = new CompoundVariable();
try{
log.debug("Trying to evaluate 'Include Path' as an expression: {}", jmxfile);
masterFunction.setParameters(jmxfile);
if(masterFunction.hasFunction()) {
String jmxfileCompile = masterFunction.getFunction().execute();
log.debug("The value of 'Include Path' is computed as: {}", jmxfileCompile);
return jmxfileCompile;
}
} catch (InvalidVariableException e)
{
log.warn("Invalid variable in 'Include Path' {}. See log for details", jmxfile);
log.warn("Invalid variable in 'Include Path':", e);
}

log.debug("The value of 'Include Path' is simple string: {}", jmxfile);
return jmxfile;
}
Comment on lines +106 to +130
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is the wrong approach to attack the problem. It looks like includePath.setRunningVersion(true).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if apply includePath.setRunningVersion(true)
and set includePath like ${__P(somePropName, 'defaultValue')}
and open JMX File in GUI Mode

then includePath view like value of somePropName or 'defaultValue', but not view as ${__P(somePropName, 'defaultValue')}

Copy link
Author

@polarnik polarnik Dec 26, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function getIncludePathAsFunction() did not change value of includePath. Function getIncludePathAsFunction() used instead of simple this.getPropertyAsString(INCLUDE_PATH) for variables and functions support without change of value includePath.

Script developer may open JMX file in GUI mode, press Save button, and JMX file was saved without changes.

If used includePath.setRunningVersion(true), then after open JMX script in GUI mode and press Save button - original expression will be replaced with expression value.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK setRunningVersions(tue) should be called just before script execution (like it is called for other elements)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok. I try tested this


/**
* The way ReplaceableController works is clone is called first,
* followed by replace(HashTree) and finally getReplacement().
Expand All @@ -126,7 +154,7 @@ public void resolveReplacementSubTree(JMeterTreeNode context) {
*/
protected HashTree loadIncludedElements() {
// only try to load the JMX test plan if there is one
final String includePath = getIncludePath();
final String includePath = getIncludePathAsFunction();
HashTree tree = null;
if (includePath != null && includePath.length() > 0) {
String fileName=PREFIX+includePath;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/*
* 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.control;

import static org.junit.Assert.assertEquals;

import org.apache.jmeter.junit.JMeterTestCase;
import org.apache.jmeter.threads.JMeterContext;
import org.apache.jmeter.threads.JMeterContextService;
import org.apache.jmeter.threads.JMeterVariables;
import org.junit.jupiter.api.Test;

public class TestIncludeController extends JMeterTestCase {


@Test
public void testGetIncludePathWithVariable() {
String varName = "testGetIncludePathWithVariable_file_name";
String varValue = "C:\\testPath\\testFile.jmx";
String varExpression = "${" + varName + "}";

JMeterVariables vars = new JMeterVariables();
JMeterContext jmctx = JMeterContextService.getContext();

jmctx.setVariables(vars);
vars.put(varName, varValue);

IncludeController includeController = new IncludeController();
includeController.setIncludePath(varExpression);

assertEquals(varValue, includeController.getIncludePathAsFunction());
}

@Test
public void testGetIncludePathWithVariables() {
String dirName = "var1";
String dirValue = "/tmp/path/test";

String fileName = "var2";
String fileValue = "testFile.jmx";

String varExpression = "${" + dirName + "}/${" + fileName + "}";

JMeterVariables vars = new JMeterVariables();
JMeterContext jmctx = JMeterContextService.getContext();

jmctx.setVariables(vars);
vars.put(dirName, dirValue);
vars.put(fileName, fileValue);

IncludeController includeController = new IncludeController();
includeController.setIncludePath(varExpression);

assertEquals(dirValue + "/" + fileValue, includeController.getIncludePathAsFunction());
}


@Test
public void testGetIncludePathWithSimpleString() {
String varValue = "C:\\testPath\\testFile.jmx";

JMeterVariables vars = new JMeterVariables();
JMeterContext jmctx = JMeterContextService.getContext();

IncludeController includeController = new IncludeController();
includeController.setIncludePath(varValue);

assertEquals(varValue, includeController.getIncludePathAsFunction());
}

@Test
public void testGetIncludePathWithEmptyString() {
String varValue = "";

IncludeController includeController = new IncludeController();
includeController.setIncludePath(varValue);

assertEquals(varValue, includeController.getIncludePathAsFunction());
}

}