blob: d6b813b47c0ae34c4e7388f53342a2ef1db4aac5 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 integration
import (
"context"
"testing"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/util/test"
"github.com/stretchr/testify/assert"
)
func TestLookupKitForIntegration_DiscardKitsInError(t *testing.T) {
c, err := test.NewFakeClient(
&v1.IntegrationKit{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKitKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-kit-1",
Labels: map[string]string{
"camel.apache.org/kit.type": v1.IntegrationKitTypePlatform,
},
},
Spec: v1.IntegrationKitSpec{
Dependencies: []string{
"camel-core",
"camel-irc",
},
},
Status: v1.IntegrationKitStatus{
Phase: v1.IntegrationKitPhaseError,
},
},
&v1.IntegrationKit{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKitKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-kit-2",
Labels: map[string]string{
"camel.apache.org/kit.type": v1.IntegrationKitTypePlatform,
},
},
Spec: v1.IntegrationKitSpec{
Dependencies: []string{
"camel-core",
"camel-irc",
},
},
Status: v1.IntegrationKitStatus{
Phase: v1.IntegrationKitPhaseReady,
},
},
)
assert.Nil(t, err)
i, err := LookupKitForIntegration(context.TODO(), c, &v1.Integration{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-integration",
},
Status: v1.IntegrationStatus{
Dependencies: []string{
"camel-core",
"camel-irc",
},
},
})
assert.Nil(t, err)
assert.NotNil(t, i)
assert.Equal(t, "my-kit-2", i.Name)
}
func TestLookupKitForIntegration_DiscardKitsWithIncompatibleTraits(t *testing.T) {
c, err := test.NewFakeClient(
//
// Should be discarded because it contains both of the required traits but one
// contains a different configuration value
//
&v1.IntegrationKit{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKitKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-kit-1",
Labels: map[string]string{
"camel.apache.org/kit.type": v1.IntegrationKitTypePlatform,
},
},
Spec: v1.IntegrationKitSpec{
Dependencies: []string{
"camel-core",
"camel-irc",
},
Traits: map[string]v1.TraitSpec{
"knative": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
"knative-service": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "false",
}),
},
},
Status: v1.IntegrationKitStatus{
Phase: v1.IntegrationKitPhaseReady,
},
},
//
// Should be discarded because it contains a subset of the required traits but
// with different configuration value
//
&v1.IntegrationKit{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKitKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-kit-2",
Labels: map[string]string{
"camel.apache.org/kit.type": v1.IntegrationKitTypePlatform,
},
},
Spec: v1.IntegrationKitSpec{
Dependencies: []string{
"camel-core",
"camel-irc",
},
Traits: map[string]v1.TraitSpec{
"knative": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "false",
}),
},
},
Status: v1.IntegrationKitStatus{
Phase: v1.IntegrationKitPhaseReady,
},
},
//
// Should be discarded because it contains both of the required traits but
// also an additional one
//
&v1.IntegrationKit{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKitKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-kit-3",
Labels: map[string]string{
"camel.apache.org/kit.type": v1.IntegrationKitTypePlatform,
},
},
Spec: v1.IntegrationKitSpec{
Dependencies: []string{
"camel-core",
"camel-irc",
},
Traits: map[string]v1.TraitSpec{
"knative": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
"knative-service": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
"gc": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
},
},
Status: v1.IntegrationKitStatus{
Phase: v1.IntegrationKitPhaseReady,
},
},
//
// Should NOT be discarded because it contains a subset of the required traits and
// same configuration values
//
&v1.IntegrationKit{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKitKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-kit-4",
Labels: map[string]string{
"camel.apache.org/kit.type": v1.IntegrationKitTypePlatform,
},
},
Spec: v1.IntegrationKitSpec{
Dependencies: []string{
"camel-core",
"camel-irc",
},
Traits: map[string]v1.TraitSpec{
"knative": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
},
},
Status: v1.IntegrationKitStatus{
Phase: v1.IntegrationKitPhaseReady,
},
},
)
assert.Nil(t, err)
i, err := LookupKitForIntegration(context.TODO(), c, &v1.Integration{
TypeMeta: metav1.TypeMeta{
APIVersion: v1.SchemeGroupVersion.String(),
Kind: v1.IntegrationKind,
},
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns",
Name: "my-integration",
},
Spec: v1.IntegrationSpec{
Traits: map[string]v1.TraitSpec{
"knative": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
"knative-service": test.TraitSpecFromMap(t, map[string]interface{}{
"enabled": "true",
}),
},
},
Status: v1.IntegrationStatus{
Dependencies: []string{
"camel-core",
"camel-irc",
},
},
})
assert.Nil(t, err)
assert.NotNil(t, i)
assert.Equal(t, "my-kit-4", i.Name)
}