⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 packagetest.java

📁 测试工具
💻 JAVA
字号:
/*
 * 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.
 * 
 */

/*
 * Created on Jul 25, 2003
 */
package org.apache.jmeter.engine.util;

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

import junit.framework.TestCase;

import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.testelement.property.JMeterProperty;
import org.apache.jmeter.testelement.property.StringProperty;
import org.apache.jmeter.threads.JMeterContext;
import org.apache.jmeter.threads.JMeterContextService;
import org.apache.jmeter.threads.JMeterVariables;

public class PackageTest extends TestCase {
	Map variables;

	SampleResult result;

	ReplaceStringWithFunctions transformer;

	/**
	 * @param arg0
	 */
	public PackageTest(String arg0) {
		super(arg0);
		// TODO Auto-generated constructor stub
	}

	private JMeterContext jmctx = null;

	public void setUp() {
		jmctx = JMeterContextService.getContext();
		variables = new HashMap();
		variables.put("my_regex", ".*");
		variables.put("server", "jakarta.apache.org");
		result = new SampleResult();
		result.setResponseData("<html>hello world</html> costs: $3.47,$5.67".getBytes());
		transformer = new ReplaceStringWithFunctions(new CompoundVariable(), variables);
		jmctx.setVariables(new JMeterVariables());
		jmctx.setSamplingStarted(true);
		jmctx.setPreviousResult(result);
		jmctx.getVariables().put("server", "jakarta.apache.org");
		jmctx.getVariables().put("my_regex", ".*");
	}

	public void testFunctionParse1() throws Exception {
		StringProperty prop = new StringProperty("date", "${__javaScript((new Date().getDate() / 100).toString()."
				+ "substr(${__javaScript(1+1,d\\,ay)}\\,2),heute)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		newProp.recoverRunningVersion(null);
		assertTrue(Integer.parseInt(newProp.getStringValue()) > -1);
		assertEquals("2", jmctx.getVariables().getObject("d,ay"));
	}

	public void testParseExample1() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(<html>(.*)</html>,$1$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("hello world", newProp.getStringValue());
	}

	public void testParseExample2() throws Exception {
		StringProperty prop = new StringProperty("html", "It should say:\\${${__regexFunction(<html>(.*)</html>,$1$)}}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("It should say:${hello world}", newProp.getStringValue());
	}

	public void testParseExample3() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(<html>(.*)</html>,$1$)}"
				+ "${__regexFunction(<html>(.*o)(.*o)(.*)</html>," + "$1$$3$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("hello worldhellorld", newProp.getStringValue());
	}

	public void testParseExample4() throws Exception {
		StringProperty prop = new StringProperty("html", "${non-existing function}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("${non-existing function}", newProp.getStringValue());
	}

	public void testParseExample6() throws Exception {
		StringProperty prop = new StringProperty("html", "${server}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("jakarta.apache.org", newProp.getStringValue());
	}

	public void testParseExample5() throws Exception {
		StringProperty prop = new StringProperty("html", "");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.StringProperty", newProp.getClass().getName());
		assertEquals("", newProp.getStringValue());
	}

	public void testParseExample7() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(\\<([a-z]*)\\>,$1$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("html", newProp.getStringValue());
	}

	public void testParseExample8() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction((\\\\$\\d+\\.\\d+),$1$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("$3.47", newProp.getStringValue());
	}

	public void testParseExample9() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(([$]\\d+\\.\\d+),$1$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("$3.47", newProp.getStringValue());
	}

	public void testParseExample10() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(\\ "
				+ "(\\\\\\$\\d+\\.\\d+\\,\\\\$\\d+\\.\\d+),$1$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("$3.47,$5.67", newProp.getStringValue());
	}

	public void testNestedExample1() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(<html>(${my_regex})</html>,"
				+ "$1$)}${__regexFunction(<html>(.*o)(.*o)(.*)" + "</html>,$1$$3$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("hello worldhellorld", newProp.getStringValue());
	}

	public void testNestedExample2() throws Exception {
		StringProperty prop = new StringProperty("html", "${__regexFunction(<html>(${my_regex})</html>,$1$)}");
		JMeterProperty newProp = transformer.transformValue(prop);
		newProp.setRunningVersion(true);
		assertEquals("org.apache.jmeter.testelement.property.FunctionProperty", newProp.getClass().getName());
		assertEquals("hello world", newProp.getStringValue());
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -