com.helger.commons.mock.CommonsTestHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.8+ Library with tons of utility classes required in all projects
The newest version!
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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 com.helger.commons.mock;
import java.io.Serializable;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.annotation.PresentForCodeCoverage;
import com.helger.commons.callback.IThrowingRunnable;
import com.helger.commons.collection.impl.CommonsVector;
import com.helger.commons.collection.impl.ICommonsList;
import com.helger.commons.concurrent.ExecutorServiceHelper;
import com.helger.commons.equals.EqualsHelper;
import com.helger.commons.lang.ICloneable;
import com.helger.commons.lang.IExplicitlyCloneable;
import com.helger.commons.lang.StackTraceHelper;
import com.helger.commons.serialize.SerializationHelper;
import com.helger.commons.string.StringHelper;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
/**
* This class contains default test methods to test the correctness of
* implementations of standard methods.
*
* @author Philip Helger
*/
@Immutable
public final class CommonsTestHelper
{
@PresentForCodeCoverage
private static final CommonsTestHelper INSTANCE = new CommonsTestHelper ();
private CommonsTestHelper ()
{}
private static void _fail (@Nonnull final String sMsg)
{
throw new IllegalStateException (sMsg);
}
private static void _assertTrue (@Nonnull final String sMsg, final boolean bTrue)
{
if (!bTrue)
_fail (sMsg);
}
private static void _assertFalse (@Nonnull final String sMsg, final boolean bTrue)
{
if (bTrue)
_fail (sMsg);
}
private static void _assertNotNull (@Nonnull final String sMsg, final Object aObj)
{
if (aObj == null)
_fail (sMsg);
}
public static void _assertEquals (@Nonnull final String sMsg, @Nullable final T aObj1, @Nullable final T aObj2)
{
if (!EqualsHelper.equals (aObj1, aObj2))
_fail (sMsg + "\nOBJ1: " + aObj1 + "\nOBJ2: " + aObj2);
}
@SuppressFBWarnings ({ "EC_NULL_ARG" })
private static void _testEqualsImplementation (@Nonnull final DATATYPE aObject)
{
_assertNotNull ("Passed object may not be null!", aObject);
_assertTrue ("Passed objects are not equal", aObject.equals (aObject));
_assertFalse ("Object may no be equal to String", aObject.equals ("any string"));
_assertFalse ("Object may no be equal to null", aObject.equals (null));
}
public static void testEqualsImplementationWithEqualContentObject (@Nonnull final DATATYPE aObject,
@Nonnull final DATATYPE aObject2)
{
_testEqualsImplementation (aObject);
_testEqualsImplementation (aObject2);
_assertFalse ("This test may not be used with the same object!", EqualsHelper.identityEqual (aObject, aObject2));
_assertTrue ("Passed objects are not identical!", aObject.equals (aObject2));
_assertTrue ("Passed objects are not identical!", aObject2.equals (aObject));
}
public static void testEqualsImplementationWithDifferentContentObject (@Nonnull final DATATYPE aObject,
@Nonnull final DATATYPE aObject2)
{
_testEqualsImplementation (aObject);
_testEqualsImplementation (aObject2);
_assertFalse ("This test may not be used with the same object!", EqualsHelper.identityEqual (aObject, aObject2));
_assertFalse ("Passed objects are identical!", aObject.equals (aObject2));
_assertFalse ("Passed objects are identical!", aObject2.equals (aObject));
}
private static void _testHashcodeImplementation (@Nonnull final DATATYPE aObject)
{
_assertNotNull ("Passed object may not be null!", aObject);
_assertTrue ("hashCode() invocations must be consistent", aObject.hashCode () == aObject.hashCode ());
_assertFalse ("hashCode() may not be 0", aObject.hashCode () == 0);
}
public static void testHashcodeImplementationWithEqualContentObject (@Nonnull final DATATYPE aObject,
@Nonnull final DATATYPE aObject2)
{
_testHashcodeImplementation (aObject);
_testHashcodeImplementation (aObject2);
_assertTrue ("Passed objects are not identical!", aObject.equals (aObject2));
_assertFalse ("This test may not be used with the same object!", aObject == aObject2);
_assertTrue ("hashCode() invocations must be consistent", aObject.hashCode () == aObject2.hashCode ());
_assertTrue ("hashCode() invocations must be consistent", aObject2.hashCode () == aObject.hashCode ());
}
public static void testHashcodeImplementationWithDifferentContentObject (@Nonnull final DATATYPE aObject1,
@Nonnull final DATATYPE aObject2)
{
_testHashcodeImplementation (aObject1);
_testHashcodeImplementation (aObject2);
_assertFalse ("Passed objects are identical!", aObject1.equals (aObject2));
_assertFalse ("This test may not be used with the same object!", EqualsHelper.identityEqual (aObject1, aObject2));
final int nHash1 = aObject1.hashCode ();
final int nHash2 = aObject2.hashCode ();
_assertFalse ("hashCode() may not be the same for both objects", nHash1 == nHash2);
}
/**
* Test the toString implementation of the passed object. It may not be empty,
* and consistent.
*
* @param aObject
* The object to be tested.
*/
public static void testToStringImplementation (@Nonnull final Object aObject)
{
_assertNotNull ("Passed object may not be null!", aObject);
_assertNotNull ("toString() may not return null!", aObject.toString ());
_assertTrue ("toString() may not return an empty string!", aObject.toString ().length () > 0);
_assertTrue ("toString() invocations must be consistent", aObject.toString ().equals (aObject.toString ()));
}
public static void testToStringImplementationWithEqualContentObject (@Nonnull final DATATYPE aObject,
@Nonnull final DATATYPE aObject2)
{
testToStringImplementation (aObject);
testToStringImplementation (aObject2);
_assertTrue ("Passed objects are not identical!", aObject.equals (aObject2));
_assertFalse ("This test may not be used with the same object!", EqualsHelper.identityEqual (aObject, aObject2));
}
public static void testToStringImplementationWithDifferentContentObject (@Nonnull final DATATYPE aObject,
@Nonnull final DATATYPE aObject2)
{
testToStringImplementation (aObject);
testToStringImplementation (aObject2);
_assertFalse ("Passed objects are identical!", aObject.equals (aObject2));
_assertFalse ("This test may not be used with the same object!", EqualsHelper.identityEqual (aObject, aObject2));
}
/**
* Check if two different objects (who may not be the same) are equal to each
* other. Checks toString, equals and hashCode.
*
* @param
* The data type to be used
* @param aObject1
* First object. May not be null
.
* @param aObject2
* Second object. May not be null
.
*/
public static void testDefaultImplementationWithEqualContentObject (@Nonnull final DATATYPE aObject1,
@Nonnull final DATATYPE aObject2)
{
testEqualsImplementationWithEqualContentObject (aObject1, aObject2);
testHashcodeImplementationWithEqualContentObject (aObject1, aObject2);
testToStringImplementationWithEqualContentObject (aObject1, aObject2);
}
/**
* Check if two different objects are different to each other. Checks
* toString, equals and hashCode.
*
* @param
* The data type to be used
* @param aObject1
* First object. May not be null
.
* @param aObject2
* Second object. May not be null
.
*/
public static void testDefaultImplementationWithDifferentContentObject (@Nonnull final DATATYPE aObject1,
@Nonnull final DATATYPE aObject2)
{
testEqualsImplementationWithDifferentContentObject (aObject1, aObject2);
testHashcodeImplementationWithDifferentContentObject (aObject1, aObject2);
testToStringImplementationWithDifferentContentObject (aObject1, aObject2);
}
/**
* Test the serializability of objects. First writes the object to a byte
* array stream, and then tries to rebuild it from there. After reading it
* performs an equals check using
* {@link #testDefaultImplementationWithEqualContentObject(Object, Object)}
*
* @param
* The type of object to be serialized.
* @param aSerializable
* The object to be written and read
* @return The newly read object
*/
@Nonnull
public static DATATYPE testDefaultSerialization (@Nonnull final DATATYPE aSerializable)
{
// Serialize to byte array
final byte [] aBytes = SerializationHelper.getSerializedByteArray (aSerializable);
// Read new object from byte array
final DATATYPE aReadObject = SerializationHelper.getDeserializedObject (aBytes);
// Now check them for equality
testDefaultImplementationWithEqualContentObject (aSerializable, aReadObject);
return aReadObject;
}
/**
* Test if the implementation {@link ICloneable} is OK. It creates a clone and
* than uses
* {@link #testDefaultImplementationWithEqualContentObject(Object, Object)} to
* check for equality.
*
* @param aCloneable
* The cloneable object to test
*/
public static void testGetClone (@Nonnull final ICloneable > aCloneable)
{
final Object aClone = aCloneable.getClone ();
_assertNotNull ("Clone returned a null object", aClone);
_assertTrue ("Clone returned a different class than the original one", aClone.getClass ().equals (aCloneable.getClass ()));
testDefaultImplementationWithEqualContentObject (aCloneable, aClone);
}
/**
* Test if the implementation {@link IExplicitlyCloneable} is OK. It creates a
* clone and than uses
* {@link #testDefaultImplementationWithEqualContentObject(Object, Object)} to
* check for equality.
*
* @param aCloneable
* The cloneable object to test
* @since 9.4.5
*/
public static void testClone (@Nonnull final IExplicitlyCloneable aCloneable)
{
try
{
final Object aClone = aCloneable.clone ();
_assertNotNull ("Clone returned a null object", aClone);
_assertTrue ("Clone returned a different class than the original one", aClone.getClass ().equals (aCloneable.getClass ()));
testDefaultImplementationWithEqualContentObject (aCloneable, aClone);
}
catch (final CloneNotSupportedException ex)
{
throw new IllegalStateException ();
}
}
/**
* Run something in parallel
*
* @param nCalls
* The number of invocations of the passed runnable. Must be ≥ 0.
* @param aRunnable
* The runnable to execute. May not be null
.
*/
public static void testInParallel (@Nonnegative final int nCalls, @Nonnull final IThrowingRunnable extends Exception> aRunnable)
{
ValueEnforcer.isGE0 (nCalls, "Calls");
ValueEnforcer.notNull (aRunnable, "Runnable");
// More than 20s thread would be overkill!
final ExecutorService aES = Executors.newFixedThreadPool (20);
final ICommonsList aErrors = new CommonsVector <> ();
for (int i = 0; i < nCalls; ++i)
{
aES.submit ( () -> {
try
{
aRunnable.run ();
}
catch (final Exception ex)
{
// Remember thread stack
aErrors.add (ex.getMessage () + "\n" + StackTraceHelper.getStackAsString (ex));
}
});
}
ExecutorServiceHelper.shutdownAndWaitUntilAllTasksAreFinished (aES);
// No errors should have occurred
if (!aErrors.isEmpty ())
_fail (StringHelper.getImploded (aErrors));
}
}