use of org.graylog.events.event.EventWithContext in project graylog2-server by Graylog2.
the class TemplateFieldValueProviderTest method templateBooleanFormatting.
@Test
public void templateBooleanFormatting() {
final TestEvent event = new TestEvent();
final EventWithContext eventWithContext = EventWithContext.create(event, newMessage(ImmutableMap.of("success", true)));
final FieldValue fieldValue = newTemplate("success: ${source.success}").doGet("test", eventWithContext);
assertThat(fieldValue.value()).isEqualTo("success: true");
}
use of org.graylog.events.event.EventWithContext in project graylog2-server by Graylog2.
the class TemplateFieldValueProviderTest method templateCalculation.
@Test
@Ignore("template engine doesn't support expressions")
public void templateCalculation() {
final TestEvent event = new TestEvent();
final EventWithContext eventWithContext = EventWithContext.create(event, newMessage(ImmutableMap.of("bytes", 1024)));
final FieldValue fieldValue = newTemplate("${source.bytes / 1024}").doGet("test", eventWithContext);
assertThat(fieldValue.value()).isEqualTo("1");
}
use of org.graylog.events.event.EventWithContext in project graylog2-server by Graylog2.
the class LookupTableFieldValueProviderTest method testWithMissingLookupTable.
@Test
public void testWithMissingLookupTable() {
final TestEvent event = new TestEvent();
final EventWithContext eventWithContext = EventWithContext.create(event, newMessage(ImmutableMap.of("hello", "world")));
final LookupTableFieldValueProvider.Config config = newConfig("test-doesntexist", "hello");
setupMocks("test");
when(lookupTableFunction.lookup("world")).thenReturn(LookupResult.single("lookup-world"));
assertThatThrownBy(() -> newProvider(config).doGet("test", eventWithContext)).hasMessageContaining("test-doesntexist").isInstanceOf(IllegalArgumentException.class);
}
use of org.graylog.events.event.EventWithContext in project graylog2-server by Graylog2.
the class LookupTableFieldValueProviderTest method testWithEventContext.
@Test
public void testWithEventContext() {
final String fieldValueString = "event";
final String expectedLookupValue = "lookup-event";
final TestEvent event = new TestEvent();
final TestEvent eventContext = new TestEvent();
eventContext.setField("hello", FieldValue.string(fieldValueString));
final EventWithContext eventWithContext = EventWithContext.create(event, eventContext);
final LookupTableFieldValueProvider.Config config = newConfig("test", "hello");
setupMocks("test");
when(lookupTableFunction.lookup(fieldValueString)).thenReturn(LookupResult.single("lookup-" + eventContext.getField("hello").value()));
final FieldValue fieldValue = newProvider(config).doGet("test", eventWithContext);
assertThat(fieldValue.value()).isEqualTo(expectedLookupValue);
}
use of org.graylog.events.event.EventWithContext in project graylog2-server by Graylog2.
the class TemplateFieldValueProviderTest method templateNumberFormatting.
@Test
public void templateNumberFormatting() {
final TestEvent event = new TestEvent();
final EventWithContext eventWithContext = EventWithContext.create(event, newMessage(ImmutableMap.of("count", 10241234, "avg", 1024.42)));
final FieldValue fieldValue = newTemplate("count: ${source.count} avg: ${source.avg}").doGet("test", eventWithContext);
assertThat(fieldValue.value()).isEqualTo("count: 10241234 avg: 1024.42");
}
Aggregations