|
JMeter example source code file (MD5HexAssertion.java)
The JMeter MD5HexAssertion.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.
*
*/
/**
* MD5HexAssertion class creates an MD5 checksum from the response <br/>
* and matches it with the MD5 hex provided.
* The assertion will fail when the expected hex is different from the <br/>
* one calculated from the response OR when the expected hex is left empty.
*
*/
package org.apache.jmeter.assertions;
import java.io.Serializable;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.text.MessageFormat;
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.testelement.AbstractTestElement;
import org.apache.jmeter.testelement.property.StringProperty;
import org.apache.jmeter.util.JMeterUtils;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.jorphan.util.JOrphanUtils;
import org.apache.log.Logger;
public class MD5HexAssertion extends AbstractTestElement implements Serializable, Assertion {
private static final long serialVersionUID = 240L;
private static final Logger log = LoggingManager.getLoggerForClass();
/** Key for storing assertion-informations in the jmx-file. */
private static final String MD5HEX_KEY = "MD5HexAssertion.size";
/*
* @param response @return
*/
public AssertionResult getResult(SampleResult response) {
AssertionResult result = new AssertionResult(getName());
result.setFailure(false);
byte[] resultData = response.getResponseData();
if (resultData.length == 0) {
result.setError(false);
result.setFailure(true);
result.setFailureMessage("Response was null");
return result;
}
// no point in checking if we don't have anything to compare against
if (getAllowedMD5Hex().equals("")) {
result.setError(false);
result.setFailure(true);
result.setFailureMessage("MD5Hex to test against is empty");
return result;
}
String md5Result = baMD5Hex(resultData);
// String md5Result = DigestUtils.md5Hex(resultData);
if (!md5Result.equalsIgnoreCase(getAllowedMD5Hex())) {
result.setFailure(true);
Object[] arguments = { md5Result, getAllowedMD5Hex() };
String message = MessageFormat.format(JMeterUtils.getResString("md5hex_assertion_failure"), arguments); // $NON-NLS-1$
result.setFailureMessage(message);
}
return result;
}
public void setAllowedMD5Hex(String hex) {
setProperty(new StringProperty(MD5HexAssertion.MD5HEX_KEY, hex));
}
public String getAllowedMD5Hex() {
return getPropertyAsString(MD5HexAssertion.MD5HEX_KEY);
}
// package protected so can be accessed by test class
static String baMD5Hex(byte ba[]) {
byte[] md5Result = {};
try {
MessageDigest md;
md = MessageDigest.getInstance("MD5");
md5Result = md.digest(ba);
} catch (NoSuchAlgorithmException e) {
log.error("", e);
}
return JOrphanUtils.baToHexString(md5Result);
}
}
Other JMeter examples (source code examples)Here is a short list of links related to this JMeter MD5HexAssertion.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.