-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HBASE-22677 Add unit tests for org.apache.hadoop.hbase.util.ByteRange…
…Utils and Classes These tests were written using Diffblue Cover.
- Loading branch information
Showing
2 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
hbase-common/src/test/java/org/apache/hadoop/hbase/util/TestByteRangeUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* 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.hbase.util; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
|
||
import org.apache.hadoop.hbase.HBaseClassTestRule; | ||
import org.apache.hadoop.hbase.testclassification.SmallTests; | ||
import org.junit.Assert; | ||
import org.junit.ClassRule; | ||
import org.junit.Test; | ||
import org.junit.experimental.categories.Category; | ||
|
||
@Category({SmallTests.class}) | ||
public class TestByteRangeUtils { | ||
|
||
@ClassRule | ||
public static final HBaseClassTestRule CLASS_RULE = | ||
HBaseClassTestRule.forClass(TestByteRangeUtils.class); | ||
|
||
@Test | ||
public void testNumEqualPrefixBytes() { | ||
Assert.assertEquals(0, ByteRangeUtils.numEqualPrefixBytes( | ||
new SimpleByteRange(new byte[]{1, 2, 3}), | ||
new SimpleByteRange(new byte[]{4, 5, 6}), 1)); | ||
Assert.assertEquals(2, ByteRangeUtils.numEqualPrefixBytes( | ||
new SimpleByteRange(new byte[]{1, 2, 3}), | ||
new SimpleByteRange(new byte[]{0, 1, 2}), 1)); | ||
} | ||
|
||
@Test | ||
public void testCopyToNewArrays() { | ||
Assert.assertEquals(new ArrayList<>(), | ||
ByteRangeUtils.copyToNewArrays(null)); | ||
Assert.assertArrayEquals(new byte[]{1, 2, 3}, | ||
ByteRangeUtils.copyToNewArrays(new ArrayList<>(Arrays.asList( | ||
new SimpleByteRange(new byte[]{1, 2, 3}), | ||
new SimpleByteRange(new byte[]{4, 5, 6})))).get(0)); | ||
Assert.assertArrayEquals(new byte[]{4, 5, 6}, | ||
ByteRangeUtils.copyToNewArrays(new ArrayList<>(Arrays.asList( | ||
new SimpleByteRange(new byte[]{1, 2, 3}), | ||
new SimpleByteRange(new byte[]{4, 5, 6})))).get(1)); | ||
} | ||
|
||
@Test | ||
public void testFromArrays() { | ||
Assert.assertEquals(new ArrayList<>(), ByteRangeUtils.fromArrays(null)); | ||
Assert.assertEquals(new ArrayList<>(Arrays.asList( | ||
new SimpleMutableByteRange(new byte[]{1, 2, 3}), | ||
new SimpleMutableByteRange(new byte[]{4, 5, 6}))), | ||
ByteRangeUtils.fromArrays(new ArrayList<>( | ||
Arrays.asList(new byte[]{1, 2, 3}, new byte[]{4, 5, 6})))); | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
hbase-common/src/test/java/org/apache/hadoop/hbase/util/TestClasses.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* Copyright The Apache Software Foundation | ||
* | ||
* 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.hbase.util; | ||
|
||
import org.apache.hadoop.hbase.HBaseClassTestRule; | ||
import org.apache.hadoop.hbase.testclassification.SmallTests; | ||
import org.junit.Assert; | ||
import org.junit.ClassRule; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.experimental.categories.Category; | ||
import org.junit.rules.ExpectedException; | ||
|
||
@Category({SmallTests.class}) | ||
public class TestClasses { | ||
|
||
@Rule | ||
public final ExpectedException thrown = ExpectedException.none(); | ||
|
||
@ClassRule | ||
public static final HBaseClassTestRule CLASS_RULE = | ||
HBaseClassTestRule.forClass(TestClasses.class); | ||
|
||
@Test | ||
public void testExtendedForName() throws ClassNotFoundException { | ||
Assert.assertEquals(int.class, Classes.extendedForName("int")); | ||
Assert.assertEquals(long.class, Classes.extendedForName("long")); | ||
Assert.assertEquals(char.class, Classes.extendedForName("char")); | ||
Assert.assertEquals(byte.class, Classes.extendedForName("byte")); | ||
Assert.assertEquals(short.class, Classes.extendedForName("short")); | ||
Assert.assertEquals(float.class, Classes.extendedForName("float")); | ||
Assert.assertEquals(double.class, Classes.extendedForName("double")); | ||
Assert.assertEquals(boolean.class, Classes.extendedForName("boolean")); | ||
|
||
thrown.expect(ClassNotFoundException.class); | ||
Classes.extendedForName("foo"); | ||
} | ||
|
||
@Test | ||
public void testStringify() { | ||
Assert.assertEquals("", Classes.stringify(new Class[0])); | ||
Assert.assertEquals("NULL", Classes.stringify(null)); | ||
Assert.assertEquals("java.lang.String,java.lang.Integer", | ||
Classes.stringify(new Class[]{String.class, Integer.class})); | ||
} | ||
} |