-
Notifications
You must be signed in to change notification settings - Fork 232
/
Copy pathopenshift_ai_operator_test.go
99 lines (94 loc) · 2.3 KB
/
openshift_ai_operator_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package openshiftai
import (
"context"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
. "github.com/onsi/gomega"
"github.com/openshift/assisted-service/internal/common"
"github.com/openshift/assisted-service/internal/operators/api"
"github.com/openshift/assisted-service/models"
"github.com/openshift/assisted-service/pkg/conversions"
)
var _ = Describe("Operator", func() {
var (
ctx context.Context
operator *operator
)
BeforeEach(func() {
ctx = context.Background()
operator = NewOpenShiftAIOperator(common.GetTestLog())
})
DescribeTable(
"Validate hosts",
func(host *models.Host, expected api.ValidationResult) {
cluster := &common.Cluster{
Cluster: models.Cluster{
Hosts: []*models.Host{
host,
},
},
}
actual, _ := operator.ValidateHost(ctx, cluster, host, nil)
Expect(actual).To(Equal(expected))
},
Entry(
"Host with no inventory",
&models.Host{},
api.ValidationResult{
Status: api.Pending,
ValidationId: operator.GetHostValidationID(),
Reasons: []string{
"Missing inventory in the host",
},
},
),
Entry(
"Worker host with insufficient memory",
&models.Host{
Role: models.HostRoleWorker,
Inventory: Inventory(&InventoryResources{
Cpus: 8,
Ram: 8 * conversions.GiB,
}),
},
api.ValidationResult{
Status: api.Failure,
ValidationId: operator.GetHostValidationID(),
Reasons: []string{
"Insufficient memory to deploy OpenShift AI, requires 32 GiB but found 8 GiB",
},
},
),
Entry(
"Worker host with insufficient CPU",
&models.Host{
Role: models.HostRoleWorker,
Inventory: Inventory(&InventoryResources{
Cpus: 4,
Ram: 32 * conversions.GiB,
}),
},
api.ValidationResult{
Status: api.Failure,
ValidationId: operator.GetHostValidationID(),
Reasons: []string{
"Insufficient CPU to deploy OpenShift AI, requires 8 CPU cores but found 4",
},
},
),
Entry(
"Worker host with sufficient resources",
&models.Host{
Role: models.HostRoleWorker,
Inventory: Inventory(&InventoryResources{
Cpus: 8,
Ram: 32 * conversions.GiB,
}),
},
api.ValidationResult{
Status: api.Success,
ValidationId: operator.GetHostValidationID(),
},
),
)
})