HBASE-13839 Fix AssgnmentManagerTmpl.jamon issues (coloring, content etc.) ; ADDENDUM

This commit is contained in:
stack 2016-02-15 17:50:10 -08:00
parent 68b300173f
commit 7063562bf1
1 changed files with 4 additions and 4 deletions

View File

@ -180,17 +180,18 @@ public class TestMasterStatusServlet {
RegionState.State.CLOSING, 12345L, FAKE_HOST)); RegionState.State.CLOSING, 12345L, FAKE_HOST));
Mockito.doReturn(rs).when(am).getRegionStates(); Mockito.doReturn(rs).when(am).getRegionStates();
Mockito.doReturn(regionsInTransition).when(rs).getRegionsInTransition(); Mockito.doReturn(regionsInTransition).when(rs).getRegionsInTransition();
Mockito.doReturn(regionsInTransition).when(rs).getRegionsInTransitionOrderedByTimestamp();
// Render to a string // Render to a string
StringWriter sw = new StringWriter(); StringWriter sw = new StringWriter();
new AssignmentManagerStatusTmpl() new AssignmentManagerStatusTmpl()
.setLimit(50) // NOT IMPLEMENTED!!!! .setLimit(50)
.render(sw, am); .render(sw, am);
String result = sw.toString(); String result = sw.toString();
// Should always include META // Should always include META
assertTrue(result.contains(HRegionInfo.FIRST_META_REGIONINFO.getEncodedName())); assertTrue(result.contains(HRegionInfo.FIRST_META_REGIONINFO.getEncodedName()));
/* BROKEN BY HBASE-13839 Fix AssgnmentManagerTmpl.jamon issues (coloring, content etc.) FIX!!
// Make sure we only see 50 of them // Make sure we only see 50 of them
Matcher matcher = Pattern.compile("CLOSING").matcher(result); Matcher matcher = Pattern.compile("CLOSING").matcher(result);
int count = 0; int count = 0;
@ -198,7 +199,6 @@ public class TestMasterStatusServlet {
count++; count++;
} }
assertEquals(50, count); assertEquals(50, count);
*/
} }
} }