YARN-3726. Fix TestHBaseTimelineWriterImpl unit test failure by fixing its test data (Vrushali C via sjlee)

(cherry picked from commit 4c0b6d73914f2e249795deb292f508177ea54884)
This commit is contained in:
Sangjin Lee 2015-05-27 20:28:04 -07:00
parent 5a4278ccbd
commit db891f51d0
1 changed files with 8 additions and 7 deletions

View File

@ -121,12 +121,13 @@ public void testWriteEntityToHBase() throws Exception {
TimelineMetric m1 = new TimelineMetric(); TimelineMetric m1 = new TimelineMetric();
m1.setId("MAP_SLOT_MILLIS"); m1.setId("MAP_SLOT_MILLIS");
Map<Long, Number> metricValues = new HashMap<Long, Number>(); Map<Long, Number> metricValues = new HashMap<Long, Number>();
metricValues.put(1429741609000L, 100000000); long ts = System.currentTimeMillis();
metricValues.put(1429742609000L, 200000000); metricValues.put(ts - 120000, 100000000);
metricValues.put(1429743609000L, 300000000); metricValues.put(ts - 100000, 200000000);
metricValues.put(1429744609000L, 400000000); metricValues.put(ts - 80000, 300000000);
metricValues.put(1429745609000L, 50000000000L); metricValues.put(ts - 60000, 400000000);
metricValues.put(1429746609000L, 60000000000L); metricValues.put(ts - 40000, 50000000000L);
metricValues.put(ts - 20000, 60000000000L);
m1.setType(Type.TIME_SERIES); m1.setType(Type.TIME_SERIES);
m1.setValues(metricValues); m1.setValues(metricValues);
metrics.add(m1); metrics.add(m1);
@ -216,7 +217,7 @@ public void testWriteEntityToHBase() throws Exception {
private void checkMetricsTimeseries(List<Cell> metricCells, private void checkMetricsTimeseries(List<Cell> metricCells,
TimelineMetric m1) throws IOException { TimelineMetric m1) throws IOException {
Map<Long, Number> timeseries = m1.getValues(); Map<Long, Number> timeseries = m1.getValues();
assertEquals(metricCells.size(), timeseries.size()); assertEquals(timeseries.size(), metricCells.size());
for (Cell c1 : metricCells) { for (Cell c1 : metricCells) {
assertTrue(timeseries.containsKey(c1.getTimestamp())); assertTrue(timeseries.containsKey(c1.getTimestamp()));
assertEquals(GenericObjectMapper.read(CellUtil.cloneValue(c1)), assertEquals(GenericObjectMapper.read(CellUtil.cloneValue(c1)),