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

📄 mailermodel.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.
 * 
 */

package org.apache.jmeter.reporters;

import java.io.Serializable;
import java.util.Properties;
import java.util.StringTokenizer;
import java.util.Vector;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.testelement.AbstractTestElement;
import org.apache.jmeter.util.JMeterUtils;
import org.apache.jorphan.logging.LoggingManager;
import org.apache.log.Logger;

/**
 * The model for a MailerVisualizer.
 * 
 */
public class MailerModel extends AbstractTestElement implements Serializable {

	private static final Logger log = LoggingManager.getLoggerForClass();

	private static final String MAIL_SMTP_HOST = "mail.smtp.host"; //$NON-NLS-1$

	private long failureCount = 0;

	private long successCount = 0;

	private boolean failureMsgSent = false;

	private boolean siteDown = false;

	private boolean successMsgSent = false;

	private static final String FROM_KEY = "MailerModel.fromAddress"; //$NON-NLS-1$

	private static final String TO_KEY = "MailerModel.addressie"; //$NON-NLS-1$

	private static final String HOST_KEY = "MailerModel.smtpHost"; //$NON-NLS-1$

	private static final String SUCCESS_SUBJECT = "MailerModel.successSubject"; //$NON-NLS-1$

	private static final String FAILURE_SUBJECT = "MailerModel.failureSubject"; //$NON-NLS-1$

	private static final String FAILURE_LIMIT_KEY = "MailerModel.failureLimit"; //$NON-NLS-1$

	private static final String SUCCESS_LIMIT_KEY = "MailerModel.successLimit"; //$NON-NLS-1$

	private static final String DEFAULT_LIMIT = "2"; //$NON-NLS-1$

	/** The listener for changes. */
	transient ChangeListener changeListener;

	/**
	 * Constructs a MailerModel.
	 */
	public MailerModel() {
		super();

		setProperty(SUCCESS_LIMIT_KEY, JMeterUtils.getPropDefault("mailer.successlimit", DEFAULT_LIMIT)); //$NON-NLS-1$
		setProperty(FAILURE_LIMIT_KEY, JMeterUtils.getPropDefault("mailer.failurelimit", DEFAULT_LIMIT)); //$NON-NLS-1$
	}

	public void addChangeListener(ChangeListener list) {
		changeListener = list;
	}

	public Object clone() {
		MailerModel m = (MailerModel) super.clone();
		m.changeListener = changeListener;
		return m;
	}

	/**
	 * Returns wether there had been more failures than acceptable.
	 * 
	 * @return a boolean value indicating whether the limit of acceptable
	 *         failures has been reached.
	 */
	public synchronized boolean isFailing() {
		return (failureCount > getFailureLimit());
	}

	public void notifyChangeListeners() {
		if (changeListener != null) {
			changeListener.stateChanged(new ChangeEvent(this));
		}
	}

	/**
	 * Gets a Vector of String-objects. Each String is one mail-address of the
	 * addresses-String set by <code>setToAddress(str)</code>. The addresses
	 * must be seperated by commas. Only String-objects containing a "@" are
	 * added to the returned Vector.
	 * 
	 * @return a Vector of String-objects wherein each String represents a
	 *         mail-address.
	 */
	public synchronized Vector getAddressVector() {
		String theAddressie = getToAddress();
		Vector addressVector = new Vector();

		if (theAddressie != null) {
			String addressSep = ","; //$NON-NLS-1$

			StringTokenizer next = new StringTokenizer(theAddressie, addressSep);

			while (next.hasMoreTokens()) {
				String theToken = next.nextToken().trim();

				if (theToken.indexOf("@") > 0) { //$NON-NLS-1$
					addressVector.addElement(theToken);
				}
			}
		} else {
			return new Vector(0);
		}

		return addressVector;
	}

	/**
	 * Adds a SampleResult. If SampleResult represents a change concerning the
	 * failure/success of the sampling a message might be send to the addressies
	 * according to the settings of <code>successCount</code> and
	 * <code>failureCount</code>.
	 * 
	 * @param sample
	 *            the SampleResult encapsulating informations about the last
	 *            sample.
	 */
	public synchronized void add(SampleResult sample) {

		// -1 is the code for a failed sample.
		//
		if (!sample.isSuccessful()) {
			failureCount++;
			successCount = 0;
		} else {
			successCount++;
		}

		if (this.isFailing() && !siteDown && !failureMsgSent) {
			// Send the mail ...
			Vector addressVector = getAddressVector();

			if (addressVector.size() != 0) {
				try {
					sendMail(getFromAddress(), addressVector, getFailureSubject(), "URL Failed: "
							+ sample.getSampleLabel(), getSmtpHost());
				} catch (Exception e) {
					log.error("Problem sending mail", e);
				}
				siteDown = true;
				failureMsgSent = true;
				successCount = 0;
				successMsgSent = false;
			}
		}

		if (siteDown && (sample.getTime() != -1) && !successMsgSent) {
			// Send the mail ...
			if (successCount > getSuccessLimit()) {
				Vector addressVector = getAddressVector();

				try {
					sendMail(getFromAddress(), addressVector, getSuccessSubject(), "URL Restarted: "
							+ sample.getSampleLabel(), getSmtpHost());
				} catch (Exception e) {
					log.error("Problem sending mail", e);
				}
				siteDown = false;
				successMsgSent = true;
				failureCount = 0;
				failureMsgSent = false;
			}
		}

		if (successMsgSent && failureMsgSent) {
			clear();
		}
		notifyChangeListeners();
	}

	/**
	 * Resets the state of this object to its default. But: This method does not
	 * reset any mail-specific attributes (like sender, mail-subject...) since
	 * they are independent of the sampling.
	 */
	public synchronized void clear() {// TODO: should this be clearData()?
		failureCount = 0;
		successCount = 0;
		siteDown = false;
		successMsgSent = false;
		failureMsgSent = false;
		notifyChangeListeners();
	}

	/**
	 * Returns a String-representation of this object. Returns always
	 * "E-Mail-Notification". Might be enhanced in future versions to return
	 * some kind of String-representation of the mail-parameters (like sender,
	 * addressies, smtpHost...).
	 * 
	 * @return A String-representation of this object.
	 */
	public String toString() {
		return "E-Mail Notification";
	}

	/**
	 * Sends a mail with the given parameters using SMTP.
	 * 
	 * @param from
	 *            the sender of the mail as shown in the mail-client.
	 * @param vEmails
	 *            all receivers of the mail. The receivers are seperated by
	 *            commas.
	 * @param subject
	 *            the subject of the mail.
	 * @param attText
	 *            the message-body.
	 * @param smtpHost
	 *            the smtp-server used to send the mail.
	 */
	public synchronized void sendMail(String from, Vector vEmails, String subject, String attText, String smtpHost)
			throws AddressException, MessagingException {
		String host = smtpHost;
		boolean debug = Boolean.valueOf(host).booleanValue();
		// InetAddress remote = InetAddress.getByName(host);

		InternetAddress[] address = new InternetAddress[vEmails.size()];

		for (int k = 0; k < vEmails.size(); k++) {
			address[k] = new InternetAddress(vEmails.elementAt(k).toString());
		}

		// create some properties and get the default Session
		Properties props = new Properties();

		props.put(MAIL_SMTP_HOST, host);
		Session session = Session.getDefaultInstance(props, null);
		// N.B. properties are only used when the default session is first
		// created
		// so check if the mail host needs to be reset...
		props = session.getProperties();
		if (!host.equalsIgnoreCase(props.getProperty(MAIL_SMTP_HOST))) {
			props.setProperty(MAIL_SMTP_HOST, host);
		}

		session.setDebug(debug);

		// create a message
		Message msg = new MimeMessage(session);

		msg.setFrom(new InternetAddress(from));
		msg.setRecipients(Message.RecipientType.TO, address);
		msg.setSubject(subject);
		msg.setText(attText);
		Transport.send(msg);
	}

	public synchronized void sendTestMail() throws AddressException, MessagingException {
		String to = getToAddress();
		String from = getFromAddress();
		String subject = "Testing mail-addresses";
		String smtpHost = getSmtpHost();
		String attText = "JMeter-Testmail" + "\n" + "To:  " + to + "\n" + "From: " + from + "\n" + "Via:  " + smtpHost
				+ "\n" + "Fail Subject:  " + getFailureSubject() + "\n" + "Success Subject:  " + getSuccessSubject();

		log.info(attText);

		Vector destination = new Vector();
		destination.add(to);

		sendMail(from, destination, subject, attText, smtpHost);
		log.info("Test mail sent successfully!!");
	}

	// ////////////////////////////////////////////////////////////
	//
	// setter/getter - JavaDoc-Comments not needed...
	//
	// ////////////////////////////////////////////////////////////

	public void setToAddress(String str) {
		setProperty(TO_KEY, str);
	}

	public void setFromAddress(String str) {
		setProperty(FROM_KEY, str);
	}

	public void setSmtpHost(String str) {
		setProperty(HOST_KEY, str);
	}

	public void setFailureSubject(String str) {
		setProperty(FAILURE_SUBJECT, str);
	}

	public void setSuccessSubject(String str) {
		setProperty(SUCCESS_SUBJECT, str);
	}

	public void setSuccessLimit(String limit) {
		setProperty(SUCCESS_LIMIT_KEY, limit);
	}

	// private void setSuccessCount(long count)
	// {
	// this.successCount = count;
	// }

	public void setFailureLimit(String limit) {
		setProperty(FAILURE_LIMIT_KEY, limit);
	}

	// private void setFailureCount(long count)
	// {
	// this.failureCount = count;
	// }

	public String getToAddress() {
		return getPropertyAsString(TO_KEY);
	}

	public String getFromAddress() {
		return getPropertyAsString(FROM_KEY);
	}

	public String getSmtpHost() {
		return getPropertyAsString(HOST_KEY);
	}

	public String getFailureSubject() {
		return getPropertyAsString(FAILURE_SUBJECT);
	}

	public String getSuccessSubject() {
		return getPropertyAsString(SUCCESS_SUBJECT);
	}

	public long getSuccessLimit() {
		return getPropertyAsLong(SUCCESS_LIMIT_KEY);
	}

	public long getSuccessCount() {
		return successCount;
	}

	public long getFailureLimit() {
		return getPropertyAsLong(FAILURE_LIMIT_KEY);
	}

	public long getFailureCount() {
		return this.failureCount;
	}
}

⌨️ 快捷键说明

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