blob: 0b02304c2593babe88facfc8ae567a8a3dece073 [file] [log] [blame]
Mohammed Naserc6e431b2024-03-15 01:21:44 -04001package testutils
2
3import (
Mohammed Naser5e9ee252025-02-10 10:52:10 -05004 "strings"
Mohammed Naserc6e431b2024-03-15 01:21:44 -04005 "testing"
6
7 "github.com/stretchr/testify/assert"
8
9 "github.com/vexxhost/atmosphere/internal/openstack_helm"
10)
11
12func TestDatabaseConf(t *testing.T, config *openstack_helm.DatabaseConf) {
vexxhost-bot22759682024-10-31 10:46:21 -040013 assert.Equal(t, 600, config.ConnectionRecycleTime)
14 assert.Equal(t, 5, config.MaxPoolSize)
Mohammed Naserc6e431b2024-03-15 01:21:44 -040015 assert.Equal(t, -1, config.MaxRetries)
16}
Mohammed Naser5e9ee252025-02-10 10:52:10 -050017
18func podNameForClass(pod string) string {
19 // There are a few pods which are built/created inside "helm-toolkit" so
20 // we cannot refer to them by their full name or the code will get real
21 // messy.
22 if strings.HasSuffix(pod, "db_init") {
23 return "db_init"
24 } else if strings.HasSuffix(pod, "db_sync") {
25 return "db_sync"
26 } else if strings.HasSuffix(pod, "_bootstrap") {
27 return "bootstrap"
28 }
29
30 return pod
31}
32
33func TestAllPodsHaveRuntimeClass(t *testing.T, vals *openstack_helm.HelmValues) {
34 for pod := range vals.Pod.Mounts {
35 podName := podNameForClass(pod)
36 assert.Contains(t, vals.Pod.RuntimeClass, podName)
37 }
38}
39
40func TestAllPodsHavePriorityClass(t *testing.T, vals *openstack_helm.HelmValues) {
41 for pod := range vals.Pod.Mounts {
42 podName := podNameForClass(pod)
43 assert.Contains(t, vals.Pod.PriorityClass, podName)
44 }
45}