mirror of
https://github.com/replicatedhq/troubleshoot.git
synced 2026-04-15 07:16:34 +00:00
130 lines
3.1 KiB
Go
130 lines
3.1 KiB
Go
package analyzer
|
|
|
|
import (
|
|
"testing"
|
|
|
|
troubleshootv1beta2 "github.com/replicatedhq/troubleshoot/pkg/apis/troubleshoot/v1beta2"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAnalyzeKernelConfigs(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
name string
|
|
selectedConfigs []string
|
|
outcomes []*troubleshootv1beta2.Outcome
|
|
results []*AnalyzeResult
|
|
expectErr bool
|
|
}{
|
|
{
|
|
name: "all pass",
|
|
selectedConfigs: []string{"CONFIG_CGROUP_FREEZER=y", "CONFIG_NETFILTER_XTABLES=m"},
|
|
outcomes: []*troubleshootv1beta2.Outcome{
|
|
{
|
|
Pass: &troubleshootv1beta2.SingleOutcome{
|
|
Message: "required kernel configs are available",
|
|
},
|
|
},
|
|
},
|
|
results: []*AnalyzeResult{
|
|
{
|
|
Title: "Kernel Configs",
|
|
IsPass: true,
|
|
Message: "required kernel configs are available",
|
|
},
|
|
},
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "has fail",
|
|
selectedConfigs: []string{"CONFIG_UTS_NS=y"},
|
|
outcomes: []*troubleshootv1beta2.Outcome{
|
|
{
|
|
Fail: &troubleshootv1beta2.SingleOutcome{
|
|
Message: "missing kernel config(s): {{ .ConfigsNotFound }}",
|
|
},
|
|
},
|
|
},
|
|
results: []*AnalyzeResult{
|
|
{
|
|
Title: "Kernel Configs",
|
|
IsFail: true,
|
|
Message: "missing kernel config(s): CONFIG_UTS_NS=y",
|
|
},
|
|
},
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "kernel config disabled",
|
|
selectedConfigs: []string{"CONFIG_CGROUP_FREEZER=n"},
|
|
outcomes: []*troubleshootv1beta2.Outcome{
|
|
{
|
|
Fail: &troubleshootv1beta2.SingleOutcome{
|
|
Message: "missing kernel config(s): {{ .ConfigsNotFound }}",
|
|
},
|
|
},
|
|
},
|
|
results: []*AnalyzeResult{
|
|
{
|
|
Title: "Kernel Configs",
|
|
IsFail: true,
|
|
Message: "missing kernel config(s): CONFIG_CGROUP_FREEZER=n",
|
|
},
|
|
},
|
|
expectErr: false,
|
|
},
|
|
{
|
|
name: "invalid kernel config",
|
|
selectedConfigs: []string{"foobar=n"},
|
|
expectErr: true,
|
|
},
|
|
{
|
|
name: "select multiple kernel config values",
|
|
selectedConfigs: []string{"CONFIG_BRIDGE=my"},
|
|
outcomes: []*troubleshootv1beta2.Outcome{
|
|
{
|
|
Pass: &troubleshootv1beta2.SingleOutcome{
|
|
Message: "required kernel configs are available",
|
|
},
|
|
},
|
|
},
|
|
results: []*AnalyzeResult{
|
|
{
|
|
Title: "Kernel Configs",
|
|
IsPass: true,
|
|
Message: "required kernel configs are available",
|
|
},
|
|
},
|
|
expectErr: false,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
mockKernelFile := func(_ string) ([]byte, error) {
|
|
return []byte(`{"CONFIG_CGROUP_FREEZER": "y", "CONFIG_NETFILTER_XTABLES": "m", "CONFIG_BRIDGE": "y"}`), nil
|
|
}
|
|
|
|
analyzer := AnalyzeHostKernelConfigs{
|
|
hostAnalyzer: &troubleshootv1beta2.KernelConfigsAnalyze{
|
|
AnalyzeMeta: troubleshootv1beta2.AnalyzeMeta{
|
|
CheckName: "Kernel Configs",
|
|
},
|
|
SelectedConfigs: tt.selectedConfigs,
|
|
Outcomes: tt.outcomes,
|
|
},
|
|
}
|
|
|
|
results, err := analyzer.Analyze(mockKernelFile, nil)
|
|
|
|
if tt.expectErr {
|
|
assert.Error(t, err)
|
|
} else {
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, tt.results, results)
|
|
}
|
|
})
|
|
}
|
|
}
|