che-operator/pkg/deploy/job_test.go

66 lines
1.8 KiB
Go

//
// Copyright (c) 2019-2023 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"
chev2 "github.com/eclipse-che/che-operator/api/v2"
"github.com/eclipse-che/che-operator/pkg/common/chetypes"
batchv1 "k8s.io/api/batch/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 TestSyncJobToCluster(t *testing.T) {
chev2.SchemeBuilder.AddToScheme(scheme.Scheme)
cli := fake.NewFakeClientWithScheme(scheme.Scheme)
deployContext := &chetypes.DeployContext{
CheCluster: &chev2.CheCluster{
ObjectMeta: metav1.ObjectMeta{
Namespace: "eclipse-che",
Name: "eclipse-che",
},
},
ClusterAPI: chetypes.ClusterAPI{
Client: cli,
NonCachingClient: cli,
Scheme: scheme.Scheme,
},
}
done, err := SyncJobToCluster(deployContext, "test", "component", "image-1", "sa", map[string]string{})
if !done || err != nil {
t.Fatalf("Failed to sync job: %v", err)
}
done, err = SyncJobToCluster(deployContext, "test", "component", "image-2", "sa", map[string]string{})
if !done || err != nil {
t.Fatalf("Failed to sync job: %v", err)
}
actual := &batchv1.Job{}
err = cli.Get(context.TODO(), types.NamespacedName{Name: "test", Namespace: "eclipse-che"}, actual)
if err != nil {
t.Fatalf("Failed to get job: %v", err)
}
if actual.Spec.Template.Spec.Containers[0].Image != "image-2" {
t.Fatalf("Failed to sync job")
}
}