363 lines
9.9 KiB
Go
363 lines
9.9 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 che
|
|
|
|
import (
|
|
"os"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/devfile/devworkspace-operator/pkg/infrastructure"
|
|
chev2 "github.com/eclipse-che/che-operator/api/v2"
|
|
"github.com/eclipse-che/che-operator/pkg/common/chetypes"
|
|
"github.com/google/go-cmp/cmp"
|
|
configv1 "github.com/openshift/api/config/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
fakeDiscovery "k8s.io/client-go/discovery/fake"
|
|
fakeclientset "k8s.io/client-go/kubernetes/fake"
|
|
"k8s.io/client-go/kubernetes/scheme"
|
|
"sigs.k8s.io/controller-runtime/pkg/client/fake"
|
|
logf "sigs.k8s.io/controller-runtime/pkg/log"
|
|
"sigs.k8s.io/controller-runtime/pkg/log/zap"
|
|
)
|
|
|
|
func TestReadProxyConfiguration(t *testing.T) {
|
|
type testCase struct {
|
|
name string
|
|
isOpenShift bool
|
|
cheCluster *chev2.CheCluster
|
|
clusterProxy *configv1.Proxy
|
|
initObjects []runtime.Object
|
|
expectedProxyConf *chetypes.Proxy
|
|
}
|
|
|
|
testCases := []testCase{
|
|
{
|
|
name: "Test no proxy configured",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cluster",
|
|
},
|
|
},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{},
|
|
},
|
|
{
|
|
name: "Test checluster proxy configured, OpenShift 4.x",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cluster",
|
|
},
|
|
},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
Spec: chev2.CheClusterSpec{
|
|
Components: chev2.CheClusterComponents{
|
|
CheServer: chev2.CheServer{
|
|
Proxy: &chev2.Proxy{
|
|
Url: "http://proxy",
|
|
Port: "3128",
|
|
NonProxyHosts: []string{"host1"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
HttpProxy: "http://proxy:3128",
|
|
HttpUser: "",
|
|
HttpPassword: "",
|
|
HttpHost: "proxy",
|
|
HttpPort: "3128",
|
|
HttpsProxy: "http://proxy:3128",
|
|
HttpsUser: "",
|
|
HttpsPassword: "",
|
|
HttpsHost: "proxy",
|
|
HttpsPort: "3128",
|
|
NoProxy: "host1,.svc",
|
|
TrustedCAMapName: "",
|
|
},
|
|
},
|
|
{
|
|
name: "Test checluster proxy configured, nonProxy merged, OpenShift 4.x",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cluster",
|
|
},
|
|
Status: configv1.ProxyStatus{
|
|
HTTPProxy: "http://proxy:3128",
|
|
HTTPSProxy: "http://proxy:3128",
|
|
NoProxy: "host2",
|
|
},
|
|
},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
Spec: chev2.CheClusterSpec{
|
|
Components: chev2.CheClusterComponents{
|
|
CheServer: chev2.CheServer{
|
|
Proxy: &chev2.Proxy{
|
|
Url: "http://proxy",
|
|
Port: "3128",
|
|
NonProxyHosts: []string{"host1"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
HttpProxy: "http://proxy:3128",
|
|
HttpUser: "",
|
|
HttpPassword: "",
|
|
HttpHost: "proxy",
|
|
HttpPort: "3128",
|
|
HttpsProxy: "http://proxy:3128",
|
|
HttpsUser: "",
|
|
HttpsPassword: "",
|
|
HttpsHost: "proxy",
|
|
HttpsPort: "3128",
|
|
NoProxy: "host1,host2",
|
|
TrustedCAMapName: "",
|
|
},
|
|
},
|
|
{
|
|
name: "Test cluster wide proxy configured, OpenShift 4.x",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cluster",
|
|
},
|
|
Spec: configv1.ProxySpec{
|
|
TrustedCA: configv1.ConfigMapNameReference{
|
|
Name: "additional-cluster-ca-bundle",
|
|
},
|
|
},
|
|
Status: configv1.ProxyStatus{
|
|
HTTPProxy: "http://proxy:3128",
|
|
HTTPSProxy: "http://proxy:3128",
|
|
NoProxy: "host1",
|
|
},
|
|
},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
HttpProxy: "http://proxy:3128",
|
|
HttpUser: "",
|
|
HttpPassword: "",
|
|
HttpHost: "proxy",
|
|
HttpPort: "3128",
|
|
HttpsProxy: "http://proxy:3128",
|
|
HttpsUser: "",
|
|
HttpsPassword: "",
|
|
HttpsHost: "proxy",
|
|
HttpsPort: "3128",
|
|
NoProxy: "host1",
|
|
TrustedCAMapName: "additional-cluster-ca-bundle",
|
|
},
|
|
},
|
|
{
|
|
name: "Test cluster wide proxy is not configured, but cluster wide CA certs added, OpenShift 4.x",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cluster",
|
|
},
|
|
Spec: configv1.ProxySpec{
|
|
TrustedCA: configv1.ConfigMapNameReference{
|
|
Name: "additional-cluster-ca-bundle",
|
|
},
|
|
},
|
|
},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
TrustedCAMapName: "additional-cluster-ca-bundle",
|
|
},
|
|
},
|
|
{
|
|
name: "Test cluster wide proxy configured, nonProxy merged, OpenShift 4.x",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "cluster",
|
|
},
|
|
Status: configv1.ProxyStatus{
|
|
HTTPProxy: "http://proxy:3128",
|
|
HTTPSProxy: "http://proxy:3128",
|
|
NoProxy: "host1",
|
|
},
|
|
},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
Spec: chev2.CheClusterSpec{
|
|
Components: chev2.CheClusterComponents{
|
|
CheServer: chev2.CheServer{
|
|
Proxy: &chev2.Proxy{
|
|
NonProxyHosts: []string{"host2"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
HttpProxy: "http://proxy:3128",
|
|
HttpUser: "",
|
|
HttpPassword: "",
|
|
HttpHost: "proxy",
|
|
HttpPort: "3128",
|
|
HttpsProxy: "http://proxy:3128",
|
|
HttpsUser: "",
|
|
HttpsPassword: "",
|
|
HttpsHost: "proxy",
|
|
HttpsPort: "3128",
|
|
NoProxy: "host1,host2",
|
|
TrustedCAMapName: "",
|
|
},
|
|
},
|
|
{
|
|
name: "Test checluster proxy configured, Kubernetes",
|
|
isOpenShift: false,
|
|
clusterProxy: &configv1.Proxy{},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
Spec: chev2.CheClusterSpec{
|
|
Components: chev2.CheClusterComponents{
|
|
CheServer: chev2.CheServer{
|
|
Proxy: &chev2.Proxy{
|
|
Url: "http://proxy",
|
|
Port: "3128",
|
|
NonProxyHosts: []string{"host1"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
HttpProxy: "http://proxy:3128",
|
|
HttpUser: "",
|
|
HttpPassword: "",
|
|
HttpHost: "proxy",
|
|
HttpPort: "3128",
|
|
HttpsProxy: "http://proxy:3128",
|
|
HttpsUser: "",
|
|
HttpsPassword: "",
|
|
HttpsHost: "proxy",
|
|
HttpsPort: "3128",
|
|
NoProxy: "host1,.svc",
|
|
TrustedCAMapName: "",
|
|
},
|
|
},
|
|
{
|
|
name: "Test checluster proxy configured, Kubernetes",
|
|
isOpenShift: true,
|
|
clusterProxy: &configv1.Proxy{},
|
|
cheCluster: &chev2.CheCluster{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: "eclipse-che",
|
|
},
|
|
Spec: chev2.CheClusterSpec{
|
|
Components: chev2.CheClusterComponents{
|
|
CheServer: chev2.CheServer{
|
|
Proxy: &chev2.Proxy{
|
|
Url: "http://proxy",
|
|
Port: "3128",
|
|
NonProxyHosts: []string{"host1"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
initObjects: []runtime.Object{},
|
|
expectedProxyConf: &chetypes.Proxy{
|
|
HttpProxy: "http://proxy:3128",
|
|
HttpUser: "",
|
|
HttpPassword: "",
|
|
HttpHost: "proxy",
|
|
HttpPort: "3128",
|
|
HttpsProxy: "http://proxy:3128",
|
|
HttpsUser: "",
|
|
HttpsPassword: "",
|
|
HttpsHost: "proxy",
|
|
HttpsPort: "3128",
|
|
NoProxy: "host1,.svc",
|
|
TrustedCAMapName: "",
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
t.Run(testCase.name, func(t *testing.T) {
|
|
logf.SetLogger(zap.New(zap.WriteTo(os.Stdout), zap.UseDevMode(true)))
|
|
chev2.SchemeBuilder.AddToScheme(scheme.Scheme)
|
|
testCase.initObjects = append(testCase.initObjects, testCase.clusterProxy, testCase.cheCluster)
|
|
|
|
scheme := scheme.Scheme
|
|
chev2.SchemeBuilder.AddToScheme(scheme)
|
|
scheme.AddKnownTypes(configv1.SchemeGroupVersion, &configv1.Proxy{})
|
|
|
|
cli := fake.NewFakeClientWithScheme(scheme, testCase.initObjects...)
|
|
clientSet := fakeclientset.NewSimpleClientset()
|
|
fakeDiscovery, _ := clientSet.Discovery().(*fakeDiscovery.FakeDiscovery)
|
|
fakeDiscovery.Fake.Resources = []*metav1.APIResourceList{}
|
|
|
|
infrastructure.InitializeForTesting(infrastructure.OpenShiftv4)
|
|
|
|
deployContext := &chetypes.DeployContext{
|
|
CheCluster: testCase.cheCluster,
|
|
ClusterAPI: chetypes.ClusterAPI{
|
|
Client: cli,
|
|
NonCachingClient: cli,
|
|
Scheme: scheme,
|
|
},
|
|
}
|
|
|
|
actualProxyConf, err := GetProxyConfiguration(deployContext)
|
|
if err != nil {
|
|
t.Fatalf("Error reading proxy configuration: %v", err)
|
|
}
|
|
|
|
if !reflect.DeepEqual(testCase.expectedProxyConf, actualProxyConf) {
|
|
t.Errorf("Expected deployment and deployment returned from API server differ (-want, +got): %v", cmp.Diff(testCase.expectedProxyConf, actualProxyConf))
|
|
}
|
|
})
|
|
}
|
|
}
|