001/* 002 * Copyright (C) 2007 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package com.google.common.testing; 018 019import static com.google.common.base.Preconditions.checkNotNull; 020import static junit.framework.Assert.assertEquals; 021import static junit.framework.Assert.assertTrue; 022 023import com.google.common.annotations.GwtCompatible; 024import com.google.common.base.Equivalence; 025import com.google.common.collect.Iterables; 026import com.google.common.collect.Lists; 027import com.google.errorprone.annotations.CanIgnoreReturnValue; 028import java.util.ArrayList; 029import java.util.List; 030import org.checkerframework.checker.nullness.qual.Nullable; 031 032/** 033 * Tester for equals() and hashCode() methods of a class. 034 * 035 * <p>The simplest use case is: 036 * 037 * <pre> 038 * new EqualsTester().addEqualityGroup(foo).testEquals(); 039 * </pre> 040 * 041 * <p>This tests {@code foo.equals(foo)}, {@code foo.equals(null)}, and a few other operations. 042 * 043 * <p>For more extensive testing, add multiple equality groups. Each group should contain objects 044 * that are equal to each other but unequal to the objects in any other group. For example: 045 * 046 * <pre> 047 * new EqualsTester() 048 * .addEqualityGroup(new User("page"), new User("page")) 049 * .addEqualityGroup(new User("sergey")) 050 * .testEquals(); 051 * </pre> 052 * 053 * <p>This tests: 054 * 055 * <ul> 056 * <li>comparing each object against itself returns true 057 * <li>comparing each object against null returns false 058 * <li>comparing each object against an instance of an incompatible class returns false 059 * <li>comparing each pair of objects within the same equality group returns true 060 * <li>comparing each pair of objects from different equality groups returns false 061 * <li>the hash codes of any two equal objects are equal 062 * </ul> 063 * 064 * <p>When a test fails, the error message labels the objects involved in the failed comparison as 065 * follows: 066 * 067 * <ul> 068 * <li>"{@code [group }<i>i</i>{@code , item }<i>j</i>{@code ]}" refers to the 069 * <i>j</i><sup>th</sup> item in the <i>i</i><sup>th</sup> equality group, where both equality 070 * groups and the items within equality groups are numbered starting from 1. When either a 071 * constructor argument or an equal object is provided, that becomes group 1. 072 * </ul> 073 * 074 * @author Jim McMaster 075 * @author Jige Yu 076 * @since 10.0 077 */ 078@GwtCompatible 079@ElementTypesAreNonnullByDefault 080public final class EqualsTester { 081 private static final int REPETITIONS = 3; 082 083 private final List<List<Object>> equalityGroups = Lists.newArrayList(); 084 private final RelationshipTester.ItemReporter itemReporter; 085 086 /** Constructs an empty EqualsTester instance */ 087 public EqualsTester() { 088 this(new RelationshipTester.ItemReporter()); 089 } 090 091 EqualsTester(RelationshipTester.ItemReporter itemReporter) { 092 this.itemReporter = checkNotNull(itemReporter); 093 } 094 095 /** 096 * Adds {@code equalityGroup} with objects that are supposed to be equal to each other and not 097 * equal to any other equality groups added to this tester. 098 * 099 * <p>The {@code @Nullable} annotations on the {@code equalityGroup} parameter imply that the 100 * objects, and the array itself, can be null. That is for programmer convenience, when the 101 * objects come from factory methods that are themselves {@code @Nullable}. In reality neither the 102 * array nor its contents can be null, but it is not useful to force the use of {@code 103 * requireNonNull} or the like just to assert that. 104 * 105 * <p>{@code EqualsTester} will always check that every object it is given returns false from 106 * {@code equals(null)}, so it is neither useful nor allowed to include a null value in any 107 * equality group. 108 */ 109 @CanIgnoreReturnValue 110 public EqualsTester addEqualityGroup(@Nullable Object @Nullable ... equalityGroup) { 111 checkNotNull(equalityGroup); 112 List<Object> list = new ArrayList<>(equalityGroup.length); 113 for (int i = 0; i < equalityGroup.length; i++) { 114 Object element = equalityGroup[i]; 115 if (element == null) { 116 throw new NullPointerException("at index " + i); 117 } 118 list.add(element); 119 } 120 equalityGroups.add(list); 121 return this; 122 } 123 124 /** Run tests on equals method, throwing a failure on an invalid test */ 125 @CanIgnoreReturnValue 126 public EqualsTester testEquals() { 127 RelationshipTester<Object> delegate = 128 new RelationshipTester<>( 129 Equivalence.equals(), "Object#equals", "Object#hashCode", itemReporter); 130 for (List<Object> group : equalityGroups) { 131 delegate.addRelatedGroup(group); 132 } 133 for (int run = 0; run < REPETITIONS; run++) { 134 testItems(); 135 delegate.test(); 136 } 137 return this; 138 } 139 140 private void testItems() { 141 for (Object item : Iterables.concat(equalityGroups)) { 142 assertTrue(item + " must not be Object#equals to null", !item.equals(null)); 143 assertTrue( 144 item + " must not be Object#equals to an arbitrary object of another class", 145 !item.equals(NotAnInstance.EQUAL_TO_NOTHING)); 146 assertTrue(item + " must be Object#equals to itself", item.equals(item)); 147 assertEquals( 148 "the Object#hashCode of " + item + " must be consistent", 149 item.hashCode(), 150 item.hashCode()); 151 if (!(item instanceof String)) { 152 assertTrue( 153 item + " must not be Object#equals to its Object#toString representation", 154 !item.equals(item.toString())); 155 } 156 } 157 } 158 159 /** 160 * Class used to test whether equals() correctly handles an instance of an incompatible class. 161 * Since it is a private inner class, the invoker can never pass in an instance to the tester 162 */ 163 private enum NotAnInstance { 164 EQUAL_TO_NOTHING; 165 } 166}