Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/e2e/broker_channel_flow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

/*
TestEventTransformationForTrigger tests the following topology:
TestBrokerChannelFlow tests the following topology:

------------- ----------------------
| | | |
Expand All @@ -44,5 +44,5 @@ Trigger3 filters the transformed event and sends it to Channel.

*/
func TestBrokerChannelFlow(t *testing.T) {
helpers.BrokerChannelFlowTestHelper(t, brokerClass, channelTestRunner)
helpers.BrokerChannelFlowWithTransformation(t, brokerClass, channelTestRunner)
}
29 changes: 0 additions & 29 deletions test/e2e/broker_config_test.go

This file was deleted.

29 changes: 0 additions & 29 deletions test/e2e/broker_dls_test.go

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,27 @@ import (
"knative.dev/eventing/test/lib/resources"
)

// TestBrokerWithConfig is the helper function for broker_with_config_test
func TestBrokerWithConfig(t *testing.T,
/*
BrokerChannelFlowWithTransformation tests the following topology:

------------- ----------------------
| | | |
v | v |
EventSource ---> Broker ---> Trigger1 -------> Service(Transformation)
|
|
|-------> Trigger2 -------> Service(Logger1)
|
|
|-------> Trigger3 -------> Channel --------> Subscription --------> Service(Logger2)

Explanation:
Trigger1 filters the orignal event and tranforms it to a new event,
Trigger2 logs all events,
Trigger3 filters the transformed event and sends it to Channel.

*/
func BrokerChannelFlowWithTransformation(t *testing.T,
brokerClass string,
channelTestRunner lib.ChannelTestRunner,
options ...lib.SetupClientOption) {
Expand Down
154 changes: 0 additions & 154 deletions test/e2e/helpers/broker_channel_flow_test_helper.go

This file was deleted.

Loading