-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathcomponent_test.go
More file actions
922 lines (781 loc) · 24.9 KB
/
Copy pathcomponent_test.go
File metadata and controls
922 lines (781 loc) · 24.9 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
package memory
import (
"context"
"errors"
"sync/atomic"
"testing"
"time"
"github.com/NVIDIA/go-nvml/pkg/nvml"
"github.com/NVIDIA/go-nvml/pkg/nvml/mock"
gopsutilmem "github.com/shirou/gopsutil/v4/mem"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
apiv1 "github.com/leptonai/gpud/api/v1"
"github.com/leptonai/gpud/components"
nvidianvml "github.com/leptonai/gpud/pkg/nvidia-query/nvml"
"github.com/leptonai/gpud/pkg/nvidia-query/nvml/device"
nvml_lib "github.com/leptonai/gpud/pkg/nvidia-query/nvml/lib"
"github.com/leptonai/gpud/pkg/nvidia-query/nvml/testutil"
nvmlerrors "github.com/leptonai/gpud/pkg/nvidia/errors"
nvidiaproduct "github.com/leptonai/gpud/pkg/nvidia/product"
)
// mockNvmlInstance implements the nvidianvml.Instance interface for testing
type mockNvmlInstance struct {
DevicesFunc func() map[string]device.Device
nvmlExists bool
}
func (m *mockNvmlInstance) Devices() map[string]device.Device {
if m.DevicesFunc != nil {
return m.DevicesFunc()
}
return nil
}
func (m *mockNvmlInstance) FabricManagerSupported() bool {
return true
}
func (m *mockNvmlInstance) FabricStateSupported() bool {
return false
}
func (m *mockNvmlInstance) GetMemoryErrorManagementCapabilities() nvidiaproduct.MemoryErrorManagementCapabilities {
return nvidiaproduct.MemoryErrorManagementCapabilities{}
}
func (m *mockNvmlInstance) ProductName() string {
return "NVIDIA Test GPU"
}
func (m *mockNvmlInstance) Architecture() string {
return ""
}
func (m *mockNvmlInstance) Brand() string {
return ""
}
func (m *mockNvmlInstance) DriverVersion() string {
return ""
}
func (m *mockNvmlInstance) DriverMajor() int {
return 0
}
func (m *mockNvmlInstance) CUDAVersion() string {
return ""
}
func (m *mockNvmlInstance) NVMLExists() bool {
return m.nvmlExists
}
func (m *mockNvmlInstance) Library() nvml_lib.Library {
return nil
}
func (m *mockNvmlInstance) Shutdown() error {
return nil
}
func (m *mockNvmlInstance) InitError() error {
return nil
}
// MockMemoryComponent creates a component with mocked functions for testing
func MockMemoryComponent(
ctx context.Context,
nvmlInstance nvidianvml.Instance,
getMemoryFunc func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error),
) components.Component {
cctx, cancel := context.WithCancel(ctx)
return &component{
ctx: cctx,
cancel: cancel,
getTimeNowFunc: func() time.Time {
return time.Now().UTC()
},
nvmlInstance: nvmlInstance,
getMemoryFunc: getMemoryFunc,
getVirtualMemoryFunc: gopsutilmem.VirtualMemoryWithContext,
}
}
func TestNew(t *testing.T) {
ctx := context.Background()
mockNVMLInstance := &mockNvmlInstance{}
// Create a GPUdInstance
gpudInstance := &components.GPUdInstance{
RootCtx: ctx,
NVMLInstance: mockNVMLInstance,
}
c, err := New(gpudInstance)
assert.NoError(t, err)
assert.NotNil(t, c, "New should return a non-nil component")
assert.Equal(t, Name, c.Name(), "Component name should match")
// Type assertion to access internal fields
tc, ok := c.(*component)
require.True(t, ok, "Component should be of type *component")
assert.NotNil(t, tc.ctx, "Context should be set")
assert.NotNil(t, tc.cancel, "Cancel function should be set")
assert.NotNil(t, tc.nvmlInstance, "nvmlInstance should be set")
assert.NotNil(t, tc.getMemoryFunc, "getMemoryFunc should be set")
assert.NotNil(t, tc.getVirtualMemoryFunc, "getVirtualMemoryFunc should be set")
}
func TestName(t *testing.T) {
ctx := context.Background()
c := MockMemoryComponent(ctx, nil, nil)
assert.Equal(t, Name, c.Name(), "Component name should match")
}
func TestTags(t *testing.T) {
ctx := context.Background()
c := MockMemoryComponent(ctx, nil, nil)
expectedTags := []string{
"accelerator",
"gpu",
"nvidia",
Name,
}
tags := c.Tags()
assert.Equal(t, expectedTags, tags, "Component tags should match expected values")
assert.Len(t, tags, 4, "Component should return exactly 4 tags")
}
func TestCheckOnce_Success(t *testing.T) {
ctx := context.Background()
uuid := "gpu-uuid-123"
mockDeviceObj := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid, nvml.SUCCESS
},
}
mockDev := testutil.NewMockDevice(mockDeviceObj, "test-arch", "test-brand", "test-cuda", "test-pci")
devs := map[string]device.Device{
uuid: mockDev,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return devs
},
nvmlExists: true,
}
memory := Memory{
UUID: uuid,
TotalBytes: 16 * 1024 * 1024 * 1024, // 16 GB
ReservedBytes: 1 * 1024 * 1024 * 1024, // 1 GB
UsedBytes: 8 * 1024 * 1024 * 1024, // 8 GB
FreeBytes: 7 * 1024 * 1024 * 1024, // 7 GB
// These humanized values are required
TotalHumanized: "16 GB",
ReservedHumanized: "1 GB",
UsedHumanized: "8 GB",
FreeHumanized: "7 GB",
// Important: This is required for GetUsedPercent to work
UsedPercent: "50.00",
Supported: true,
}
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
return memory, nil
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify the data was collected
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeHealthy, data.health, "data should be marked healthy")
assert.Equal(t, "all 1 GPU(s) were checked, no memory issue found", data.reason)
assert.Len(t, data.Memories, 1)
assert.Equal(t, memory, data.Memories[0])
}
func TestCheckOnce_MemoryError(t *testing.T) {
ctx := context.Background()
uuid := "gpu-uuid-123"
mockDeviceObj := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid, nvml.SUCCESS
},
}
mockDev := testutil.NewMockDevice(mockDeviceObj, "test-arch", "test-brand", "test-cuda", "test-pci")
devs := map[string]device.Device{
uuid: mockDev,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return devs
},
nvmlExists: true,
}
errExpected := errors.New("memory error")
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
return Memory{}, errExpected
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify error handling
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeUnhealthy, data.health, "data should be marked unhealthy")
assert.Equal(t, errExpected, data.err)
assert.Equal(t, "error getting memory", data.reason)
}
func TestCheckOnce_NoDevices(t *testing.T) {
ctx := context.Background()
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return map[string]device.Device{} // Empty map
},
nvmlExists: true,
}
component := MockMemoryComponent(ctx, mockNVMLInstance, nil).(*component)
result := component.Check()
// Verify handling of no devices
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeHealthy, data.health, "data should be marked healthy")
assert.Equal(t, "no memory data found", data.reason)
assert.Empty(t, data.Memories)
}
func TestCheckOnce_GetUsedPercentError(t *testing.T) {
ctx := context.Background()
uuid := "gpu-uuid-123"
mockDeviceObj := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid, nvml.SUCCESS
},
}
mockDev := testutil.NewMockDevice(mockDeviceObj, "test-arch", "test-brand", "test-cuda", "test-pci")
devs := map[string]device.Device{
uuid: mockDev,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return devs
},
nvmlExists: true,
}
// Create malformed memory data that will cause GetUsedPercent to fail
invalidMemory := Memory{
UUID: uuid,
TotalBytes: 16 * 1024 * 1024 * 1024,
UsedBytes: 8 * 1024 * 1024 * 1024,
FreeBytes: 7 * 1024 * 1024 * 1024,
TotalHumanized: "16 GB",
UsedHumanized: "8 GB",
FreeHumanized: "7 GB",
UsedPercent: "invalid", // Invalid format will cause ParseFloat to fail
Supported: true, // Mark as supported so it doesn't get skipped
}
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
return invalidMemory, nil
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify error handling for GetUsedPercent failure
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeUnhealthy, data.health, "data should be marked unhealthy")
assert.NotNil(t, data.err)
assert.Equal(t, "error getting used percent", data.reason)
}
func TestStates_WithData(t *testing.T) {
ctx := context.Background()
component := MockMemoryComponent(ctx, nil, nil).(*component)
// Set test data
component.lastMu.Lock()
component.lastCheckResult = &checkResult{
Memories: []Memory{
{
UUID: "gpu-uuid-123",
TotalBytes: 16 * 1024 * 1024 * 1024,
ReservedBytes: 1 * 1024 * 1024 * 1024,
UsedBytes: 8 * 1024 * 1024 * 1024,
FreeBytes: 7 * 1024 * 1024 * 1024,
TotalHumanized: "16 GB",
ReservedHumanized: "1 GB",
UsedHumanized: "8 GB",
FreeHumanized: "7 GB",
UsedPercent: "50.00",
},
},
health: apiv1.HealthStateTypeHealthy,
reason: "all 1 GPU(s) were checked, no memory issue found",
}
component.lastMu.Unlock()
// Get states
states := component.LastHealthStates()
assert.Len(t, states, 1)
state := states[0]
assert.Equal(t, Name, state.Name)
assert.Equal(t, apiv1.HealthStateTypeHealthy, state.Health)
assert.Equal(t, "all 1 GPU(s) were checked, no memory issue found", state.Reason)
assert.Contains(t, state.ExtraInfo["data"], "gpu-uuid-123")
}
func TestStates_WithError(t *testing.T) {
ctx := context.Background()
component := MockMemoryComponent(ctx, nil, nil).(*component)
// Set test data with error
component.lastMu.Lock()
component.lastCheckResult = &checkResult{
err: errors.New("test memory error"),
health: apiv1.HealthStateTypeUnhealthy,
reason: "error getting memory",
}
component.lastMu.Unlock()
// Get states
states := component.LastHealthStates()
assert.Len(t, states, 1)
state := states[0]
assert.Equal(t, Name, state.Name)
assert.Equal(t, apiv1.HealthStateTypeUnhealthy, state.Health)
assert.Equal(t, "error getting memory", state.Reason)
assert.Equal(t, "test memory error", state.Error)
}
func TestStates_NoData(t *testing.T) {
ctx := context.Background()
component := MockMemoryComponent(ctx, nil, nil).(*component)
// Don't set any data
// Get states
states := component.LastHealthStates()
assert.Len(t, states, 1)
state := states[0]
assert.Equal(t, Name, state.Name)
assert.Equal(t, apiv1.HealthStateTypeHealthy, state.Health)
assert.Equal(t, "no data yet", state.Reason)
}
func TestEvents(t *testing.T) {
ctx := context.Background()
component := MockMemoryComponent(ctx, nil, nil)
events, err := component.Events(ctx, time.Now())
assert.NoError(t, err)
assert.Empty(t, events)
}
func TestStart(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// Create mock functions that count calls
callCount := &atomic.Int32{}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
callCount.Add(1)
return map[string]device.Device{}
},
nvmlExists: true,
}
component := MockMemoryComponent(ctx, mockNVMLInstance, nil)
// Start should be non-blocking
err := component.Start()
assert.NoError(t, err)
// Give the goroutine time to execute Check at least once
time.Sleep(100 * time.Millisecond)
// Verify Check was called
assert.GreaterOrEqual(t, callCount.Load(), int32(1), "Check should have been called at least once")
}
func TestClose(t *testing.T) {
ctx := context.Background()
component := MockMemoryComponent(ctx, nil, nil).(*component)
err := component.Close()
assert.NoError(t, err)
// Check that context is canceled
select {
case <-component.ctx.Done():
// Context is properly canceled
default:
t.Fatal("component context was not canceled on Close")
}
}
func TestData_GetError(t *testing.T) {
tests := []struct {
name string
data *checkResult
expected string
}{
{
name: "nil data",
data: nil,
expected: "",
},
{
name: "with error",
data: &checkResult{
err: errors.New("test error"),
},
expected: "test error",
},
{
name: "no error",
data: &checkResult{
health: apiv1.HealthStateTypeHealthy,
reason: "all good",
},
expected: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.data.getError()
assert.Equal(t, tt.expected, got)
})
}
}
func TestData_String(t *testing.T) {
tests := []struct {
name string
data *checkResult
expected string
contains []string // For partial matching of table output
}{
{
name: "nil data",
data: nil,
expected: "",
},
{
name: "empty memories",
data: &checkResult{
Memories: []Memory{},
},
expected: "no data",
},
{
name: "with memory data",
data: &checkResult{
Memories: []Memory{
{
UUID: "gpu-uuid-123",
TotalBytes: 16 * 1024 * 1024 * 1024,
ReservedBytes: 1 * 1024 * 1024 * 1024,
UsedBytes: 8 * 1024 * 1024 * 1024,
FreeBytes: 7 * 1024 * 1024 * 1024,
TotalHumanized: "16 GB",
ReservedHumanized: "1 GB",
UsedHumanized: "8 GB",
FreeHumanized: "7 GB",
UsedPercent: "50.00",
},
},
},
contains: []string{
"GPU UUID",
"TOTAL",
"RESERVED",
"USED",
"FREE",
"USED %",
"UNIFIED",
"gpu-uuid-123",
"16 GB",
"1 GB",
"8 GB",
"7 GB",
"50.00",
"false",
},
},
{
name: "multiple memory entries",
data: &checkResult{
Memories: []Memory{
{
UUID: "gpu-uuid-123",
TotalBytes: 16 * 1024 * 1024 * 1024,
ReservedBytes: 1 * 1024 * 1024 * 1024,
UsedBytes: 8 * 1024 * 1024 * 1024,
FreeBytes: 7 * 1024 * 1024 * 1024,
TotalHumanized: "16 GB",
ReservedHumanized: "1 GB",
UsedHumanized: "8 GB",
FreeHumanized: "7 GB",
UsedPercent: "50.00",
},
{
UUID: "gpu-uuid-456",
TotalBytes: 32 * 1024 * 1024 * 1024,
ReservedBytes: 2 * 1024 * 1024 * 1024,
UsedBytes: 20 * 1024 * 1024 * 1024,
FreeBytes: 10 * 1024 * 1024 * 1024,
TotalHumanized: "32 GB",
ReservedHumanized: "2 GB",
UsedHumanized: "20 GB",
FreeHumanized: "10 GB",
UsedPercent: "62.50",
},
},
},
contains: []string{
"gpu-uuid-123",
"16 GB",
"gpu-uuid-456",
"32 GB",
"20 GB",
"62.50",
"false",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.data.String()
if tt.expected != "" {
assert.Equal(t, tt.expected, got)
}
for _, s := range tt.contains {
assert.Contains(t, got, s)
}
})
}
}
func TestData_Summary(t *testing.T) {
tests := []struct {
name string
data *checkResult
expected string
}{
{
name: "nil data",
data: nil,
expected: "",
},
{
name: "with reason",
data: &checkResult{
reason: "test reason",
},
expected: "test reason",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.data.Summary()
assert.Equal(t, tt.expected, got)
})
}
}
func TestData_HealthState(t *testing.T) {
tests := []struct {
name string
data *checkResult
expected apiv1.HealthStateType
}{
{
name: "nil data",
data: nil,
expected: "",
},
{
name: "healthy",
data: &checkResult{
health: apiv1.HealthStateTypeHealthy,
},
expected: apiv1.HealthStateTypeHealthy,
},
{
name: "unhealthy",
data: &checkResult{
health: apiv1.HealthStateTypeUnhealthy,
},
expected: apiv1.HealthStateTypeUnhealthy,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.data.HealthStateType()
assert.Equal(t, tt.expected, got)
})
}
}
func TestCheckOnce_NilNvmlInstance(t *testing.T) {
ctx := context.Background()
// Create a component with nil nvmlInstance
component := MockMemoryComponent(ctx, nil, nil).(*component)
result := component.Check()
// Verify data when nvmlInstance is nil
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeHealthy, data.health, "data should be marked healthy")
assert.Equal(t, "NVIDIA NVML instance is nil", data.reason)
}
func TestCheckOnce_NvmlNotExists(t *testing.T) {
ctx := context.Background()
// Create a mock NVML instance where NVMLExists returns false
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return map[string]device.Device{}
},
nvmlExists: false,
}
component := MockMemoryComponent(ctx, mockNVMLInstance, nil).(*component)
result := component.Check()
// Verify data when NVML doesn't exist
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeHealthy, data.health, "data should be marked healthy")
assert.Equal(t, "NVIDIA NVML library is not loaded", data.reason)
}
func TestCheck_GPULostError(t *testing.T) {
ctx := context.Background()
uuid := "gpu-uuid-123"
mockDeviceObj := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid, nvml.SUCCESS
},
}
mockDev := testutil.NewMockDevice(mockDeviceObj, "test-arch", "test-brand", "test-cuda", "test-pci")
devs := map[string]device.Device{
uuid: mockDev,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return devs
},
nvmlExists: true,
}
// Use nvmlerrors.ErrGPULost for the error
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
return Memory{}, nvmlerrors.ErrGPULost
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify error handling for GPU lost case
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeUnhealthy, data.health, "data should be marked unhealthy")
assert.True(t, errors.Is(data.err, nvmlerrors.ErrGPULost), "error should be nvmlerrors.ErrGPULost")
assert.Equal(t, nvmlerrors.ErrGPULost.Error(), data.reason)
// Verify suggested actions for GPU lost case
if assert.NotNil(t, data.suggestedActions) {
assert.Equal(t, nvmlerrors.ErrGPULost.Error(), data.suggestedActions.Description)
assert.Contains(t, data.suggestedActions.RepairActions, apiv1.RepairActionTypeRebootSystem)
}
// Verify suggested actions propagates to health state output
states := component.LastHealthStates()
require.Len(t, states, 1)
assert.NotNil(t, states[0].SuggestedActions)
assert.Contains(t, states[0].SuggestedActions.RepairActions, apiv1.RepairActionTypeRebootSystem)
}
func TestCheck_UnsupportedMemory(t *testing.T) {
ctx := context.Background()
uuid := "gpu-uuid-123"
mockDeviceObj := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid, nvml.SUCCESS
},
}
mockDev := testutil.NewMockDevice(mockDeviceObj, "test-arch", "test-brand", "test-cuda", "test-pci")
devs := map[string]device.Device{
uuid: mockDev,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return devs
},
nvmlExists: true,
}
// Return unsupported memory
unsupportedMemory := Memory{
UUID: uuid,
Supported: false,
}
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
return unsupportedMemory, nil
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify handling of unsupported memory
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeHealthy, data.health, "data should be marked healthy")
assert.Equal(t, "no memory data found", data.reason, "reason should indicate no memory data")
assert.Empty(t, data.Memories, "should have no memory data since device is unsupported")
}
func TestCheck_MixedSupportedUnsupportedDevices(t *testing.T) {
ctx := context.Background()
uuid1 := "gpu-uuid-supported"
uuid2 := "gpu-uuid-unsupported"
mockDeviceObj1 := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid1, nvml.SUCCESS
},
}
mockDev1 := testutil.NewMockDevice(mockDeviceObj1, "test-arch", "test-brand", "test-cuda", "test-pci")
mockDeviceObj2 := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) {
return uuid2, nvml.SUCCESS
},
}
mockDev2 := testutil.NewMockDevice(mockDeviceObj2, "test-arch", "test-brand", "test-cuda", "test-pci")
devs := map[string]device.Device{
uuid1: mockDev1,
uuid2: mockDev2,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return devs
},
nvmlExists: true,
}
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
if uuid == uuid1 {
// Return supported memory
return Memory{
UUID: uuid,
TotalBytes: 16 * 1024 * 1024 * 1024,
ReservedBytes: 1 * 1024 * 1024 * 1024,
UsedBytes: 8 * 1024 * 1024 * 1024,
FreeBytes: 7 * 1024 * 1024 * 1024,
TotalHumanized: "16 GB",
ReservedHumanized: "1 GB",
UsedHumanized: "8 GB",
FreeHumanized: "7 GB",
UsedPercent: "50.00",
Supported: true,
}, nil
} else {
// Return unsupported memory
return Memory{
UUID: uuid,
Supported: false,
}, nil
}
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify handling of mixed supported/unsupported devices
data, ok := result.(*checkResult)
require.True(t, ok, "result should be of type *checkResult")
require.NotNil(t, data, "data should not be nil")
assert.Equal(t, apiv1.HealthStateTypeHealthy, data.health, "data should be marked healthy")
assert.Equal(t, "all 2 GPU(s) were checked, no memory issue found", data.reason, "reason should indicate successful check of all devices")
assert.Len(t, data.Memories, 1, "should have memory data only for supported device")
assert.Equal(t, uuid1, data.Memories[0].UUID, "should contain only the supported device")
}
func TestCheck_GPURequiresResetSuggestedActions(t *testing.T) {
ctx := context.Background()
uuid := "gpu-uuid-123"
mockDeviceObj := &mock.Device{
GetUUIDFunc: func() (string, nvml.Return) { return uuid, nvml.SUCCESS },
}
mockDev := testutil.NewMockDevice(mockDeviceObj, "test-arch", "test-brand", "test-cuda", "test-pci")
mockDevices := map[string]device.Device{
uuid: mockDev,
}
mockNVMLInstance := &mockNvmlInstance{
DevicesFunc: func() map[string]device.Device {
return mockDevices
},
nvmlExists: true,
}
getMemoryFunc := func(uuid string, dev device.Device, productName string, getVirtualMemoryFunc GetVirtualMemoryFunc) (Memory, error) {
return Memory{}, nvmlerrors.ErrGPURequiresReset
}
component := MockMemoryComponent(ctx, mockNVMLInstance, getMemoryFunc).(*component)
result := component.Check()
// Verify check result carries suggested actions
data, ok := result.(*checkResult)
require.True(t, ok)
require.NotNil(t, data)
assert.Equal(t, apiv1.HealthStateTypeUnhealthy, data.health)
assert.True(t, errors.Is(data.err, nvmlerrors.ErrGPURequiresReset))
assert.Equal(t, "GPU requires reset", data.reason)
if assert.NotNil(t, data.suggestedActions) {
assert.Equal(t, "GPU requires reset", data.suggestedActions.Description)
assert.Contains(t, data.suggestedActions.RepairActions, apiv1.RepairActionTypeRebootSystem)
}
// Verify suggested actions propagates to health state output
states := component.LastHealthStates()
require.Len(t, states, 1)
assert.NotNil(t, states[0].SuggestedActions)
assert.Contains(t, states[0].SuggestedActions.RepairActions, apiv1.RepairActionTypeRebootSystem)
}