blob: 01669e84ff055ff06f3366753391ddcb8716524b [file] [log] [blame]
/*
* 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.geode.cache.lucene.internal;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.apache.geode.test.junit.categories.LuceneTest;
@Category({LuceneTest.class})
public class LuceneResultStructImpJUnitTest {
@Test
public void hashCodeAndEquals() {
// Create 2 equal structs
LuceneResultStructImpl<String, String> result1 =
new LuceneResultStructImpl<String, String>("key1", "value1", 5);
LuceneResultStructImpl<String, String> result2 =
new LuceneResultStructImpl<String, String>("key1", "value1", 5);
assertEquals(result1, result1);
assertEquals(result1, result2);
assertEquals(result1.hashCode(), result2.hashCode());
// And some unequal ones
LuceneResultStructImpl<String, String> result3 =
new LuceneResultStructImpl<String, String>("key2", "value1", 5);
LuceneResultStructImpl<String, String> result4 =
new LuceneResultStructImpl<String, String>("key1", "value2", 5);
LuceneResultStructImpl<String, String> result5 =
new LuceneResultStructImpl<String, String>("key1", "value1", 6);
assertNotEquals(result1, result3);
assertNotEquals(result1, result4);
assertNotEquals(result1, result5);
}
}