-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Calum Murray <cmurray@redhat.com>
- Loading branch information
Showing
2 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
73 changes: 73 additions & 0 deletions
73
...n/java/dev/knative/eventing/kafka/broker/dispatcher/impl/filter/ExactFilterBenchmark.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
package dev.knative.eventing.kafka.broker.dispatcher.impl.filter; | ||
|
||
import dev.knative.eventing.kafka.broker.dispatcher.Filter; | ||
import dev.knative.eventing.kafka.broker.dispatcher.impl.filter.subscriptionsapi.ExactFilter; | ||
import io.cloudevents.CloudEvent; | ||
import io.cloudevents.core.builder.CloudEventBuilder; | ||
import io.cloudevents.core.v1.CloudEventV1; | ||
|
||
import java.net.URI; | ||
import java.util.Map; | ||
|
||
public class ExactFilterBenchmark { | ||
|
||
public static CloudEvent event() { | ||
return CloudEventBuilder.v1() | ||
.withId("abc") | ||
.withSource(URI.create("http://localhost")) | ||
.withType("test") | ||
.withDataSchema(URI.create("/api/schema")) | ||
.withDataContentType("testContentType") | ||
.withSubject("testSubject") | ||
.build(); | ||
} | ||
|
||
public static class ExactFilterBenchmarkExactMatchID extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new ExactFilter(Map.of(CloudEventV1.ID, "abc")); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return event(); | ||
} | ||
} | ||
|
||
public static class ExactFilterBenchmarkAllAttributes extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new ExactFilter(Map.of( | ||
CloudEventV1.ID, "abc", | ||
CloudEventV1.SOURCE, "http://localhost", | ||
CloudEventV1.TYPE, "test", | ||
CloudEventV1.DATASCHEMA,"/api/schema", | ||
CloudEventV1.DATACONTENTTYPE, "testContentType", | ||
CloudEventV1.SUBJECT, "testSubject" | ||
)); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return event(); | ||
} | ||
} | ||
|
||
public static class ExactFilterBenchmarkNoMatch extends FilterBenchmark { | ||
|
||
@Override | ||
protected Filter createFilter() { | ||
return new ExactFilter(Map.of( | ||
CloudEventV1.ID, "qwertyuiopasdfghjklzxcvbnm", | ||
CloudEventV1.SOURCE, "qwertyuiopasdfghjklzxcvbnm" | ||
)); | ||
} | ||
|
||
@Override | ||
protected CloudEvent createEvent() { | ||
return event(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters