Skip to content

Commit

Permalink
add unit test for scheduler webhook default
Browse files Browse the repository at this point in the history
  • Loading branch information
dejanzele committed Nov 26, 2024
1 parent 9eb0e20 commit dbeadd5
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 4 deletions.
4 changes: 0 additions & 4 deletions api/install/v1alpha1/scheduler_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ func (r *Scheduler) Default() {
r.Spec.Image.Repository = "gresearch/armada-scheduler"
}

if r.Spec.Replicas == nil {
r.Spec.Replicas = ptr.To[int32](1)
}

if r.Spec.Migrate == nil {
r.Spec.Migrate = ptr.To[bool](true)
}
Expand Down
79 changes: 79 additions & 0 deletions api/install/v1alpha1/scheduler_webhook_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
Copyright 2023.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package v1alpha1

import (
"testing"

"github.com/stretchr/testify/assert"
"k8s.io/utils/ptr"
)

func TestScheduler_Default(t *testing.T) {
tests := []struct {
name string
input *Scheduler
assert func(*testing.T, *Scheduler)
}{
{
name: "field is set and not overridden",
input: &Scheduler{
Spec: SchedulerSpec{
CommonSpecBase: CommonSpecBase{
Image: Image{
Repository: "test/armada-scheduler",
Tag: "latest",
},
},
},
},
assert: func(t *testing.T, s *Scheduler) {
assert.Equal(t, "test/armada-scheduler", s.Spec.Image.Repository)
},
},
{
name: "field is not set and gets defaulted",
input: &Scheduler{
Spec: SchedulerSpec{
Migrate: nil,
},
},
assert: func(t *testing.T, s *Scheduler) {
assert.Equal(t, ptr.To(true), s.Spec.Migrate)
},
},
{
name: "nothing is set and everything gets defaulted",
input: &Scheduler{
Spec: SchedulerSpec{},
},
assert: func(t *testing.T, scheduler *Scheduler) {
assert.Equal(t, "gresearch/armada-scheduler", scheduler.Spec.Image.Repository)
assert.Equal(t, ptr.To[bool](true), scheduler.Spec.Migrate)
assert.Equal(t, GetDefaultSecurityContext(), scheduler.Spec.SecurityContext)
assert.Equal(t, GetDefaultPodSecurityContext(), scheduler.Spec.PodSecurityContext)
},
},
}

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
tt.input.Default()
tt.assert(t, tt.input)
})
}
}

0 comments on commit dbeadd5

Please sign in to comment.