// // Copyright (c) 2021 Red Hat, Inc. // This program and the accompanying materials are made // available under the terms of the Eclipse Public License 2.0 // which is available at https://www.eclipse.org/legal/epl-2.0/ // // SPDX-License-Identifier: EPL-2.0 // // Contributors: // Red Hat, Inc. - initial API and implementation // package deploy import ( "context" orgv1 "github.com/eclipse-che/che-operator/pkg/apis/org/v1" corev1 "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "k8s.io/client-go/kubernetes/scheme" "sigs.k8s.io/controller-runtime/pkg/client/fake" "testing" ) func TestServiceToCluster(t *testing.T) { orgv1.SchemeBuilder.AddToScheme(scheme.Scheme) cli := fake.NewFakeClientWithScheme(scheme.Scheme) deployContext := &DeployContext{ CheCluster: &orgv1.CheCluster{ ObjectMeta: metav1.ObjectMeta{ Namespace: "eclipse-che", Name: "eclipse-che", }, }, ClusterAPI: ClusterAPI{ Client: cli, NonCachedClient: cli, Scheme: scheme.Scheme, }, } done, err := SyncServiceToCluster(deployContext, "test", []string{"port"}, []int32{8080}, "test") if !done || err != nil { t.Fatalf("Failed to sync service: %v", err) } // sync another service done, err = SyncServiceToCluster(deployContext, "test", []string{"port"}, []int32{9090}, "test") if !done || err != nil { t.Fatalf("Failed to sync service: %v", err) } actual := &corev1.Service{} err = cli.Get(context.TODO(), types.NamespacedName{Name: "test"}, actual) if err != nil { t.Fatalf("Failed to get service: %v", err) } if actual.Spec.Ports[0].Port != 9090 { t.Fatalf("Failed to sync service.") } }