|
@@ -825,6 +825,7 @@ public class TestAppManager{
|
|
|
when(app.getState()).thenReturn(RMAppState.RUNNING);
|
|
|
when(app.getApplicationType()).thenReturn("MAPREDUCE");
|
|
|
when(app.getSubmitTime()).thenReturn(1000L);
|
|
|
+ when(app.getLaunchTime()).thenReturn(2000L);
|
|
|
RMAppMetrics metrics =
|
|
|
new RMAppMetrics(Resource.newInstance(1234, 56),
|
|
|
10, 1, 16384, 64, 0, 0);
|
|
@@ -842,6 +843,7 @@ public class TestAppManager{
|
|
|
Assert.assertTrue(msg.contains("Multiline" + escaped +"UserName"));
|
|
|
Assert.assertTrue(msg.contains("Multiline" + escaped +"QueueName"));
|
|
|
Assert.assertTrue(msg.contains("submitTime=1000"));
|
|
|
+ Assert.assertTrue(msg.contains("launchTime=2000"));
|
|
|
Assert.assertTrue(msg.contains("memorySeconds=16384"));
|
|
|
Assert.assertTrue(msg.contains("vcoreSeconds=64"));
|
|
|
Assert.assertTrue(msg.contains("preemptedAMContainers=1"));
|