All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.nn.testtool.echo2.BaseComponent Maven / Gradle / Ivy

Go to download

Ladybug adds message based debugging and message based unit testing and system testing to your Java application. Call Ladybug at certain checkpoints in you code (either directly or using AOP) to generate tree based reports. Implement a rerun method to be able to rerun reports and optionally stub certain checkpoints for regression testing.

There is a newer version: 2.5
Show newest version
/*
   Copyright 2018 Nationale-Nederlanden

   Licensed 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 nl.nn.testtool.echo2;

import org.apache.log4j.Logger;

import nextapp.echo2.app.Column;
import nextapp.echo2.app.Insets;
import nextapp.echo2.app.Label;
import nextapp.echo2.app.event.ActionEvent;
import nl.nn.testtool.util.LogUtil;

/**
 * @author Jaco de Groot
 */
public class BaseComponent extends Column {
	private static final long serialVersionUID = 1L;
	protected Logger log = LogUtil.getLogger(this);
	protected Label errorLabel;
	protected Label okayLabel;

	/**
	 * @see nl.nn.testtool.echo2.Echo2Application#initBean()
	 */
	public void initBean() {
		setInsets(new Insets(10));

		// Construct

		errorLabel = Echo2Application.createErrorLabelWithColumnLayoutData();
		errorLabel.setVisible(false);

		okayLabel = Echo2Application.createOkayLabelWithColumnLayoutData();
		okayLabel.setVisible(false);
	}

	/**
	 * @see nextapp.echo2.app.event.ActionListener#actionPerformed(nextapp.echo2.app.event.ActionEvent)
	 */
	public void actionPerformed(ActionEvent e) {
		hideMessages();
	}

	public void displayOkay(String message) {
		if (message != null) {
			displayMessage(okayLabel, message);
		}
	}

	public void displayError(String message) {
		if (message != null) {
			handleError(message, false, null, null);
		}
	}

	public void displayAndLogError(String message) {
		if (message != null) {
			handleError(message, true, message, null);
		}
	}

	public void displayAndLogError(Throwable t) {
		handleError(t.getClass().getName() + ": " + t.getMessage(), true, null, t);
	}

	private void handleError(String displayMessage, boolean useLog, String logMessage, Throwable t) {
		if (useLog) {
			if (t == null) {
				log.error(logMessage);
			} else {
				if (logMessage == null) {
					// don't use log.error(t) as it will print the name of the Throwable but no stack trace
					logMessage = t.getMessage();
				}
				log.error(logMessage, t);
			}
		}
		displayMessage(errorLabel, displayMessage);
	}

	private void displayMessage(Label label, String message) {
		if (label.isVisible()) {
			label.setText(label.getText() + " [" + message + "]");
		} else {
			label.setText("[" + message + "]");
			label.setVisible(true);
		}
	}

	protected void hideMessages() {
		errorLabel.setVisible(false);
		okayLabel.setVisible(false);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy