Test structured message with only structured data.
This commit is contained in:
parent
f3d9932d2c
commit
4401cdcd0b
@ -54,6 +54,45 @@ public class StructuredSyslogServerEventTest {
|
||||
assertEquals(event.getStructuredMessage().getMessage(), "BOMAn application event log entry");
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testStructuredWithOnlyStructuredData() throws Exception {
|
||||
// Message from: https://tools.ietf.org/html/rfc5424#section-6.5
|
||||
final String message = "<165>1 2003-10-11T22:14:15.003Z mymachine.example.com evntslog - ID47 [exampleSDID@32473 iut=\"3\" eventSource=\"Application\" eventID=\"1011\"][examplePriority@32473 class=\"high\"]";
|
||||
|
||||
final StructuredSyslogServerEvent event = buildEvent(message);
|
||||
|
||||
Map<String, Object> structuredData = new HashMap<String, Object>() {
|
||||
{
|
||||
put("exampleSDID@32473", new HashMap<String, String>() {
|
||||
{
|
||||
put("eventSource", "Application");
|
||||
put("eventID", "1011");
|
||||
put("iut", "3");
|
||||
}
|
||||
});
|
||||
|
||||
put("examplePriority@32473", new HashMap<String, String>() {
|
||||
{
|
||||
put("class", "high");
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
assertEquals(event.getApplicationName(), "evntslog");
|
||||
assertEquals(event.getDateTime(), new DateTime("2003-10-11T22:14:15.003Z"));
|
||||
assertEquals(event.getFacility(), 20);
|
||||
assertEquals(event.getHost(), "mymachine.example.com");
|
||||
assertEquals(event.getLevel(), 5);
|
||||
assertEquals(event.getMessage(), "ID47 [exampleSDID@32473 iut=\"3\" eventSource=\"Application\" eventID=\"1011\"][examplePriority@32473 class=\"high\"]");
|
||||
assertEquals(event.getProcessId(), null);
|
||||
|
||||
assertEquals(event.getStructuredMessage().getStructuredData(), structuredData);
|
||||
assertEquals(event.getStructuredMessage().getMessageId(), "ID47");
|
||||
assertEquals(event.getStructuredMessage().getMessage(), "");
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testStructuredWithoutStructuredData() throws Exception {
|
||||
// Message from: https://tools.ietf.org/html/rfc5424#section-6.5
|
||||
|
Loading…
x
Reference in New Issue
Block a user