1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

fix(kubectl): rollout restart [r8s-322] (#729)

This commit is contained in:
Steven Kang 2025-05-13 11:35:44 +12:00 committed by GitHub
parent 1abdf42f99
commit 3b313b9308
8 changed files with 85 additions and 68 deletions

View file

@ -0,0 +1,53 @@
package libkubectl
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestResourcesToArgsHelper(t *testing.T) {
tests := []struct {
name string
resources []string
expectedArgs []string
}{
{
name: "empty list",
resources: []string{},
expectedArgs: []string{},
},
{
name: "single manifest file",
resources: []string{"manifest.yaml"},
expectedArgs: []string{"-f", "manifest.yaml"},
},
{
name: "multiple manifest files",
resources: []string{"manifest1.yaml", "manifest2.yaml"},
expectedArgs: []string{"-f", "manifest1.yaml", "-f", "manifest2.yaml"},
},
{
name: "manifests with whitespace",
resources: []string{" manifest1.yaml ", " manifest2.yaml"},
expectedArgs: []string{"-f", "manifest1.yaml", "-f", "manifest2.yaml"},
},
{
name: "kubernetes resource definitions",
resources: []string{"deployment/nginx", "service/web"},
expectedArgs: []string{"deployment/nginx", "service/web"},
},
{
name: "rollout restart",
resources: []string{"deployment/nginx", "service/web"},
expectedArgs: []string{"deployment/nginx", "service/web"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
args := resourcesToArgs(tt.resources)
assert.Equal(t, tt.expectedArgs, args)
})
}
}