This is an automated email from the ASF dual-hosted git repository.
busbey pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new 8cf9f6c HBASE-22534 TestCellUtil fails when run on JDK11
8cf9f6c is described below
commit 8cf9f6c3619a97ba890041ed9a2b4b4158fb1d5d
Author: Sakthi <[email protected]>
AuthorDate: Mon Jun 3 22:17:56 2019 -0700
HBASE-22534 TestCellUtil fails when run on JDK11
Signed-off-by: Sean Busbey <[email protected]>
(cherry picked from commit 9b23e1d00cbf65cb9f80a71cd6d2b9721c543991)
---
.../src/test/java/org/apache/hadoop/hbase/TestCellUtil.java | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git
a/hbase-common/src/test/java/org/apache/hadoop/hbase/TestCellUtil.java
b/hbase-common/src/test/java/org/apache/hadoop/hbase/TestCellUtil.java
index 069bcfb..2fd524b 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/TestCellUtil.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/TestCellUtil.java
@@ -524,11 +524,16 @@ public class TestCellUtil {
assertTrue(CellUtil.equals(kv, res));
}
+ // Workaround for jdk 11 - reflective access to interface default methods
for testGetType
+ private abstract class CellForMockito implements Cell {
+
+ }
+
@Test
public void testGetType() throws IOException {
- Cell c = Mockito.mock(Cell.class);
+ CellForMockito c = Mockito.mock(CellForMockito.class);
Mockito.when(c.getType()).thenCallRealMethod();
- for (Cell.Type type : Cell.Type.values()) {
+ for (CellForMockito.Type type : CellForMockito.Type.values()) {
Mockito.when(c.getTypeByte()).thenReturn(type.getCode());
assertEquals(type, c.getType());
}