Mohammed Naser | c6e431b | 2024-03-15 01:21:44 -0400 | [diff] [blame] | 1 | package testutils |
| 2 | |
| 3 | import ( |
Mohammed Naser | 5e9ee25 | 2025-02-10 10:52:10 -0500 | [diff] [blame] | 4 | "strings" |
Mohammed Naser | c6e431b | 2024-03-15 01:21:44 -0400 | [diff] [blame] | 5 | "testing" |
| 6 | |
| 7 | "github.com/stretchr/testify/assert" |
| 8 | |
| 9 | "github.com/vexxhost/atmosphere/internal/openstack_helm" |
| 10 | ) |
| 11 | |
| 12 | func TestDatabaseConf(t *testing.T, config *openstack_helm.DatabaseConf) { |
vexxhost-bot | 2275968 | 2024-10-31 10:46:21 -0400 | [diff] [blame] | 13 | assert.Equal(t, 600, config.ConnectionRecycleTime) |
| 14 | assert.Equal(t, 5, config.MaxPoolSize) |
Mohammed Naser | c6e431b | 2024-03-15 01:21:44 -0400 | [diff] [blame] | 15 | assert.Equal(t, -1, config.MaxRetries) |
| 16 | } |
Mohammed Naser | 5e9ee25 | 2025-02-10 10:52:10 -0500 | [diff] [blame] | 17 | |
| 18 | func 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 | |
| 33 | func 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 | |
| 40 | func 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 | } |