Refactor ExceptionContext and derived. Context contract stipulates a sequence of label-value entries with support for multiple entries for the same label.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1143612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joerg Schaible 2011-07-06 23:54:57 +00:00
parent 913ddd55dd
commit 6be2343397
8 changed files with 545 additions and 414 deletions

View File

@ -16,19 +16,23 @@
*/ */
package org.apache.commons.lang3.exception; package org.apache.commons.lang3.exception;
import java.util.List;
import java.util.Set; import java.util.Set;
import org.apache.commons.lang3.tuple.Pair;
/** /**
* <p> * <p>
* An exception that provides an easy and safe way to add contextual information. * An exception that provides an easy and safe way to add contextual
* information.
* </p><p> * </p><p>
* An exception trace itself is often insufficient to provide rapid diagnosis of the issue. * An exception trace itself is often insufficient to provide rapid diagnosis of the issue.
* Frequently what is needed is a select few pieces of local contextual data. * Frequently what is needed is a select few pieces of local contextual data.
* Providing this data is tricky however, due to concerns over formatting and nulls. * Providing this data is tricky however, due to concerns over formatting and nulls.
* </p><p> * </p><p>
* The contexted exception approach allows the exception to be created together with a * The contexted exception approach allows the exception to be created together with a
* map of context values. This additional information is automatically included in the * list of context label-value pairs. This additional information is automatically included in
* message and printed stack trace. * the message and printed stack trace.
* </p><p> * </p><p>
* An unchecked version of this exception is provided by ContextedRuntimeException. * An unchecked version of this exception is provided by ContextedRuntimeException.
* </p> * </p>
@ -40,9 +44,9 @@ import java.util.Set;
* ... * ...
* } catch (Exception e) { * } catch (Exception e) {
* throw new ContextedException("Error posting account transaction", e) * throw new ContextedException("Error posting account transaction", e)
* .addValue("accountNumber", accountNumber) * .addContextValue("accountNumber", accountNumber)
* .addValue("amountPosted", amountPosted) * .addContextValue("amountPosted", amountPosted)
* .addValue("previousBalance", previousBalance) * .addContextValue("previousBalance", previousBalance)
* } * }
* } * }
* </pre> * </pre>
@ -67,7 +71,7 @@ import java.util.Set;
public class ContextedException extends Exception implements ExceptionContext { public class ContextedException extends Exception implements ExceptionContext {
/** The serialization version. */ /** The serialization version. */
private static final long serialVersionUID = 8940917952810290164L; private static final long serialVersionUID = 20110706L;
/** The context where the data is stored. */ /** The context where the data is stored. */
private final ExceptionContext exceptionContext; private final ExceptionContext exceptionContext;
@ -134,59 +138,105 @@ public class ContextedException extends Exception implements ExceptionContext {
} }
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
/** /**
* Adds information helpful to a developer in diagnosing and correcting * Adds information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed * the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. If the added label * should have a reasonable toString() implementation. Different values
* is already available, the label is appended with an index. * can be added with the same label multiple times.
* <p> * <p>
* Note: This exception is only serializable if the object added is serializable. * Note: This exception is only serializable if the object added is serializable.
* </p> * </p>
* *
* @param label a textual label associated with information, null not recommended * @param label a textual label associated with information, {@code null} not recommended
* @param value information needed to understand exception, may be null * @param value information needed to understand exception, may be {@code null}
* @return this, for method chaining * @return this, for method chaining
*/ */
public ContextedException addValue(String label, Object value) { public ContextedException addContextValue(String label, Object value) {
exceptionContext.addValue(label, value); exceptionContext.addContextValue(label, value);
return this; return this;
} }
/** /**
* Replaces information helpful to a developer in diagnosing and correcting * Adds information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed * the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. If the replaced * should have a reasonable toString() implementation. Different values
* label does not yet exist, it is simply added. * can be added with the same label multiple times.
* <p> * <p>
* Note: This exception is only serializable if the object added is serializable. * Note: This exception is only serializable if the object added as value is serializable.
* </p> * </p>
* *
* @param label a textual label associated with information, null not recommended * @param pair a pair of textual label and information
* @param value information needed to understand exception, may be null * @throws NullPointerException if {@code pair} is {@code null}
* @return this, for method chaining * @return this, for method chaining
*/ */
public ContextedException replaceValue(String label, Object value) { public ContextedException addContextValue(Pair<String, Object> pair) {
exceptionContext.replaceValue(label, value); this.exceptionContext.addContextValue(pair);
return this; return this;
} }
/** /**
* Retrieves a contextual data value associated with the label. * Set information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. Existing values
* with the same labels are removed before the new one is added.
* <p>
* Note: This exception is only serializable if the object added as value is serializable.
* </p>
* *
* @param label the label to get the contextual value for, may be null * @param label a textual label associated with information, {@code null} not recommended
* @return the contextual value associated with the label, may be null * @param value information needed to understand exception, may be {@code null}
* @return this, for method chaining
*/ */
public Object getValue(String label) { public ContextedException setContextValue(String label, Object value) {
return exceptionContext.getValue(label); exceptionContext.setContextValue(label, value);
return this;
} }
/** /**
* Retrieves the labels defined in the contextual data. * Set information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. Existing values
* with the same labels are removed before the new one is added.
* <p>
* Note: This exception is only serializable if the object added as value is serializable.
* </p>
* *
* @return the set of labels, never null * @param pair a pair of textual label and information
* @throws NullPointerException if {@code pair} is {@code null}
* @return this, for method chaining
*/ */
public Set<String> getLabelSet() { public ContextedException setContextValue(Pair<String, Object> pair) {
return exceptionContext.getLabelSet(); this.exceptionContext.setContextValue(pair);
return this;
}
/**
* {@inheritDoc}
*/
public List<Object> getContextValues(String label) {
return this.exceptionContext.getContextValues(label);
}
/**
* {@inheritDoc}
*/
public Object getFirstContextValue(String label) {
return this.exceptionContext.getFirstContextValue(label);
}
/**
* {@inheritDoc}
*/
public List<Pair<String, Object>> getContextEntries() {
return this.exceptionContext.getContextEntries();
}
/**
* {@inheritDoc}
*/
public Set<String> getContextLabels() {
return exceptionContext.getContextLabels();
} }
/** /**

View File

@ -16,8 +16,11 @@
*/ */
package org.apache.commons.lang3.exception; package org.apache.commons.lang3.exception;
import java.util.List;
import java.util.Set; import java.util.Set;
import org.apache.commons.lang3.tuple.Pair;
/** /**
* <p> * <p>
* A runtime exception that provides an easy and safe way to add contextual information. * A runtime exception that provides an easy and safe way to add contextual information.
@ -27,8 +30,8 @@ import java.util.Set;
* Providing this data is tricky however, due to concerns over formatting and nulls. * Providing this data is tricky however, due to concerns over formatting and nulls.
* </p><p> * </p><p>
* The contexted exception approach allows the exception to be created together with a * The contexted exception approach allows the exception to be created together with a
* map of context values. This additional information is automatically included in the * list of context label-value pairs. This additional information is automatically included in
* message and printed stack trace. * the message and printed stack trace.
* </p><p> * </p><p>
* An checked version of this exception is provided by ContextedException. * An checked version of this exception is provided by ContextedException.
* </p> * </p>
@ -40,9 +43,9 @@ import java.util.Set;
* ... * ...
* } catch (Exception e) { * } catch (Exception e) {
* throw new ContextedException("Error posting account transaction", e) * throw new ContextedException("Error posting account transaction", e)
* .addValue("accountNumber", accountNumber) * .addContextValue("accountNumber", accountNumber)
* .addValue("amountPosted", amountPosted) * .addContextValue("amountPosted", amountPosted)
* .addValue("previousBalance", previousBalance) * .addContextValue("previousBalance", previousBalance)
* } * }
* } * }
* </pre> * </pre>
@ -67,7 +70,7 @@ import java.util.Set;
public class ContextedRuntimeException extends RuntimeException implements ExceptionContext { public class ContextedRuntimeException extends RuntimeException implements ExceptionContext {
/** The serialization version. */ /** The serialization version. */
private static final long serialVersionUID = 1459691936045811817L; private static final long serialVersionUID = 20110706L;
/** The context where the data is stored. */ /** The context where the data is stored. */
private final ExceptionContext exceptionContext; private final ExceptionContext exceptionContext;
@ -120,6 +123,9 @@ public class ContextedRuntimeException extends RuntimeException implements Excep
/** /**
* Instantiates ContextedRuntimeException with cause, message, and ExceptionContext. * Instantiates ContextedRuntimeException with cause, message, and ExceptionContext.
* <p>
* Note: This exception is only serializable if the object added is serializable.
* </p>
* *
* @param message the exception message, may be null * @param message the exception message, may be null
* @param cause the underlying cause of the exception, may be null * @param cause the underlying cause of the exception, may be null
@ -134,59 +140,105 @@ public class ContextedRuntimeException extends RuntimeException implements Excep
} }
//----------------------------------------------------------------------- //-----------------------------------------------------------------------
/** /**
* Adds information helpful to a developer in diagnosing and correcting * Adds information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed * the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. If the added label * should have a reasonable toString() implementation. Different values
* is already available, the label is appended with an index. * can be added with the same label multiple times.
* <p> * <p>
* Note: This exception is only serializable if the object added is serializable. * Note: This exception is only serializable if the object added is serializable.
* </p> * </p>
* *
* @param label a textual label associated with information, null not recommended * @param label a textual label associated with information, {@code null} not recommended
* @param value information needed to understand exception, may be null * @param value information needed to understand exception, may be {@code null}
* @return this, for method chaining * @return this, for method chaining
*/ */
public ContextedRuntimeException addValue(String label, Object value) { public ContextedRuntimeException addContextValue(String label, Object value) {
exceptionContext.addValue(label, value); exceptionContext.addContextValue(label, value);
return this; return this;
} }
/** /**
* Replaces information helpful to a developer in diagnosing and correcting * Adds information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed * the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. If the replaced * should have a reasonable toString() implementation. Different values
* label does not yet exist, it is simply added. * can be added with the same label multiple times.
* <p> * <p>
* Note: This exception is only serializable if the object added is serializable. * Note: This exception is only serializable if the object added as value is serializable.
* </p> * </p>
* *
* @param label a textual label associated with information, null not recommended * @param pair a pair of textual label and information
* @param value information needed to understand exception, may be null * @throws NullPointerException if {@code pair} is {@code null}
* @return this, for method chaining * @return this, for method chaining
*/ */
public ContextedRuntimeException replaceValue(String label, Object value) { public ContextedRuntimeException addContextValue(Pair<String, Object> pair) {
exceptionContext.replaceValue(label, value); this.exceptionContext.addContextValue(pair);
return this; return this;
} }
/** /**
* Retrieves a contextual data value associated with the label. * Set information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. Existing values
* with the same labels are removed before the new one is added.
* <p>
* Note: This exception is only serializable if the object added as value is serializable.
* </p>
* *
* @param label the label to get the contextual value for, may be null * @param label a textual label associated with information, {@code null} not recommended
* @return the contextual value associated with the label, may be null * @param value information needed to understand exception, may be {@code null}
* @return this, for method chaining
*/ */
public Object getValue(String label) { public ContextedRuntimeException setContextValue(String label, Object value) {
return exceptionContext.getValue(label); exceptionContext.setContextValue(label, value);
return this;
} }
/** /**
* Retrieves the labels defined in the contextual data. * Set information helpful to a developer in diagnosing and correcting
* the problem. For the information to be meaningful, the value passed
* should have a reasonable toString() implementation. Existing values
* with the same labels are removed before the new one is added.
* <p>
* Note: This exception is only serializable if the object added as value is serializable.
* </p>
* *
* @return the set of labels, never null * @param pair a pair of textual label and information
* @throws NullPointerException if {@code pair} is {@code null}
* @return this, for method chaining
*/ */
public Set<String> getLabelSet() { public ContextedRuntimeException setContextValue(Pair<String, Object> pair) {
return exceptionContext.getLabelSet(); this.exceptionContext.setContextValue(pair);
return this;
}
/**
* {@inheritDoc}
*/
public List<Object> getContextValues(String label) {
return this.exceptionContext.getContextValues(label);
}
/**
* {@inheritDoc}
*/
public Object getFirstContextValue(String label) {
return this.exceptionContext.getFirstContextValue(label);
}
/**
* {@inheritDoc}
*/
public List<Pair<String, Object>> getContextEntries() {
return this.exceptionContext.getContextEntries();
}
/**
* {@inheritDoc}
*/
public Set<String> getContextLabels() {
return exceptionContext.getContextLabels();
} }
/** /**

View File

@ -17,11 +17,15 @@
package org.apache.commons.lang3.exception; package org.apache.commons.lang3.exception;
import java.io.Serializable; import java.io.Serializable;
import java.util.LinkedHashMap; import java.util.ArrayList;
import java.util.Map; import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set; import java.util.Set;
import org.apache.commons.lang3.SystemUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.tuple.ImmutablePair;
import org.apache.commons.lang3.tuple.Pair;
/** /**
* Default implementation of the context storing the label-value pairs for contexted exceptions. * Default implementation of the context storing the label-value pairs for contexted exceptions.
@ -31,73 +35,93 @@ import org.apache.commons.lang3.SystemUtils;
* *
* @since 3.0 * @since 3.0
*/ */
class DefaultExceptionContext implements ExceptionContext, Serializable { public class DefaultExceptionContext implements ExceptionContext, Serializable {
/** The serialization version. */ /** The serialization version. */
private static final long serialVersionUID = 293747957535772807L; private static final long serialVersionUID = 20110706L;
/** The ordered map storing the label-data pairs. */ /** The list storing the label-data pairs. */
private Map<String, Object> contextValueMap = new LinkedHashMap<String, Object>(); private List<Pair<String, Object>> contextValues = new ArrayList<Pair<String,Object>>();
/** /**
* Adds a contextual label-value pair into this context. * {@inheritDoc}
* <p>
* This label-value pair provides information useful for debugging. If the
* label already exists and the provided information is different, the
* label will be added with an appended index.
* </p>
*
* @param label the label of the item to add, null not recommended
* @param value the value of item to add, may be null
* @return this, for method chaining
*/ */
public ExceptionContext addValue(String label, Object value) { public DefaultExceptionContext addContextValue(String label, Object value) {
String key = label; return addContextValue(new ImmutablePair<String, Object>(label, value));
int i = 0;
while (contextValueMap.containsKey(key)) {
Object information = contextValueMap.get(key);
if ((value == null && information == null)
|| (value != null && value.equals(information))) {
return this;
} }
key = label + "[" + ++i +"]";
/**
* {@inheritDoc}
*/
public DefaultExceptionContext addContextValue(Pair<String, Object> pair) {
if (pair == null) {
throw new NullPointerException();
} }
contextValueMap.put(key, value); contextValues.add(pair);
return this; return this;
} }
/** /**
* Replaces a contextual label-value pair of this context. * {@inheritDoc}
* <p>
* This label-value pair provides information useful for debugging. If the
* label does not yet exists, a simply add operation is performed.
* </p>
*
* @param label the label of the item to add, null not recommended
* @param value the value of item to add, may be null
* @return this, for method chaining
*/ */
public ExceptionContext replaceValue(String label, Object value) { public DefaultExceptionContext setContextValue(String label, Object value) {
contextValueMap.put(label, value); return setContextValue(new ImmutablePair<String, Object>(label, value));
return this;
} }
/** /**
* Retrieves a contextual data value associated with the label. * {@inheritDoc}
*
* @param label the label to get the contextual value for, may be null
* @return the contextual value associated with the label, may be null
*/ */
public Object getValue(String label) { public DefaultExceptionContext setContextValue(Pair<String, Object> pair) {
return contextValueMap.get(label); final String label = pair.getKey(); // implicit NPE
for (final Iterator<Pair<String, Object>> iter = contextValues.iterator(); iter.hasNext();) {
final Pair<String, Object> p = iter.next();
if (StringUtils.equals(label, p.getKey())) {
iter.remove();
}
}
return addContextValue(pair);
} }
/** /**
* Retrieves the labels defined in the contextual data. * {@inheritDoc}
*
* @return the set of labels, never null
*/ */
public Set<String> getLabelSet() { public List<Object> getContextValues(String label) {
return contextValueMap.keySet(); final List<Object> values = new ArrayList<Object>();
for (final Pair<String, Object> pair : contextValues) {
if (StringUtils.equals(label, pair.getKey())) {
values.add(pair.getValue());
}
}
return values;
}
/**
* {@inheritDoc}
*/
public Object getFirstContextValue(String label) {
for (final Pair<String, Object> pair : contextValues) {
if (StringUtils.equals(label, pair.getKey())) {
return pair.getValue();
}
}
return null;
}
/**
* {@inheritDoc}
*/
public Set<String> getContextLabels() {
final Set<String> labels = new HashSet<String>();
for (final Pair<String, Object> pair : contextValues) {
labels.add(pair.getKey());
}
return labels;
}
/**
* {@inheritDoc}
*/
public List<Pair<String, Object>> getContextEntries() {
return contextValues;
} }
/** /**
@ -112,21 +136,19 @@ class DefaultExceptionContext implements ExceptionContext, Serializable {
buffer.append(baseMessage); buffer.append(baseMessage);
} }
if (contextValueMap.size() > 0) { if (contextValues.size() > 0) {
if (buffer.length() > 0l) { if (buffer.length() > 0) {
buffer.append(SystemUtils.LINE_SEPARATOR); buffer.append('\n');
} }
buffer.append("Exception Context:"); buffer.append("Exception Context:\n");
buffer.append(SystemUtils.LINE_SEPARATOR);
buffer.append("\t");
Object value; Object value;
String valueStr; String valueStr;
for (String label : contextValueMap.keySet()) { for (final Pair<String, Object> pair : contextValues) {
buffer.append("["); buffer.append("\t[");
buffer.append(label); buffer.append(pair.getKey());
buffer.append("="); buffer.append("=");
value = this.contextValueMap.get(label); value = pair.getValue();
if (value == null) { if (value == null) {
buffer.append("null"); buffer.append("null");
} else { } else {
@ -137,13 +159,10 @@ class DefaultExceptionContext implements ExceptionContext, Serializable {
} }
buffer.append(valueStr); buffer.append(valueStr);
} }
buffer.append("]"); buffer.append("]\n");
buffer.append(SystemUtils.LINE_SEPARATOR);
buffer.append("\t");
} }
buffer.append("---------------------------------"); buffer.append("---------------------------------");
} }
return buffer.toString(); return buffer.toString();
} }
} }

View File

@ -16,11 +16,18 @@
*/ */
package org.apache.commons.lang3.exception; package org.apache.commons.lang3.exception;
import java.util.List;
import java.util.Set; import java.util.Set;
import org.apache.commons.lang3.tuple.Pair;
/** /**
* Allows the storage and retrieval of contextual information based on label-value * Allows the storage and retrieval of contextual information based on label-value
* pairs for exceptions. * pairs for exceptions.
* <p>
* Implementations are expected to manage the pairs in a list-style collection
* that keeps the pairs in the sequence of their addition.
* </p>
* *
* @see ContextedException * @see ContextedException
* @see ContextedRuntimeException * @see ContextedRuntimeException
@ -31,52 +38,91 @@ public interface ExceptionContext {
/** /**
* Adds a contextual label-value pair into this context. * Adds a contextual label-value pair into this context.
* <p> * <p>
* This label-value pair provides information useful for debugging. If the * The pair will be added to the context, independently of an already
* provided label already exists, it depends on the implementation what * existing pair with the same label.
* happens with the new value.
* </p> * </p>
* *
* @param label the label of the item to add, null not recommended * @param label the label of the item to add, {@code null} not recommended
* @param value the value of item to add, may be null * @param value the value of item to add, may be {@code null}
* @return context itself to allow method chaining * @return context itself to allow method chaining
*/ */
public ExceptionContext addValue(String label, Object value); public ExceptionContext addContextValue(String label, Object value);
/** /**
* Replaces a contextual label-value pair of this context. * Adds a contextual label-value pair into this context.
* <p> * <p>
* This label-value pair provides information useful for debugging. If the * The pair will be added to the context, independently of an already
* label does not exist yet, it depends on the implementation what happens * existing pair with the same label.
* with the provided value.
* </p> * </p>
* *
* @param label the label of the item to add, null not recommended * @param pair the label-value pair to add
* @param value the value of item to add, may be null
* @return context itself to allow method chaining * @return context itself to allow method chaining
* @throws NullPointerException if pair is {@code null}
*/ */
public ExceptionContext replaceValue(String label, Object value); public ExceptionContext addContextValue(Pair<String, Object> pair);
/** /**
* Retrieves a contextual data value associated with the label. * Sets a contextual label-value pair of this context.
* <p>
* The pair will be added normally, but any existing label-value pair with
* the same label is removed from the context.
* </p>
* *
* @param label the label to get the contextual value for, may be null * @param label the label of the item to add, {@code null} not recommended
* @return the contextual value associated with the label, may be null * @param value the value of item to add, may be {@code null}
* @return context itself to allow method chaining
*/ */
public Object getValue(String label); public ExceptionContext setContextValue(String label, Object value);
/**
* Sets a contextual label-value pair of this context.
* <p>
* The pair will be added normally, but any existing label-value pair with
* the same label is removed from the context.
* </p>
*
* @param pair the label-value pair to add
* @return context itself to allow method chaining
* @throws NullPointerException if pair is {@code null}
*/
public ExceptionContext setContextValue(Pair<String, Object> pair);
/**
* Retrieves contextual data values associated with the label.
*
* @param label the label to get the contextual values for, may be {@code null}
* @return the contextual values associated with the label, never {@code null}
*/
public List<Object> getContextValues(String label);
/**
* Retrieves the first available contextual data value associated with the label.
*
* @param label the label to get the contextual value for, may be {@code null}
* @return the first contextual value associated with the label, may be {@code null}
*/
public Object getFirstContextValue(String label);
/** /**
* Retrieves the labels defined in the contextual data. * Retrieves the labels defined in the contextual data.
* *
* @return the set of labels, never null * @return the set of labels, never {@code null}
*/ */
public Set<String> getLabelSet(); public Set<String> getContextLabels();
/**
* Retrieves the label-value pairs defined in the contextual data.
*
* @return the list of pairs, never {@code null}
*/
public List<Pair<String, Object>> getContextEntries();
/** /**
* Implementors provide the given base message with context label/value item * Implementors provide the given base message with context label/value item
* information appended. * information appended.
* *
* @param baseMessage the base exception message <b>without</b> context information appended * @param baseMessage the base exception message <b>without</b> context information appended
* @return the exception message <b>with</b> context information appended, never null * @return the exception message <b>with</b> context information appended, never {@code null}
*/ */
public String getFormattedExceptionMessage(String baseMessage); public String getFormattedExceptionMessage(String baseMessage);

View File

@ -0,0 +1,170 @@
/*
* 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.commons.lang3.exception;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Set;
import org.apache.commons.lang3.tuple.Pair;
import junit.framework.TestCase;
/**
* Abstract test of an ExceptionContext implementation.
*/
public abstract class AbstractExceptionContextTest<T extends ExceptionContext> extends TestCase {
protected static final String TEST_MESSAGE_2 = "This is monotonous";
protected static final String TEST_MESSAGE = "Test Message";
protected T exceptionContext;
protected static class ObjectWithFaultyToString implements Serializable {
private static final long serialVersionUID = 3495843995332310458L;
@Override
public String toString() {
throw new RuntimeException("Crap");
}
}
@Override
protected void setUp() throws Exception {
exceptionContext
.addContextValue("test1", null)
.addContextValue("test2", "some value")
.addContextValue("test Date", new Date())
.addContextValue("test Nbr", new Integer(5))
.addContextValue("test Poorly written obj", new ObjectWithFaultyToString());
}
public void testAddContextValue() {
String message = exceptionContext.getFormattedExceptionMessage(TEST_MESSAGE);
assertTrue(message.indexOf(TEST_MESSAGE) >= 0);
assertTrue(message.indexOf("test1") >= 0);
assertTrue(message.indexOf("test2") >= 0);
assertTrue(message.indexOf("test Date") >= 0);
assertTrue(message.indexOf("test Nbr") >= 0);
assertTrue(message.indexOf("some value") >= 0);
assertTrue(message.indexOf("5") >= 0);
assertTrue(exceptionContext.getFirstContextValue("test1") == null);
assertTrue(exceptionContext.getFirstContextValue("test2").equals("some value"));
assertEquals(5, exceptionContext.getContextLabels().size());
assertTrue(exceptionContext.getContextLabels().contains("test1"));
assertTrue(exceptionContext.getContextLabels().contains("test2"));
assertTrue(exceptionContext.getContextLabels().contains("test Date"));
assertTrue(exceptionContext.getContextLabels().contains("test Nbr"));
exceptionContext.addContextValue("test2", "different value");
assertEquals(5, exceptionContext.getContextLabels().size());
assertTrue(exceptionContext.getContextLabels().contains("test2"));
String contextMessage = exceptionContext.getFormattedExceptionMessage(null);
assertTrue(contextMessage.indexOf(TEST_MESSAGE) == -1);
}
public void testSetContextValue() {
exceptionContext.addContextValue("test2", "different value");
exceptionContext.setContextValue("test3", "3");
String message = exceptionContext.getFormattedExceptionMessage(TEST_MESSAGE);
assertTrue(message.indexOf(TEST_MESSAGE) >= 0);
assertTrue(message.indexOf("test Poorly written obj") >= 0);
assertTrue(message.indexOf("Crap") >= 0);
assertTrue(exceptionContext.getFirstContextValue("crap") == null);
assertTrue(exceptionContext.getFirstContextValue("test Poorly written obj") instanceof ObjectWithFaultyToString);
assertEquals(7, exceptionContext.getContextEntries().size());
assertEquals(6, exceptionContext.getContextLabels().size());
assertTrue(exceptionContext.getContextLabels().contains("test Poorly written obj"));
assertTrue(!exceptionContext.getContextLabels().contains("crap"));
exceptionContext.setContextValue("test Poorly written obj", "replacement");
assertEquals(7, exceptionContext.getContextEntries().size());
assertEquals(6, exceptionContext.getContextLabels().size());
exceptionContext.setContextValue("test2", "another");
assertEquals(6, exceptionContext.getContextEntries().size());
assertEquals(6, exceptionContext.getContextLabels().size());
String contextMessage = exceptionContext.getFormattedExceptionMessage(null);
assertTrue(contextMessage.indexOf(TEST_MESSAGE) == -1);
}
public void testGetFirstContextValue() {
exceptionContext.addContextValue("test2", "different value");
assertTrue(exceptionContext.getFirstContextValue("test1") == null);
assertTrue(exceptionContext.getFirstContextValue("test2").equals("some value"));
assertTrue(exceptionContext.getFirstContextValue("crap") == null);
exceptionContext.setContextValue("test2", "another");
assertTrue(exceptionContext.getFirstContextValue("test2").equals("another"));
}
public void testGetContextValues() {
exceptionContext.addContextValue("test2", "different value");
assertEquals(exceptionContext.getContextValues("test1"), Collections.singletonList(null));
assertEquals(exceptionContext.getContextValues("test2"), Arrays.asList("some value", "different value"));
exceptionContext.setContextValue("test2", "another");
assertTrue(exceptionContext.getFirstContextValue("test2").equals("another"));
}
public void testGetContextLabels() {
assertEquals(5, exceptionContext.getContextEntries().size());
exceptionContext.addContextValue("test2", "different value");
Set<String> labels = exceptionContext.getContextLabels();
assertEquals(6, exceptionContext.getContextEntries().size());
assertEquals(5, labels.size());
assertTrue(labels.contains("test1"));
assertTrue(labels.contains("test2"));
assertTrue(labels.contains("test Date"));
assertTrue(labels.contains("test Nbr"));
}
public void testGetContextEntries() {
assertEquals(5, exceptionContext.getContextEntries().size());
exceptionContext.addContextValue("test2", "different value");
List<Pair<String, Object>> entries = exceptionContext.getContextEntries();
assertEquals(6, entries.size());
assertEquals("test1", entries.get(0).getKey());
assertEquals("test2", entries.get(1).getKey());
assertEquals("test Date", entries.get(2).getKey());
assertEquals("test Nbr", entries.get(3).getKey());
assertEquals("test Poorly written obj", entries.get(4).getKey());
assertEquals("test2", entries.get(5).getKey());
}
}

View File

@ -16,51 +16,50 @@
*/ */
package org.apache.commons.lang3.exception; package org.apache.commons.lang3.exception;
import java.io.Serializable;
import java.util.Date; import java.util.Date;
import junit.framework.TestCase;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
/** /**
* JUnit tests for ContextedException. * JUnit tests for ContextedException.
*/ */
public class ContextedExceptionTest extends TestCase { public class ContextedExceptionTest extends AbstractExceptionContextTest<ContextedException> {
private static final String TEST_MESSAGE_2 = "This is monotonous"; @Override
private static final String TEST_MESSAGE = "Test Message"; public void setUp() throws Exception {
private ContextedException contextedException; exceptionContext = new ContextedException(new Exception(TEST_MESSAGE));
super.setUp();
}
public void testContextedException() { public void testContextedException() {
contextedException = new ContextedException(); exceptionContext = new ContextedException();
String message = contextedException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(StringUtils.isEmpty(message)); assertTrue(StringUtils.isEmpty(message));
} }
public void testContextedExceptionString() { public void testContextedExceptionString() {
contextedException = new ContextedException(TEST_MESSAGE); exceptionContext = new ContextedException(TEST_MESSAGE);
assertEquals(TEST_MESSAGE, contextedException.getMessage()); assertEquals(TEST_MESSAGE, exceptionContext.getMessage());
String trace = ExceptionUtils.getStackTrace(contextedException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
} }
public void testContextedExceptionThrowable() { public void testContextedExceptionThrowable() {
contextedException = new ContextedException(new Exception(TEST_MESSAGE)); exceptionContext = new ContextedException(new Exception(TEST_MESSAGE));
String message = contextedException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
assertTrue(message.indexOf(TEST_MESSAGE)>=0); assertTrue(message.indexOf(TEST_MESSAGE)>=0);
} }
public void testContextedExceptionStringThrowable() { public void testContextedExceptionStringThrowable() {
contextedException = new ContextedException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE)); exceptionContext = new ContextedException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE));
String message = contextedException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0); assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0);
@ -68,97 +67,25 @@ public class ContextedExceptionTest extends TestCase {
} }
public void testContextedExceptionStringThrowableContext() { public void testContextedExceptionStringThrowableContext() {
contextedException = new ContextedException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), new DefaultExceptionContext()); exceptionContext = new ContextedException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), new DefaultExceptionContext());
String message = contextedException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0); assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0);
assertTrue(message.indexOf(TEST_MESSAGE_2)>=0); assertTrue(message.indexOf(TEST_MESSAGE_2)>=0);
} }
public void testAddValue() {
contextedException = new ContextedException(new Exception(TEST_MESSAGE))
.addValue("test1", null)
.addValue("test2", "some value")
.addValue("test Date", new Date())
.addValue("test Nbr", new Integer(5));
String message = contextedException.getMessage();
assertTrue(message.indexOf(TEST_MESSAGE)>=0);
assertTrue(message.indexOf("test1")>=0);
assertTrue(message.indexOf("test2")>=0);
assertTrue(message.indexOf("test Date")>=0);
assertTrue(message.indexOf("test Nbr")>=0);
assertTrue(message.indexOf("some value")>=0);
assertTrue(message.indexOf("5")>=0);
assertTrue(contextedException.getValue("test1") == null);
assertTrue(contextedException.getValue("test2").equals("some value"));
assertTrue(contextedException.getLabelSet().size() == 4);
assertTrue(contextedException.getLabelSet().contains("test1"));
assertTrue(contextedException.getLabelSet().contains("test2"));
assertTrue(contextedException.getLabelSet().contains("test Date"));
assertTrue(contextedException.getLabelSet().contains("test Nbr"));
contextedException.addValue("test2", "different value");
assertTrue(contextedException.getLabelSet().size() == 5);
assertTrue(contextedException.getLabelSet().contains("test2"));
assertTrue(contextedException.getLabelSet().contains("test2[1]"));
String contextMessage = contextedException.getFormattedExceptionMessage(null);
assertTrue(contextMessage.indexOf(TEST_MESSAGE) == -1);
assertTrue(contextedException.getMessage().endsWith(contextMessage));
}
public void testReplaceValue() {
contextedException = new ContextedException(new Exception(TEST_MESSAGE))
.addValue("test Poorly written obj", new ObjectWithFaultyToString());
String message = contextedException.getMessage();
assertTrue(message.indexOf(TEST_MESSAGE)>=0);
assertTrue(message.indexOf("test Poorly written obj")>=0);
assertTrue(message.indexOf("Crap")>=0);
assertTrue(contextedException.getValue("crap") == null);
assertTrue(contextedException.getValue("test Poorly written obj") instanceof ObjectWithFaultyToString);
assertTrue(contextedException.getLabelSet().size() == 1);
assertTrue(contextedException.getLabelSet().contains("test Poorly written obj"));
assertTrue(!contextedException.getLabelSet().contains("crap"));
contextedException.replaceValue("test Poorly written obj", "replacement");
assertTrue(contextedException.getLabelSet().size() == 1);
String contextMessage = contextedException.getFormattedExceptionMessage(null);
assertTrue(contextMessage.indexOf(TEST_MESSAGE) == -1);
assertTrue(contextedException.getMessage().endsWith(contextMessage));
}
public void testNullExceptionPassing() { public void testNullExceptionPassing() {
contextedException = new ContextedException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), null) exceptionContext = new ContextedException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), null)
.addValue("test1", null) .addContextValue("test1", null)
.addValue("test2", "some value") .addContextValue("test2", "some value")
.addValue("test Date", new Date()) .addContextValue("test Date", new Date())
.addValue("test Nbr", new Integer(5)) .addContextValue("test Nbr", new Integer(5))
.addValue("test Poorly written obj", new ObjectWithFaultyToString()); .addContextValue("test Poorly written obj", new ObjectWithFaultyToString());
String message = contextedException.getMessage(); String message = exceptionContext.getMessage();
assertTrue(message != null); assertTrue(message != null);
} }
static class ObjectWithFaultyToString implements Serializable {
private static final long serialVersionUID = 3495843995332310458L;
@Override
public String toString() {
throw new RuntimeException("Crap");
}
}
} }

View File

@ -18,50 +18,49 @@ package org.apache.commons.lang3.exception;
import java.util.Date; import java.util.Date;
import junit.framework.TestCase;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.exception.ContextedExceptionTest.ObjectWithFaultyToString;
/** /**
* JUnit tests for ContextedRuntimeException. * JUnit tests for ContextedRuntimeException.
* *
*/ */
public class ContextedRuntimeExceptionTest extends TestCase { public class ContextedRuntimeExceptionTest extends AbstractExceptionContextTest<ContextedRuntimeException> {
private static final String TEST_MESSAGE_2 = "This is monotonous"; @Override
private static final String TEST_MESSAGE = "Test Message"; protected void setUp() throws Exception {
private ContextedRuntimeException contextedRuntimeException; exceptionContext = new ContextedRuntimeException(new Exception(TEST_MESSAGE));
super.setUp();
}
public void testContextedException() { public void testContextedException() {
contextedRuntimeException = new ContextedRuntimeException(); exceptionContext = new ContextedRuntimeException();
String message = contextedRuntimeException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedRuntimeException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(StringUtils.isEmpty(message)); assertTrue(StringUtils.isEmpty(message));
} }
public void testContextedExceptionString() { public void testContextedExceptionString() {
contextedRuntimeException = new ContextedRuntimeException(TEST_MESSAGE); exceptionContext = new ContextedRuntimeException(TEST_MESSAGE);
assertEquals(TEST_MESSAGE, contextedRuntimeException.getMessage()); assertEquals(TEST_MESSAGE, exceptionContext.getMessage());
String trace = ExceptionUtils.getStackTrace(contextedRuntimeException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
} }
public void testContextedExceptionThrowable() { public void testContextedExceptionThrowable() {
contextedRuntimeException = new ContextedRuntimeException(new Exception(TEST_MESSAGE)); exceptionContext = new ContextedRuntimeException(new Exception(TEST_MESSAGE));
String message = contextedRuntimeException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedRuntimeException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
assertTrue(message.indexOf(TEST_MESSAGE)>=0); assertTrue(message.indexOf(TEST_MESSAGE)>=0);
} }
public void testContextedExceptionStringThrowable() { public void testContextedExceptionStringThrowable() {
contextedRuntimeException = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE)); exceptionContext = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE));
String message = contextedRuntimeException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedRuntimeException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0); assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0);
@ -69,85 +68,24 @@ public class ContextedRuntimeExceptionTest extends TestCase {
} }
public void testContextedExceptionStringThrowableContext() { public void testContextedExceptionStringThrowableContext() {
contextedRuntimeException = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), new DefaultExceptionContext()); exceptionContext = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), new DefaultExceptionContext() {});
String message = contextedRuntimeException.getMessage(); String message = exceptionContext.getMessage();
String trace = ExceptionUtils.getStackTrace(contextedRuntimeException); String trace = ExceptionUtils.getStackTrace(exceptionContext);
assertTrue(trace.indexOf("ContextedException")>=0); assertTrue(trace.indexOf("ContextedException")>=0);
assertTrue(trace.indexOf(TEST_MESSAGE)>=0); assertTrue(trace.indexOf(TEST_MESSAGE)>=0);
assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0); assertTrue(trace.indexOf(TEST_MESSAGE_2)>=0);
assertTrue(message.indexOf(TEST_MESSAGE_2)>=0); assertTrue(message.indexOf(TEST_MESSAGE_2)>=0);
} }
public void testAddValue() {
contextedRuntimeException = new ContextedRuntimeException(new Exception(TEST_MESSAGE))
.addValue("test1", null)
.addValue("test2", "some value")
.addValue("test Date", new Date())
.addValue("test Nbr", new Integer(5));
String message = contextedRuntimeException.getMessage();
assertTrue(message.indexOf(TEST_MESSAGE)>=0);
assertTrue(message.indexOf("test1")>=0);
assertTrue(message.indexOf("test2")>=0);
assertTrue(message.indexOf("test Date")>=0);
assertTrue(message.indexOf("test Nbr")>=0);
assertTrue(message.indexOf("some value")>=0);
assertTrue(message.indexOf("5")>=0);
assertTrue(contextedRuntimeException.getValue("test1") == null);
assertTrue(contextedRuntimeException.getValue("test2").equals("some value"));
assertTrue(contextedRuntimeException.getLabelSet().size() == 4);
assertTrue(contextedRuntimeException.getLabelSet().contains("test1"));
assertTrue(contextedRuntimeException.getLabelSet().contains("test2"));
assertTrue(contextedRuntimeException.getLabelSet().contains("test Date"));
assertTrue(contextedRuntimeException.getLabelSet().contains("test Nbr"));
contextedRuntimeException.addValue("test2", "different value");
assertTrue(contextedRuntimeException.getLabelSet().size() == 5);
assertTrue(contextedRuntimeException.getLabelSet().contains("test2"));
assertTrue(contextedRuntimeException.getLabelSet().contains("test2[1]"));
String contextMessage = contextedRuntimeException.getFormattedExceptionMessage(null);
assertTrue(contextMessage.indexOf(TEST_MESSAGE) == -1);
assertTrue(contextedRuntimeException.getMessage().endsWith(contextMessage));
}
public void testReplaceValue() {
contextedRuntimeException = new ContextedRuntimeException(new Exception(TEST_MESSAGE))
.addValue("test Poorly written obj", new ObjectWithFaultyToString());
String message = contextedRuntimeException.getMessage();
assertTrue(message.indexOf(TEST_MESSAGE)>=0);
assertTrue(message.indexOf("test Poorly written obj")>=0);
assertTrue(message.indexOf("Crap")>=0);
assertTrue(contextedRuntimeException.getValue("crap") == null);
assertTrue(contextedRuntimeException.getValue("test Poorly written obj") instanceof ObjectWithFaultyToString);
assertTrue(contextedRuntimeException.getLabelSet().size() == 1);
assertTrue(contextedRuntimeException.getLabelSet().contains("test Poorly written obj"));
assertTrue(!contextedRuntimeException.getLabelSet().contains("crap"));
contextedRuntimeException.replaceValue("test Poorly written obj", "replacement");
assertTrue(contextedRuntimeException.getLabelSet().size() == 1);
String contextMessage = contextedRuntimeException.getFormattedExceptionMessage(null);
assertTrue(contextMessage.indexOf(TEST_MESSAGE) == -1);
assertTrue(contextedRuntimeException.getMessage().endsWith(contextMessage));
}
public void testNullExceptionPassing() { public void testNullExceptionPassing() {
contextedRuntimeException = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), null) exceptionContext = new ContextedRuntimeException(TEST_MESSAGE_2, new Exception(TEST_MESSAGE), null)
.addValue("test1", null) .addContextValue("test1", null)
.addValue("test2", "some value") .addContextValue("test2", "some value")
.addValue("test Date", new Date()) .addContextValue("test Date", new Date())
.addValue("test Nbr", new Integer(5)) .addContextValue("test Nbr", new Integer(5))
.addValue("test Poorly written obj", new ObjectWithFaultyToString()); .addContextValue("test Poorly written obj", new ObjectWithFaultyToString());
String message = contextedRuntimeException.getMessage(); String message = exceptionContext.getMessage();
assertTrue(message != null); assertTrue(message != null);
} }
} }

View File

@ -16,92 +16,21 @@
*/ */
package org.apache.commons.lang3.exception; package org.apache.commons.lang3.exception;
import java.util.Date;
import junit.framework.TestCase;
import org.apache.commons.lang3.exception.ContextedExceptionTest.ObjectWithFaultyToString;
/** /**
* JUnit tests for DefaultExceptionContext. * JUnit tests for DefaultExceptionContext.
* *
*/ */
public class DefaultExceptionContextTest extends TestCase { public class DefaultExceptionContextTest extends AbstractExceptionContextTest<DefaultExceptionContext> {
private ExceptionContext defaultExceptionContext;
public DefaultExceptionContextTest(String name) {
super(name);
}
@Override @Override
public void setUp() { public void setUp() throws Exception {
defaultExceptionContext = new DefaultExceptionContext() exceptionContext = new DefaultExceptionContext();
.addValue("test1", null) super.setUp();
.addValue("test2", "some value")
.addValue("test Date", new Date())
.addValue("test Nbr", new Integer(5))
.addValue("test Poorly written obj", new ObjectWithFaultyToString());
}
public void testAddValue() {
defaultExceptionContext.addValue("test2", "different value");
String message = defaultExceptionContext.getFormattedExceptionMessage("This is an error");
assertTrue(message.indexOf("This is an error")>=0);
assertTrue(message.indexOf("test1")>=0);
assertTrue(message.indexOf("test2")>=0);
assertTrue(message.indexOf("test2[1]")>=0);
assertTrue(message.indexOf("test Date")>=0);
assertTrue(message.indexOf("test Nbr")>=0);
assertTrue(message.indexOf("test Poorly written obj")>=0);
assertTrue(message.indexOf("some value")>=0);
assertTrue(message.indexOf("different value")>=0);
assertTrue(message.indexOf("5")>=0);
assertTrue(message.indexOf("Crap")>=0);
}
public void testReplaceValue() {
defaultExceptionContext.replaceValue("test2", "different value");
defaultExceptionContext.replaceValue("test3", "3");
String message = defaultExceptionContext.getFormattedExceptionMessage("This is an error");
assertTrue(message.indexOf("This is an error")>=0);
assertTrue(message.indexOf("test1")>=0);
assertTrue(message.indexOf("test2")>=0);
assertTrue(message.indexOf("test3")>=0);
assertTrue(message.indexOf("test Date")>=0);
assertTrue(message.indexOf("test Nbr")>=0);
assertTrue(message.indexOf("test Poorly written obj")>=0);
assertTrue(message.indexOf("different value")>=0);
assertTrue(message.indexOf("5")>=0);
assertTrue(message.indexOf("Crap")>=0);
assertTrue(message.indexOf("test2[1]")<0);
assertTrue(message.indexOf("some value")<0);
} }
public void testFormattedExceptionMessageNull() { public void testFormattedExceptionMessageNull() {
defaultExceptionContext = new DefaultExceptionContext(); exceptionContext = new DefaultExceptionContext();
defaultExceptionContext.getFormattedExceptionMessage(null); exceptionContext.getFormattedExceptionMessage(null);
}
public void testGetValue() {
assertTrue(defaultExceptionContext.getValue("test1") == null);
assertTrue(defaultExceptionContext.getValue("test2").equals("some value"));
assertTrue(defaultExceptionContext.getValue("crap") == null);
assertTrue(defaultExceptionContext.getValue("test Poorly written obj") instanceof ObjectWithFaultyToString);
}
public void testGetLabelSet() {
assertTrue(defaultExceptionContext.getLabelSet().size() == 5);
assertTrue(defaultExceptionContext.getLabelSet().contains("test1"));
assertTrue(defaultExceptionContext.getLabelSet().contains("test2"));
assertTrue(defaultExceptionContext.getLabelSet().contains("test Date"));
assertTrue(defaultExceptionContext.getLabelSet().contains("test Nbr"));
assertTrue(defaultExceptionContext.getLabelSet().contains("test Poorly written obj"));
assertTrue(!defaultExceptionContext.getLabelSet().contains("crap"));
} }
} }