Skip to content

Commit

Permalink
WIP: trigger conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
vaikas committed Feb 5, 2020
1 parent d38682c commit 223fb7a
Show file tree
Hide file tree
Showing 8 changed files with 202 additions and 19 deletions.
78 changes: 78 additions & 0 deletions pkg/apis/eventing/v1alpha1/trigger_conversion.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/*
Copyright 2020 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 v1alpha1

import (
"context"
"fmt"

"knative.dev/eventing/pkg/apis/eventing/v1beta1"
"knative.dev/pkg/apis"
)

// ConvertUp implements apis.Convertible.
// Converts source (from v1alpha1.Trigger) into v1beta1.Trigger
func (source *Trigger) ConvertUp(ctx context.Context, obj apis.Convertible) error {
switch sink := obj.(type) {
case *v1beta1.Trigger:
sink.ObjectMeta = source.ObjectMeta
sink.Spec.Broker = source.Spec.Broker
sink.Spec.Subscriber = source.Spec.Subscriber
if source.Spec.Filter != nil {
sink.Spec.Filter = &v1beta1.TriggerFilter{}
if source.Spec.Filter.Attributes != nil {
for k, v := range *source.Spec.Filter.Attributes {
sink.Spec.Filter.Attributes[k] = v
}
}
if source.Spec.Filter.DeprecatedSourceAndType != nil {
sink.Spec.Filter.Attributes["source"] = source.Spec.Filter.DeprecatedSourceAndType.Source
sink.Spec.Filter.Attributes["type"] = source.Spec.Filter.DeprecatedSourceAndType.Type
}
}
sink.Status.Status = source.Status.Status
sink.Status.SubscriberURI = source.Status.SubscriberURI
return nil
default:
return fmt.Errorf("Unknown conversion, got: %T", sink)

}
}

// ConvertDown implements apis.Convertible.
// Converts obj from v1beta1.Trigger into v1alpha1.Trigger
func (sink *Trigger) ConvertDown(ctx context.Context, obj apis.Convertible) error {
switch source := obj.(type) {
case *v1beta1.Trigger:
sink.ObjectMeta = source.ObjectMeta
sink.Spec.Broker = source.Spec.Broker
sink.Spec.Subscriber = source.Spec.Subscriber
if source.Spec.Filter != nil {
sink.Spec.Filter = &TriggerFilter{}
tfa := TriggerFilterAttributes{}
for k, v := range source.Spec.Filter.Attributes {
tfa[k] = v
}
}

sink.Status.Status = source.Status.Status
sink.Status.SubscriberURI = source.Status.SubscriberURI
return nil
default:
return fmt.Errorf("Unknown conversion, got: %T", source)
}
}
3 changes: 3 additions & 0 deletions pkg/apis/eventing/v1alpha1/trigger_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ var (
// Check that Trigger can return its spec untyped.
_ apis.HasSpec = (*Trigger)(nil)

// Check that Service can be converted to higher versions.
_ apis.Convertible = (*Trigger)(nil)

_ runtime.Object = (*Trigger)(nil)

// Check that we can create OwnerReferences to a Trigger.
Expand Down
44 changes: 44 additions & 0 deletions pkg/apis/eventing/v1beta1/broker_lifecycle.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
Copyright 2020 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 v1beta1

import (
"knative.dev/pkg/apis"
)

var brokerCondSet = apis.NewLivingConditionSet(BrokerConditionAddressable)

const (
BrokerConditionReady = apis.ConditionReady
BrokerConditionAddressable apis.ConditionType = "Addressable"
)

// GetTopLevelCondition returns the top level Condition.
func (bs *BrokerStatus) GetTopLevelCondition() *apis.Condition {
return brokerCondSet.Manage(bs).GetTopLevelCondition()
}

// SetAddress makes this Broker addressable by setting the URI. It also
// sets the BrokerConditionAddressable to true.
func (bs *BrokerStatus) SetAddress(url *apis.URL) {
bs.Address.URL = url
if url != nil {
brokerCondSet.Manage(bs).MarkTrue(BrokerConditionAddressable)
} else {
brokerCondSet.Manage(bs).MarkFalse(BrokerConditionAddressable, "nil URL", "URL is nil")
}
}
22 changes: 7 additions & 15 deletions pkg/apis/eventing/v1beta1/test_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import (
corev1 "k8s.io/api/core/v1"

duckv1alpha1 "knative.dev/eventing/pkg/apis/duck/v1alpha1"
eventingv1alpha1 "knative.dev/eventing/pkg/apis/eventing/v1alpha1"
"knative.dev/pkg/apis"
duckv1 "knative.dev/pkg/apis/duck/v1"
pkgduckv1alpha1 "knative.dev/pkg/apis/duck/v1alpha1"
Expand Down Expand Up @@ -65,12 +64,9 @@ func (testHelper) ReadyChannelStatus() *duckv1alpha1.ChannelableStatus {
return cs
}

func (t testHelper) ReadyBrokerStatus() *eventingv1alpha1.BrokerStatus {
bs := &eventingv1alpha1.BrokerStatus{}
bs.PropagateIngressDeploymentAvailability(t.AvailableDeployment())
bs.PropagateTriggerChannelReadiness(t.ReadyChannelStatus())
bs.PropagateFilterDeploymentAvailability(t.AvailableDeployment())
bs.SetAddress(&apis.URL{Scheme: "http", Host: "foo"})
func (t testHelper) ReadyBrokerStatus() *BrokerStatus {
bs := &BrokerStatus{}
bs.SetAddress(apis.HTTP("example.com"))
return bs
}

Expand All @@ -86,17 +82,13 @@ func (t testHelper) AvailableDeployment() *v1.Deployment {
return d
}

func (t testHelper) UnknownBrokerStatus() *eventingv1alpha1.BrokerStatus {
bs := &eventingv1alpha1.BrokerStatus{}
bs.InitializeConditions()
func (t testHelper) UnknownBrokerStatus() *BrokerStatus {
bs := &BrokerStatus{}
return bs
}

func (t testHelper) FalseBrokerStatus() *eventingv1alpha1.BrokerStatus {
bs := &eventingv1alpha1.BrokerStatus{}
bs.MarkIngressFailed("DeploymentUnavailable", "The Deployment is unavailable.")
bs.MarkTriggerChannelFailed("ChannelNotReady", "trigger Channel is not ready: not addressalbe")
bs.MarkFilterFailed("DeploymentUnavailable", "The Deployment is unavailable.")
func (t testHelper) FalseBrokerStatus() *BrokerStatus {
bs := &BrokerStatus{}
bs.SetAddress(nil)
return bs
}
34 changes: 34 additions & 0 deletions pkg/apis/eventing/v1beta1/trigger_conversion.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
Copyright 2020 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 v1beta1

import (
"context"
"fmt"

"knative.dev/pkg/apis"
)

// ConvertUp implements apis.Convertible
func (source *Trigger) ConvertUp(ctx context.Context, sink apis.Convertible) error {
return fmt.Errorf("v1beta1 is the highest known version, got: %T", sink)
}

// ConvertDown implements apis.Convertible
func (sink *Trigger) ConvertDown(ctx context.Context, source apis.Convertible) error {
return fmt.Errorf("v1 is the highest known version, got: %T", source)
}
34 changes: 34 additions & 0 deletions pkg/apis/eventing/v1beta1/trigger_conversion_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
Copyright 2020 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 v1beta1

import (
"context"
"testing"
)

func TestTriggerConversionBadType(t *testing.T) {
good, bad := &Trigger{}, &Trigger{}

if err := good.ConvertUp(context.Background(), bad); err == nil {
t.Errorf("ConvertUp() = %#v, wanted error", bad)
}

if err := good.ConvertDown(context.Background(), bad); err == nil {
t.Errorf("ConvertDown() = %#v, wanted error", good)
}
}
3 changes: 1 addition & 2 deletions pkg/apis/eventing/v1beta1/trigger_lifecycle.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package v1beta1
import (
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
eventingv1alpha1 "knative.dev/eventing/pkg/apis/eventing/v1alpha1"
"knative.dev/pkg/apis"
duckv1 "knative.dev/pkg/apis/duck/v1"
)
Expand Down Expand Up @@ -72,7 +71,7 @@ func (ts *TriggerStatus) InitializeConditions() {
triggerCondSet.Manage(ts).InitializeConditions()
}

func (ts *TriggerStatus) PropagateBrokerStatus(bs *eventingv1alpha1.BrokerStatus) {
func (ts *TriggerStatus) PropagateBrokerStatus(bs *BrokerStatus) {
bc := bs.GetTopLevelCondition()
if bc == nil {
ts.MarkBrokerNotConfigured()
Expand Down
3 changes: 1 addition & 2 deletions pkg/apis/eventing/v1beta1/trigger_lifecycle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package v1beta1
import (
"testing"

eventingv1alpha1 "knative.dev/eventing/pkg/apis/eventing/v1alpha1"
"knative.dev/pkg/apis"

"github.com/google/go-cmp/cmp"
Expand Down Expand Up @@ -234,7 +233,7 @@ func TestTriggerInitializeConditions(t *testing.T) {
func TestTriggerConditionStatus(t *testing.T) {
tests := []struct {
name string
brokerStatus *eventingv1alpha1.BrokerStatus
brokerStatus *BrokerStatus
markKubernetesServiceExists bool
markVirtualServiceExists bool
subscriptionCondition *apis.Condition
Expand Down

0 comments on commit 223fb7a

Please sign in to comment.