211 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			211 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Go
		
	
	
	
package cluster
 | 
						|
 | 
						|
import (
 | 
						|
	"k8s.io/api/core/v1"
 | 
						|
 | 
						|
	acidv1 "github.com/zalando/postgres-operator/pkg/apis/acid.zalan.do/v1"
 | 
						|
	"github.com/zalando/postgres-operator/pkg/util/config"
 | 
						|
	"github.com/zalando/postgres-operator/pkg/util/constants"
 | 
						|
	"github.com/zalando/postgres-operator/pkg/util/k8sutil"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func True() *bool {
 | 
						|
	b := true
 | 
						|
	return &b
 | 
						|
}
 | 
						|
 | 
						|
func False() *bool {
 | 
						|
	b := false
 | 
						|
	return &b
 | 
						|
}
 | 
						|
 | 
						|
func TestCreateLoadBalancerLogic(t *testing.T) {
 | 
						|
	var cluster = New(
 | 
						|
		Config{
 | 
						|
			OpConfig: config.Config{
 | 
						|
				ProtectedRoles: []string{"admin"},
 | 
						|
				Auth: config.Auth{
 | 
						|
					SuperUsername:       superUserName,
 | 
						|
					ReplicationUsername: replicationUserName,
 | 
						|
				},
 | 
						|
			},
 | 
						|
		}, k8sutil.KubernetesClient{}, acidv1.Postgresql{}, logger)
 | 
						|
 | 
						|
	testName := "TestCreateLoadBalancerLogic"
 | 
						|
	tests := []struct {
 | 
						|
		subtest  string
 | 
						|
		role     PostgresRole
 | 
						|
		spec     *acidv1.PostgresSpec
 | 
						|
		opConfig config.Config
 | 
						|
		result   bool
 | 
						|
	}{
 | 
						|
		{
 | 
						|
			subtest:  "new format, load balancer is enabled for replica",
 | 
						|
			role:     Replica,
 | 
						|
			spec:     &acidv1.PostgresSpec{EnableReplicaLoadBalancer: True()},
 | 
						|
			opConfig: config.Config{},
 | 
						|
			result:   true,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			subtest:  "new format, load balancer is disabled for replica",
 | 
						|
			role:     Replica,
 | 
						|
			spec:     &acidv1.PostgresSpec{EnableReplicaLoadBalancer: False()},
 | 
						|
			opConfig: config.Config{},
 | 
						|
			result:   false,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			subtest:  "new format, load balancer isn't specified for replica",
 | 
						|
			role:     Replica,
 | 
						|
			spec:     &acidv1.PostgresSpec{EnableReplicaLoadBalancer: nil},
 | 
						|
			opConfig: config.Config{EnableReplicaLoadBalancer: true},
 | 
						|
			result:   true,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			subtest:  "new format, load balancer isn't specified for replica",
 | 
						|
			role:     Replica,
 | 
						|
			spec:     &acidv1.PostgresSpec{EnableReplicaLoadBalancer: nil},
 | 
						|
			opConfig: config.Config{EnableReplicaLoadBalancer: false},
 | 
						|
			result:   false,
 | 
						|
		},
 | 
						|
	}
 | 
						|
	for _, tt := range tests {
 | 
						|
		cluster.OpConfig = tt.opConfig
 | 
						|
		result := cluster.shouldCreateLoadBalancerForService(tt.role, tt.spec)
 | 
						|
		if tt.result != result {
 | 
						|
			t.Errorf("%s %s: Load balancer is %t, expect %t for role %#v and spec %#v",
 | 
						|
				testName, tt.subtest, result, tt.result, tt.role, tt.spec)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestShmVolume(t *testing.T) {
 | 
						|
	testName := "TestShmVolume"
 | 
						|
	tests := []struct {
 | 
						|
		subTest string
 | 
						|
		podSpec *v1.PodSpec
 | 
						|
		shmPos  int
 | 
						|
	}{
 | 
						|
		{
 | 
						|
			subTest: "empty PodSpec",
 | 
						|
			podSpec: &v1.PodSpec{
 | 
						|
				Volumes: []v1.Volume{},
 | 
						|
				Containers: []v1.Container{
 | 
						|
					{
 | 
						|
						VolumeMounts: []v1.VolumeMount{},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			shmPos: 0,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			subTest: "non empty PodSpec",
 | 
						|
			podSpec: &v1.PodSpec{
 | 
						|
				Volumes: []v1.Volume{{}},
 | 
						|
				Containers: []v1.Container{
 | 
						|
					{
 | 
						|
						VolumeMounts: []v1.VolumeMount{
 | 
						|
							{},
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
			shmPos: 1,
 | 
						|
		},
 | 
						|
	}
 | 
						|
	for _, tt := range tests {
 | 
						|
		addShmVolume(tt.podSpec)
 | 
						|
 | 
						|
		volumeName := tt.podSpec.Volumes[tt.shmPos].Name
 | 
						|
		volumeMountName := tt.podSpec.Containers[0].VolumeMounts[tt.shmPos].Name
 | 
						|
 | 
						|
		if volumeName != constants.ShmVolumeName {
 | 
						|
			t.Errorf("%s %s: Expected volume %s was not created, have %s instead",
 | 
						|
				testName, tt.subTest, constants.ShmVolumeName, volumeName)
 | 
						|
		}
 | 
						|
		if volumeMountName != constants.ShmVolumeName {
 | 
						|
			t.Errorf("%s %s: Expected mount %s was not created, have %s instead",
 | 
						|
				testName, tt.subTest, constants.ShmVolumeName, volumeMountName)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestCloneEnv(t *testing.T) {
 | 
						|
	testName := "TestCloneEnv"
 | 
						|
	tests := []struct {
 | 
						|
		subTest   string
 | 
						|
		cloneOpts *acidv1.CloneDescription
 | 
						|
		env       v1.EnvVar
 | 
						|
		envPos    int
 | 
						|
	}{
 | 
						|
		{
 | 
						|
			subTest: "custom s3 path",
 | 
						|
			cloneOpts: &acidv1.CloneDescription{
 | 
						|
				ClusterName:  "test-cluster",
 | 
						|
				S3WalPath:    "s3://some/path/",
 | 
						|
				EndTimestamp: "somewhen",
 | 
						|
			},
 | 
						|
			env: v1.EnvVar{
 | 
						|
				Name:  "CLONE_WALE_S3_PREFIX",
 | 
						|
				Value: "s3://some/path/",
 | 
						|
			},
 | 
						|
			envPos: 1,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			subTest: "generated s3 path, bucket",
 | 
						|
			cloneOpts: &acidv1.CloneDescription{
 | 
						|
				ClusterName:  "test-cluster",
 | 
						|
				EndTimestamp: "somewhen",
 | 
						|
				UID:          "0000",
 | 
						|
			},
 | 
						|
			env: v1.EnvVar{
 | 
						|
				Name:  "CLONE_WAL_S3_BUCKET",
 | 
						|
				Value: "wale-bucket",
 | 
						|
			},
 | 
						|
			envPos: 1,
 | 
						|
		},
 | 
						|
		{
 | 
						|
			subTest: "generated s3 path, target time",
 | 
						|
			cloneOpts: &acidv1.CloneDescription{
 | 
						|
				ClusterName:  "test-cluster",
 | 
						|
				EndTimestamp: "somewhen",
 | 
						|
				UID:          "0000",
 | 
						|
			},
 | 
						|
			env: v1.EnvVar{
 | 
						|
				Name:  "CLONE_TARGET_TIME",
 | 
						|
				Value: "somewhen",
 | 
						|
			},
 | 
						|
			envPos: 4,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	var cluster = New(
 | 
						|
		Config{
 | 
						|
			OpConfig: config.Config{
 | 
						|
				WALES3Bucket:   "wale-bucket",
 | 
						|
				ProtectedRoles: []string{"admin"},
 | 
						|
				Auth: config.Auth{
 | 
						|
					SuperUsername:       superUserName,
 | 
						|
					ReplicationUsername: replicationUserName,
 | 
						|
				},
 | 
						|
			},
 | 
						|
		}, k8sutil.KubernetesClient{}, acidv1.Postgresql{}, logger)
 | 
						|
 | 
						|
	for _, tt := range tests {
 | 
						|
		envs := cluster.generateCloneEnvironment(tt.cloneOpts)
 | 
						|
 | 
						|
		env := envs[tt.envPos]
 | 
						|
 | 
						|
		if env.Name != tt.env.Name {
 | 
						|
			t.Errorf("%s %s: Expected env name %s, have %s instead",
 | 
						|
				testName, tt.subTest, tt.env.Name, env.Name)
 | 
						|
		}
 | 
						|
 | 
						|
		if env.Value != tt.env.Value {
 | 
						|
			t.Errorf("%s %s: Expected env value %s, have %s instead",
 | 
						|
				testName, tt.subTest, tt.env.Value, env.Value)
 | 
						|
		}
 | 
						|
 | 
						|
	}
 | 
						|
}
 |