blob: a4f8435bfc70d0c1e5bbf12f33c5001b19e7a1f4 [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.hadoop.mrunit.types;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import org.apache.hadoop.mrunit.ExpectedSuppliedException;
import org.junit.Rule;
import org.junit.Test;
public class TestPair {
public static final int VAL_A = 3;
public static final int VAL_B = 4;
public static final int VAL_C = 65;
public static final int VAL_D = 98;
@Rule
public final ExpectedSuppliedException thrown = ExpectedSuppliedException
.none();
/**
* Test method for
* {@link org.apache.hadoop.mrunit.types.Pair#equals(org.apache.hadoop.mrunit.types.Pair)}
* .
*/
@Test
public void testEqualsTrulyEqual() {
assertTrue(new Pair<Integer, Integer>(Integer.valueOf(VAL_A),
Integer.valueOf(VAL_B)).equals(new Pair<Integer, Integer>(Integer
.valueOf(VAL_A), Integer.valueOf(VAL_B))));
}
@Test
public void testEqualsInequalFirst() {
assertFalse(new Pair<Integer, Integer>(Integer.valueOf(VAL_A),
Integer.valueOf(VAL_B)).equals(new Pair<Integer, Integer>(Integer
.valueOf(VAL_C), Integer.valueOf(VAL_B))));
}
@Test
public void testEqualsInequalSecond() {
assertFalse(new Pair<Integer, Integer>(Integer.valueOf(VAL_A),
Integer.valueOf(VAL_B)).equals(new Pair<Integer, Integer>(Integer
.valueOf(VAL_A), Integer.valueOf(VAL_D))));
}
/**
* Test method for
* {@link org.apache.hadoop.mrunit.types.Pair#compareTo(org.apache.hadoop.mrunit.types.Pair)}
* .
*/
@Test
public void testCompareToTrulyEqual() {
assertTrue(0 == new Pair<Integer, Integer>(Integer.valueOf(VAL_A),
Integer.valueOf(VAL_B)).compareTo(new Pair<Integer, Integer>(Integer
.valueOf(VAL_A), Integer.valueOf(VAL_B))));
}
@Test
public void testCompareToInequalFirst() {
assertFalse(0 == new Pair<Integer, Integer>(Integer.valueOf(VAL_A),
Integer.valueOf(VAL_B)).compareTo(new Pair<Integer, Integer>(Integer
.valueOf(VAL_C), Integer.valueOf(VAL_B))));
}
@Test
public void testCompareToInequalSecond() {
assertFalse(0 == new Pair<Integer, Integer>(Integer.valueOf(VAL_A),
Integer.valueOf(VAL_B)).compareTo(new Pair<Integer, Integer>(Integer
.valueOf(VAL_A), Integer.valueOf(VAL_D))));
}
@Test
public void testCompareToNullNull() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(null, null)
.compareTo(new Pair<Integer, Integer>(null, null));
}
@Test
public void testCompareToNullIntFirst0() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(Integer.valueOf(VAL_A), null)
.compareTo(new Pair<Integer, Integer>(Integer.valueOf(VAL_A), null));
}
@Test
public void testCompareToNullIntFirst1() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(null, null)
.compareTo(new Pair<Integer, Integer>(Integer.valueOf(VAL_A), null));
}
@Test
public void testCompareToNullIntFirst2() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(Integer.valueOf(VAL_A), null)
.compareTo(new Pair<Integer, Integer>(null, null));
}
@Test
public void testCompareToNullIntSecond0() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(null, Integer.valueOf(VAL_A))
.compareTo(new Pair<Integer, Integer>(null, Integer.valueOf(VAL_A)));
}
@Test
public void testCompareToNullIntSecond1() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(null, null)
.compareTo(new Pair<Integer, Integer>(null, Integer.valueOf(VAL_A)));
}
@Test
public void testCompareToNullIntSecond2() {
thrown.expect(NullPointerException.class);
new Pair<Integer, Integer>(null, Integer.valueOf(VAL_A))
.compareTo(new Pair<Integer, Integer>(null, null));
}
}