blob: 8932ad2cc0e3a1be4013350d4c95916af73122bb [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 trait
import (
"testing"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/platform"
"github.com/apache/camel-k/pkg/util/kubernetes"
"github.com/apache/camel-k/pkg/util/test"
"github.com/stretchr/testify/assert"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
func TestPlatformTraitChangeStatus(t *testing.T) {
table := []struct {
name string
initialPhase v1.IntegrationPhase
}{
{
name: "Setup from [none]",
initialPhase: v1.IntegrationPhaseNone,
},
{
name: "Setup from WaitingForPlatform",
initialPhase: v1.IntegrationPhaseWaitingForPlatform,
},
}
for _, entry := range table {
input := entry
t.Run(input.name, func(t *testing.T) {
e := Environment{
Resources: kubernetes.NewCollection(),
Integration: &v1.Integration{
Status: v1.IntegrationStatus{
Phase: input.initialPhase,
},
},
}
trait := newPlatformTrait().(*platformTrait)
createPlatform := false
trait.CreateDefault = &createPlatform
var err error
trait.Client, err = test.NewFakeClient()
assert.Nil(t, err)
enabled, err := trait.Configure(&e)
assert.Nil(t, err)
assert.True(t, enabled)
err = trait.Apply(&e)
assert.Nil(t, err)
assert.Equal(t, v1.IntegrationPhaseWaitingForPlatform, e.Integration.Status.Phase)
assert.Empty(t, e.Resources.Items())
})
}
}
func TestPlatformTraitCreatesDefaultPlatform(t *testing.T) {
e := Environment{
Resources: kubernetes.NewCollection(),
Integration: &v1.Integration{
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns1",
Name: "xx",
},
Status: v1.IntegrationStatus{
Phase: v1.IntegrationPhaseNone,
},
},
}
trait := newPlatformTrait().(*platformTrait)
createPlatform := true
trait.CreateDefault = &createPlatform
var err error
trait.Client, err = test.NewFakeClient()
assert.Nil(t, err)
enabled, err := trait.Configure(&e)
assert.Nil(t, err)
assert.True(t, enabled)
err = trait.Apply(&e)
assert.Nil(t, err)
assert.Equal(t, v1.IntegrationPhaseWaitingForPlatform, e.Integration.Status.Phase)
assert.Equal(t, 1, len(e.Resources.Items()))
defPlatform := v1.NewIntegrationPlatform("ns1", platform.DefaultPlatformName)
defPlatform.Labels = map[string]string{"camel.apache.org/platform.generated": True}
assert.Contains(t, e.Resources.Items(), &defPlatform)
}
func TestPlatformTraitExisting(t *testing.T) {
table := []struct {
name string
platformPhase v1.IntegrationPlatformPhase
expectedPhase v1.IntegrationPhase
}{
{
name: "Wait existing",
platformPhase: "",
expectedPhase: v1.IntegrationPhaseWaitingForPlatform,
},
{
name: "Move state",
platformPhase: v1.IntegrationPlatformPhaseReady,
expectedPhase: v1.IntegrationPhaseInitialization,
},
}
for _, entry := range table {
input := entry
t.Run(input.name, func(t *testing.T) {
e := Environment{
Resources: kubernetes.NewCollection(),
Integration: &v1.Integration{
ObjectMeta: metav1.ObjectMeta{
Namespace: "ns1",
Name: "xx",
},
Status: v1.IntegrationStatus{
Phase: v1.IntegrationPhaseNone,
},
},
}
trait := newPlatformTrait().(*platformTrait)
createPlatform := true
trait.CreateDefault = &createPlatform
var err error
existingPlatform := v1.NewIntegrationPlatform("ns1", "existing")
existingPlatform.Status.Phase = input.platformPhase
trait.Client, err = test.NewFakeClient(&existingPlatform)
assert.Nil(t, err)
enabled, err := trait.Configure(&e)
assert.Nil(t, err)
assert.True(t, enabled)
err = trait.Apply(&e)
assert.Nil(t, err)
assert.Equal(t, input.expectedPhase, e.Integration.Status.Phase)
assert.Empty(t, e.Resources.Items())
})
}
}