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
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func channelHasRequiredSubscriberStatus(st *testing.T, client *lib.Client, chann
client.CreateChannelOrFail(channelName, &channel)
client.WaitForResourceReadyOrFail(channelName, &channel)

pod := resources.EventDetailsPod(subscriberServiceName + "-pod")
pod := resources.EventRecordPod(subscriberServiceName + "-pod")
client.CreatePodOrFail(pod, lib.WithService(subscriberServiceName))

subscription := client.CreateSubscriptionOrFail(
Expand Down
154 changes: 0 additions & 154 deletions test/e2e/helpers/performance_image_test_helper.go

This file was deleted.

21 changes: 0 additions & 21 deletions test/lib/cloudevents.go

This file was deleted.

96 changes: 0 additions & 96 deletions test/lib/cloudevents/cloud_events.go

This file was deleted.

16 changes: 16 additions & 0 deletions test/lib/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ limitations under the License.
package lib

import (
"time"

metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"knative.dev/eventing/test/lib/resources"
Expand Down Expand Up @@ -56,3 +58,17 @@ const (
// will persist and be retransmitted when the Pod restarts.
FeaturePersistence Feature = "persistence"
)

const (
// Default Event values
DefaultEventSource = "http://knative.test"
DefaultEventType = "dev.knative.test.event"
// The interval and timeout used for polling pod logs.
interval = 1 * time.Second
timeout = 4 * time.Minute
)

// InterestingHeaders is used by logging pods to decide interesting HTTP headers to log
func InterestingHeaders() []string {
return []string{"Traceparent", "X-Custom-Header"}
}
Loading