-
Notifications
You must be signed in to change notification settings - Fork 596
/
config.go
99 lines (79 loc) · 3.1 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
Copyright 2019 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package lib
import (
"time"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"knative.dev/eventing/test/lib/resources"
)
// DefaultChannel is the default channel we will run tests against.
var DefaultChannel = InMemoryChannelTypeMeta
// InMemoryChannelTypeMeta is the metav1.TypeMeta for InMemoryChannel.
var InMemoryChannelTypeMeta = metav1.TypeMeta{
APIVersion: resources.MessagingAPIVersion,
Kind: resources.InMemoryChannelKind,
}
// MessagingChannelTypeMeta is the metav1.TypeMeta for messaging.Channel.
var MessagingChannelTypeMeta = metav1.TypeMeta{
APIVersion: resources.MessagingAPIVersion,
Kind: resources.ChannelKind,
}
// ComponentFeatureMap saves the channel-features mapping.
// Each pair means the channel support the list of features.
var ChannelFeatureMap = map[metav1.TypeMeta][]Feature{
InMemoryChannelTypeMeta: {FeatureBasic},
MessagingChannelTypeMeta: {FeatureBasic},
}
var ApiServerSourceTypeMeta = metav1.TypeMeta{
APIVersion: resources.SourcesV1APIVersion,
Kind: resources.ApiServerSourceKind,
}
var PingSourceTypeMeta = metav1.TypeMeta{
APIVersion: resources.SourcesV1A2APIVersion,
Kind: resources.PingSourceKind,
}
var SourceFeatureMap = map[metav1.TypeMeta][]Feature{
ApiServerSourceTypeMeta: {FeatureBasic, FeatureLongLiving},
PingSourceTypeMeta: {FeatureBasic, FeatureLongLiving},
}
var BrokerFeatureMap = map[metav1.TypeMeta][]Feature{
*BrokerTypeMeta: {FeatureBasic},
}
// Feature is the feature supported by the channel.
type Feature string
const (
// FeatureBasic is the feature that should be supported by all components.
FeatureBasic Feature = "basic"
// FeatureRedelivery means if downstream rejects an event, that request will be attempted again.
FeatureRedelivery Feature = "redelivery"
// FeaturePersistence means if channel's Pod goes down, all events already ACKed by the channel
// will persist and be retransmitted when the Pod restarts.
FeaturePersistence Feature = "persistence"
// A long living component
FeatureLongLiving Feature = "longliving"
// A batch style of components that run once and complete
FeatureBatch Feature = "batch"
)
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
SystemLogsDir = "knative-eventing-logs"
)
// InterestingHeaders is used by logging pods to decide interesting HTTP headers to log
func InterestingHeaders() []string {
return []string{"Traceparent", "X-Custom-Header"}
}