Make LoggerFormatTest run last 60/98860/2
authorIttay Stern <ittay.stern@att.com>
Tue, 26 Nov 2019 15:23:49 +0000 (17:23 +0200)
committerIttay Stern <ittay.stern@att.com>
Tue, 26 Nov 2019 15:26:36 +0000 (15:26 +0000)
Issue-ID: VID-647
Change-Id: Ia9989555d3fbdfe222410be59c8a581be32974e0
Signed-off-by: Ittay Stern <ittay.stern@att.com>
vid-automation/src/test/java/org/onap/vid/more/LoggerFormatTest.java

index 1105a3f..d9e2557 100644 (file)
@@ -42,6 +42,7 @@ public class LoggerFormatTest extends BaseApiTest {
 
     private final static String logChecker = System.getProperty("EELF_LOG_CHECKER", "http://my-logchecker:8888/validate");
     private final Logger logger = LogManager.getLogger(LoggerFormatTest.class);
+    private final int PRIORITY_LAST = 999;
 
     public enum LogName {
         audit2019, error, metrics2019
@@ -57,7 +58,7 @@ public class LoggerFormatTest extends BaseApiTest {
         SimulatorApi.registerExpectationFromPreset(new PresetAAIGetSubscribersGet(), SimulatorApi.RegistrationStrategy.CLEAR_THEN_SET);
     }
 
-    @Test
+    @Test(priority = PRIORITY_LAST)
     public void validateAudit2019LogsFormat() {
         String logLines = validateLogsFormat(LogName.audit2019, "audit-ELS-2019.11");
         moreValidationsForAuditFormat(logLines);
@@ -80,12 +81,12 @@ public class LoggerFormatTest extends BaseApiTest {
         });
     }
 
-    @Test(enabled = false) // no total-score is returned for error-log
+    @Test(priority = PRIORITY_LAST, enabled = false) // no total-score is returned for error-log
     public void validateErrorLogsFormat() {
         validateLogsFormat(LogName.error);
     }
 
-    @Test
+    @Test(priority = PRIORITY_LAST)
     public void validateMetrics2019LogsFormat() {
         validateLogsFormat(LogName.metrics2019, "metric-ELS-2019.11");
     }