Files
troubleshoot/pkg/analyze/replicaset_status_test.go
Dexter Yan 7e3a59cfc0 feat(analyze): add ExcludeFiles field to textAnazlye (#867)
* feat(analyze): add ExcludeFiles field to textAnazlye

* feat(analyze): fix test for getFiles

* feat(analyze): change function name to  excludeFilePaths

* feat(analyze): fix preflight test fail

* feat(analyze): add tests for excludeFiles

* feat(schemas): run make schemas

* feat(analyze): use getChildCollectedFileContents function prototype

* feat(analyze): reduce time complexity

* feat(longhorn): add getFileContents as getCollectedFileContents
2022-11-28 10:45:10 +13:00

160 lines
4.7 KiB
Go

package analyzer
import (
"testing"
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_analyzeReplicaSetStatus(t *testing.T) {
tests := []struct {
name string
analyzer troubleshootv1beta2.ReplicaSetStatus
expectResult []*AnalyzeResult
files map[string][]byte
}{
{
name: "fail because 0 ready",
analyzer: troubleshootv1beta2.ReplicaSetStatus{
Outcomes: []*troubleshootv1beta2.Outcome{
{
Pass: &troubleshootv1beta2.SingleOutcome{
When: "ready == 1",
Message: "pass",
},
},
{
Fail: &troubleshootv1beta2.SingleOutcome{
Message: "fail",
},
},
},
Namespace: "rook-ceph",
Name: "rook-ceph-mds-rook-shared-fs-b-7895f484f5",
},
expectResult: []*AnalyzeResult{
{
IsPass: false,
IsWarn: false,
IsFail: true,
Title: "rook-ceph-mds-rook-shared-fs-b-7895f484f5 Status",
Message: "fail",
IconKey: "kubernetes_deployment_status",
IconURI: "https://troubleshoot.sh/images/analyzer-icons/deployment-status.svg?w=17&h=17",
},
},
files: map[string][]byte{
"cluster-resources/replicasets/rook-ceph.json": []byte(rookCephReplicaSets),
"cluster-resources/replicasets/default.json": []byte(defaultReplicaSets),
},
},
{
name: "fail because < 2 ready",
analyzer: troubleshootv1beta2.ReplicaSetStatus{
Outcomes: []*troubleshootv1beta2.Outcome{
{
Fail: &troubleshootv1beta2.SingleOutcome{
When: "available < 2",
Message: "fail",
},
},
{
Pass: &troubleshootv1beta2.SingleOutcome{
Message: "pass",
},
},
},
Namespace: "rook-ceph",
Selector: []string{"app=csi-cephfsplugin-provisioner"},
},
expectResult: []*AnalyzeResult{
{
IsPass: false,
IsWarn: false,
IsFail: true,
Title: "csi-cephfsplugin-provisioner-56d4db5b99 Status",
Message: "fail",
IconKey: "kubernetes_deployment_status",
IconURI: "https://troubleshoot.sh/images/analyzer-icons/deployment-status.svg?w=17&h=17",
},
},
files: map[string][]byte{
"cluster-resources/replicasets/rook-ceph.json": []byte(rookCephReplicaSets),
"cluster-resources/replicasets/default.json": []byte(defaultReplicaSets),
},
},
{
name: "analyze all replicasets",
analyzer: troubleshootv1beta2.ReplicaSetStatus{},
expectResult: []*AnalyzeResult{
{
IsPass: false,
IsWarn: false,
IsFail: true,
Title: "rook-ceph/rook-ceph-mds-rook-shared-fs-b-7895f484f5 ReplicaSet Status",
Message: "The replicaset rook-ceph/rook-ceph-mds-rook-shared-fs-b-7895f484f5 is not ready",
IconKey: "kubernetes_deployment_status",
IconURI: "https://troubleshoot.sh/images/analyzer-icons/deployment-status.svg?w=17&h=17",
},
{
IsPass: false,
IsWarn: false,
IsFail: true,
Title: "default/kurl-proxy-kotsadm-cf695877c ReplicaSet Status",
Message: "The replicaset default/kurl-proxy-kotsadm-cf695877c is not ready",
IconKey: "kubernetes_deployment_status",
IconURI: "https://troubleshoot.sh/images/analyzer-icons/deployment-status.svg?w=17&h=17",
},
},
files: map[string][]byte{
"cluster-resources/replicasets/rook-ceph.json": []byte(rookCephReplicaSets),
"cluster-resources/replicasets/default.json": []byte(defaultReplicaSets),
},
},
{
name: "analyze all replicasets with namespaces",
analyzer: troubleshootv1beta2.ReplicaSetStatus{
Namespaces: []string{"default"},
},
expectResult: []*AnalyzeResult{
{
IsPass: false,
IsWarn: false,
IsFail: true,
Title: "default/kurl-proxy-kotsadm-cf695877c ReplicaSet Status",
Message: "The replicaset default/kurl-proxy-kotsadm-cf695877c is not ready",
IconKey: "kubernetes_deployment_status",
IconURI: "https://troubleshoot.sh/images/analyzer-icons/deployment-status.svg?w=17&h=17",
},
},
files: map[string][]byte{
"cluster-resources/replicasets/rook-ceph.json": []byte(rookCephReplicaSets),
"cluster-resources/replicasets/default.json": []byte(defaultReplicaSets),
},
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
req := require.New(t)
getFiles := func(n string, _ []string) (map[string][]byte, error) {
if file, ok := test.files[n]; ok {
return map[string][]byte{n: file}, nil
}
return test.files, nil
}
actual, err := analyzeReplicaSetStatus(&test.analyzer, getFiles)
req.NoError(err)
req.Equal(len(test.expectResult), len(actual))
for _, a := range actual {
assert.Contains(t, test.expectResult, a)
}
})
}
}