use of org.graylog.events.event.TestEvent 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.TestEvent 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");
}
use of org.graylog.events.event.TestEvent in project graylog2-server by Graylog2.
the class TemplateFieldValueProviderTest method templateDateFormatting.
@Test
public void templateDateFormatting() {
final TestEvent event = new TestEvent();
final EventWithContext eventWithContext = EventWithContext.create(event, newMessage(ImmutableMap.of("timestamp", DateTime.parse("2019-07-02T12:21:00.123Z"))));
final FieldValue fieldValue = newTemplate("timestamp: ${source.timestamp}").doGet("test", eventWithContext);
assertThat(fieldValue.value()).isEqualTo("timestamp: 2019-07-02T12:21:00.123Z");
}
use of org.graylog.events.event.TestEvent in project graylog2-server by Graylog2.
the class TemplateFieldValueProviderTest method templateWithMessageContext.
@Test
public void templateWithMessageContext() {
final TestEvent event = new TestEvent();
final EventWithContext eventWithContext = EventWithContext.create(event, newMessage(ImmutableMap.of("hello", "world")));
final FieldValue fieldValue = newTemplate("hello: ${source.hello}").doGet("test", eventWithContext);
assertThat(fieldValue.value()).isEqualTo("hello: world");
}
use of org.graylog.events.event.TestEvent in project graylog2-server by Graylog2.
the class NotificationGracePeriodServiceTest method falseWithDisabledGracePeriod.
@Test
public void falseWithDisabledGracePeriod() {
final NotificationGracePeriodService notificationGracePeriodService = new NotificationGracePeriodService();
when(settings.gracePeriodMs()).thenReturn(0L);
when(definition.notificationSettings()).thenReturn(settings);
when(definition.id()).thenReturn("1234");
final Event event = new TestEvent();
event.setKeyTuple(ImmutableList.of("testkey"));
assertThat(notificationGracePeriodService.inGracePeriod(definition, "5678", event)).isFalse();
assertThat(notificationGracePeriodService.inGracePeriod(definition, "5678", event)).isFalse();
}
Aggregations