blob: 48bf81256afa5a2ed9ce352a9e31e77612747dfb [file] [log] [blame]
// Copyright 2023 Red Hat, Inc. and/or its affiliates
//
// 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 profiles
import (
"testing"
"github.com/stretchr/testify/assert"
v1 "k8s.io/api/core/v1"
"github.com/kiegroup/kogito-serverless-operator/test"
)
func Test_ensureWorkflowDevServiceIsExposed(t *testing.T) {
workflow := test.GetBaseSonataFlowWithDevProfile(t.Name())
//On Kubernetes we want the service exposed in Dev with NodePort
service, _ := devServiceCreator(workflow)
service.SetUID("1")
service.SetResourceVersion("1")
reflectService := service.(*v1.Service)
assert.NotNil(t, reflectService)
assert.NotNil(t, reflectService.Spec.Type)
assert.NotEmpty(t, reflectService.Spec.Type)
assert.Equal(t, reflectService.Spec.Type, v1.ServiceTypeNodePort)
}