// // Copyright (c) 2019-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 pluginregistry import ( "github.com/eclipse-che/che-operator/pkg/util" "github.com/eclipse-che/che-operator/pkg/deploy" orgv1 "github.com/eclipse-che/che-operator/api/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/runtime" "testing" ) func TestGetPluginRegistryDeploymentSpec(t *testing.T) { type testCase struct { name string initObjects []runtime.Object memoryLimit string memoryRequest string cpuRequest string cpuLimit string cheCluster *orgv1.CheCluster } testCases := []testCase{ { name: "Test default limits", initObjects: []runtime.Object{}, memoryLimit: deploy.DefaultPluginRegistryMemoryLimit, memoryRequest: deploy.DefaultPluginRegistryMemoryRequest, cpuLimit: deploy.DefaultPluginRegistryCpuLimit, cpuRequest: deploy.DefaultPluginRegistryCpuRequest, cheCluster: &orgv1.CheCluster{ ObjectMeta: metav1.ObjectMeta{ Namespace: "eclipse-che", Name: "eclipse-che", }, }, }, { name: "Test custom limits", initObjects: []runtime.Object{}, cpuLimit: "250m", cpuRequest: "150m", memoryLimit: "250Mi", memoryRequest: "150Mi", cheCluster: &orgv1.CheCluster{ ObjectMeta: metav1.ObjectMeta{ Namespace: "eclipse-che", Name: "eclipse-che", }, Spec: orgv1.CheClusterSpec{ Server: orgv1.CheClusterSpecServer{ PluginRegistryCpuLimit: "250m", PluginRegistryCpuRequest: "150m", PluginRegistryMemoryLimit: "250Mi", PluginRegistryMemoryRequest: "150Mi", }, }, }, }, } for _, testCase := range testCases { t.Run(testCase.name, func(t *testing.T) { ctx := deploy.GetTestDeployContext(testCase.cheCluster, []runtime.Object{}) pluginregistry := NewPluginRegistryReconciler() deployment := pluginregistry.getPluginRegistryDeploymentSpec(ctx) util.CompareResources(deployment, util.TestExpectedResources{ MemoryLimit: testCase.memoryLimit, MemoryRequest: testCase.memoryRequest, CpuRequest: testCase.cpuRequest, CpuLimit: testCase.cpuLimit, }, t) util.ValidateSecurityContext(deployment, t) }) } }