/
githubmirror
/
kubernetes
Обзор
Документация
Войти
/
githubmirror
/
kubernetes
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/controller/resourcepoolstatusrequest/controller_test.go
1 413 строк
49 KB
Noureldin
DRA resource pool status request (#140170)
22 июл 2026, 18:05
Не верифицирован
22 июл 2026, 18:05
8c02d31
Код
Авторство
О чём код?
/* Copyright The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package resourcepoolstatusrequest import ( "fmt" "maps" "strings" "testing" "time" resourcev1 "k8s.io/api/resource/v1" resourcev1alpha3 "k8s.io/api/resource/v1alpha3" "k8s.io/apimachinery/pkg/api/resource" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" utilfeature "k8s.io/apiserver/pkg/util/feature" "k8s.io/client-go/informers" "k8s.io/client-go/kubernetes/fake" featuregatetesting "k8s.io/component-base/featuregate/testing" "k8s.io/klog/v2/ktesting" "k8s.io/kubernetes/pkg/features" "k8s.io/utils/ptr" ) func TestCalculatePoolStatus(t *testing.T) { testCases := []struct { name string request *resourcev1alpha3.ResourcePoolStatusRequest slices []*resourcev1.ResourceSlice claims []*resourcev1.ResourceClaim expectedPools int expectedTotal int32 expectedAlloc int32 expectedPoolCount int32 // expected PoolCount value (total matching pools before limit) expectedTruncated bool // true when len(Pools) < PoolCount checkNodeName bool // when true, verify first pool's NodeName matches expectedNodeName expectedNodeName *string // expected NodeName for the first pool (nil means no NodeName) checkIncomplete bool // when true, verify incomplete pool behavior expectedIncomplete int // number of pools expected to have ValidationError set }{ { name: "single-pool-no-allocations", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 4, expectedAlloc: 0, }, { name: "single-pool-with-allocations", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), }, claims: []*resourcev1.ResourceClaim{ makeAllocatedClaim("claim-1", "default", "test.example.com", "pool-1", "device-0"), makeAllocatedClaim("claim-2", "default", "test.example.com", "pool-1", "device-1"), }, expectedPools: 1, expectedTotal: 4, expectedAlloc: 2, }, { name: "multiple-pools", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "test.example.com", "pool-2", "node-2", 8), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 2, expectedTotal: 12, expectedAlloc: 0, }, { name: "filter-by-driver", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "other.example.com", "pool-2", "node-2", 8), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 4, expectedAlloc: 0, }, { name: "filter-by-pool-name", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", PoolName: new("pool-1"), }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "test.example.com", "pool-2", "node-2", 8), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 4, expectedAlloc: 0, }, { name: "multiple-slices-same-pool", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "test.example.com", "pool-1", "node-1", 4), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 8, expectedAlloc: 0, }, { name: "limit-pools", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", Limit: new(int32(1)), }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "test.example.com", "pool-2", "node-2", 8), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedPoolCount: 2, expectedTruncated: true, }, { name: "no-matching-pools", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "nonexistent.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 0, expectedTotal: 0, expectedAlloc: 0, }, { name: "older-generation-slices-ignored", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ // Old generation slice (should be ignored) makeSliceWithGeneration("slice-old", "test.example.com", "pool-1", "node-1", 8, 1), // New generation slices (should be counted) makeSliceWithGeneration("slice-new-1", "test.example.com", "pool-1", "node-1", 4, 2), makeSliceWithGeneration("slice-new-2", "test.example.com", "pool-1", "node-1", 4, 2), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 8, // 4+4 from gen 2 only, not 8 from gen 1 expectedAlloc: 0, }, { name: "incomplete-pool-has-validation-error", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ // Pool expects 5 slices but only 3 are published makeSliceWithExpectedCount("slice-1", "test.example.com", "pool-1", "node-1", 4, 1, 5), makeSliceWithExpectedCount("slice-2", "test.example.com", "pool-1", "node-1", 4, 1, 5), makeSliceWithExpectedCount("slice-3", "test.example.com", "pool-1", "node-1", 4, 1, 5), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, checkIncomplete: true, expectedIncomplete: 1, }, { name: "mix-of-complete-and-incomplete-pools", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ // pool-1: complete (1/1 slices) makeSliceWithExpectedCount("slice-1", "test.example.com", "pool-1", "node-1", 4, 1, 1), // pool-2: incomplete (2/3 slices) makeSliceWithExpectedCount("slice-2a", "test.example.com", "pool-2", "node-2", 4, 1, 3), makeSliceWithExpectedCount("slice-2b", "test.example.com", "pool-2", "node-2", 4, 1, 3), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 2, expectedTotal: 4, // only pool-1 (complete) contributes to total expectedAlloc: 0, checkIncomplete: true, expectedIncomplete: 1, }, { name: "same-node-pool-sets-nodename", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "test.example.com", "pool-1", "node-1", 4), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 8, expectedAlloc: 0, checkNodeName: true, expectedNodeName: new("node-1"), }, { name: "mixed-node-pool-clears-nodename", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4), makeSlice("slice-2", "test.example.com", "pool-1", "node-2", 4), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 8, expectedAlloc: 0, checkNodeName: true, expectedNodeName: nil, }, { name: "nil-nodename-slices-no-nodename", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ makeSliceWithoutNode("slice-1", "test.example.com", "pool-1", 4), makeSliceWithoutNode("slice-2", "test.example.com", "pool-1", 4), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 8, expectedAlloc: 0, checkNodeName: true, expectedNodeName: nil, }, { name: "all-pools-complete-no-validation-errors", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, }, slices: []*resourcev1.ResourceSlice{ // pool-1: complete (2/2 slices) makeSliceWithExpectedCount("slice-1a", "test.example.com", "pool-1", "node-1", 4, 1, 2), makeSliceWithExpectedCount("slice-1b", "test.example.com", "pool-1", "node-1", 4, 1, 2), }, claims: []*resourcev1.ResourceClaim{}, expectedPools: 1, expectedTotal: 8, expectedAlloc: 0, checkIncomplete: true, expectedIncomplete: 0, }, } for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { _, ctx := ktesting.NewTestContext(t) // Create fake client and informers fakeClient := fake.NewClientset() informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) // Create controller controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } // Add slices to the informer store for _, slice := range tc.slices { err := informerFactory.Resource().V1().ResourceSlices().Informer().GetStore().Add(slice) if err != nil { t.Fatalf("Failed to add slice to informer: %v", err) } } // Add claims to the informer store for _, claim := range tc.claims { err := informerFactory.Resource().V1().ResourceClaims().Informer().GetStore().Add(claim) if err != nil { t.Fatalf("Failed to add claim to informer: %v", err) } } // Calculate pool status (reads directly from listers) status := controller.calculatePoolStatus(ctx, tc.request) // Verify pool count if len(status.Pools) != tc.expectedPools { t.Errorf("Expected %d pools, got %d", tc.expectedPools, len(status.Pools)) } // Verify PoolCount field if tc.expectedPoolCount > 0 { if status.PoolCount == nil { t.Errorf("Expected PoolCount to be %d, got nil", tc.expectedPoolCount) } else if *status.PoolCount != tc.expectedPoolCount { t.Errorf("Expected PoolCount %d, got %d", tc.expectedPoolCount, *status.PoolCount) } } // Verify truncation: len(Pools) < PoolCount means truncated if tc.expectedTruncated { if status.PoolCount == nil || int32(len(status.Pools)) >= *status.PoolCount { t.Errorf("Expected truncation (len(Pools)=%d < PoolCount), but PoolCount=%v", len(status.Pools), status.PoolCount) } } // Count device totals from complete pools only (those without ValidationError) if tc.expectedPools > 0 && !tc.expectedTruncated { var totalDevices, allocatedDevices int32 for _, pool := range status.Pools { if pool.TotalDevices != nil { totalDevices += *pool.TotalDevices } if pool.AllocatedDevices != nil { allocatedDevices += *pool.AllocatedDevices } } if totalDevices != tc.expectedTotal { t.Errorf("Expected total devices %d, got %d", tc.expectedTotal, totalDevices) } if allocatedDevices != tc.expectedAlloc { t.Errorf("Expected allocated devices %d, got %d", tc.expectedAlloc, allocatedDevices) } } // Verify NodeName when test specifies expected value if tc.checkNodeName && len(status.Pools) == 1 { pool := status.Pools[0] if tc.expectedNodeName != nil { if pool.NodeName == nil { t.Errorf("Expected NodeName %q, got nil", *tc.expectedNodeName) } else if *pool.NodeName != *tc.expectedNodeName { t.Errorf("Expected NodeName %q, got %q", *tc.expectedNodeName, *pool.NodeName) } } else if pool.NodeName != nil { t.Errorf("Expected NodeName to be nil, got %q", *pool.NodeName) } } // Verify incomplete pool counts (pools with ValidationError set) if tc.checkIncomplete { incompleteCount := 0 for _, pool := range status.Pools { if pool.ValidationError != nil { incompleteCount++ // Incomplete pools should have nil device counts and nil ResourceSliceCount if pool.TotalDevices != nil { t.Errorf("Incomplete pool %s/%s should have nil TotalDevices, got %d", pool.Driver, pool.PoolName, *pool.TotalDevices) } if pool.AllocatedDevices != nil { t.Errorf("Incomplete pool %s/%s should have nil AllocatedDevices, got %d", pool.Driver, pool.PoolName, *pool.AllocatedDevices) } if pool.ResourceSliceCount != nil { t.Errorf("Incomplete pool %s/%s should have nil ResourceSliceCount, got %d", pool.Driver, pool.PoolName, *pool.ResourceSliceCount) } } } if incompleteCount != tc.expectedIncomplete { t.Errorf("Expected %d incomplete pools (with ValidationError), got %d", tc.expectedIncomplete, incompleteCount) } } // Verify conditions are set if len(status.Conditions) == 0 { t.Error("Expected Conditions to be set") } }) } } func TestSyncRequest(t *testing.T) { _, ctx := ktesting.NewTestContext(t) // Create fake client and informers request := &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, } fakeClient := fake.NewClientset(request) informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) // Create controller controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } // Add request to informer err = informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests().Informer().GetStore().Add(request) if err != nil { t.Fatalf("Failed to add request to informer: %v", err) } // Add a slice slice := makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 4) err = informerFactory.Resource().V1().ResourceSlices().Informer().GetStore().Add(slice) if err != nil { t.Fatalf("Failed to add slice to informer: %v", err) } // Sync the request err = controller.syncRequest(ctx, "test-request") if err != nil { t.Fatalf("syncRequest failed: %v", err) } // Verify the status was updated (fake client should have received UpdateStatus call) actions := fakeClient.Actions() var foundUpdate bool for _, action := range actions { if action.GetVerb() == "update" && action.GetSubresource() == "status" { foundUpdate = true break } } if !foundUpdate { t.Error("Expected status update action, but none found") } } func TestSyncRequestRequeuesIncompletePool(t *testing.T) { _, ctx := ktesting.NewTestContext(t) request := &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, } fakeClient := fake.NewClientset(request) informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } // Add request to informer err = informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests().Informer().GetStore().Add(request) if err != nil { t.Fatalf("Failed to add request to informer: %v", err) } // Add an incomplete pool (expects 3 slices, only 1 published) slice := makeSliceWithExpectedCount("slice-1", "test.example.com", "pool-1", "node-1", 4, 1, 3) err = informerFactory.Resource().V1().ResourceSlices().Informer().GetStore().Add(slice) if err != nil { t.Fatalf("Failed to add slice to informer: %v", err) } // syncRequest should always return an error for incomplete pools, // letting processNextWorkItem handle retry counting and drop logic. err = controller.syncRequest(ctx, "test-request") if err == nil { t.Fatal("Expected syncRequest to return error for incomplete pool requeue, got nil") } // Verify no status update was made for _, action := range fakeClient.Actions() { if action.GetVerb() == "update" && action.GetSubresource() == "status" { t.Error("Should not update status when requeueing for incomplete pools") } } // Even after retries are exhausted, syncRequest still returns an error; // it is processNextWorkItem that decides to drop the key. for range maxRetries { controller.workqueue.AddRateLimited("test-request") key, _ := controller.workqueue.Get() controller.workqueue.Done(key) } fakeClient.ClearActions() err = controller.syncRequest(ctx, "test-request") if err == nil { t.Fatal("Expected syncRequest to still return error for incomplete pools after retries exhausted") } } func TestSyncRequestWritesStructuralViewError(t *testing.T) { _, ctx := ktesting.NewTestContext(t) request := &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, } fakeClient := fake.NewClientset(request) informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } if err := informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests().Informer().GetStore().Add(request); err != nil { t.Fatalf("Failed to add request to informer: %v", err) } // A complete pool (1/1 slices) with a permanent structural view error: it // declares a partitionTypeAttribute but publishes no sharedCounters. slice := makeSlice("slice-1", "test.example.com", "pool-1", "node-1", 2) attr := resourcev1.FullyQualifiedName("test.example.com/profile") slice.Spec.PartitionTypeAttribute = &attr if err := informerFactory.Resource().V1().ResourceSlices().Informer().GetStore().Add(slice); err != nil { t.Fatalf("Failed to add slice to informer: %v", err) } // Structural errors are permanent: syncRequest must not requeue, and must // write the status so the error reaches the user. if err := controller.syncRequest(ctx, "test-request"); err != nil { t.Fatalf("syncRequest requeued on a permanent structural error: %v", err) } updated, err := fakeClient.ResourceV1alpha3().ResourcePoolStatusRequests().Get(ctx, "test-request", metav1.GetOptions{}) if err != nil { t.Fatalf("Failed to get request: %v", err) } if updated.Status == nil { t.Fatal("Expected status to be written for a structural view error, got nil") } if len(updated.Status.Pools) != 1 { t.Fatalf("Expected 1 pool, got %d", len(updated.Status.Pools)) } ve := updated.Status.Pools[0].ValidationError if ve == nil { t.Fatal("Expected pool ValidationError to be set") } if !strings.HasPrefix(*ve, prefixPartitionTypeMissing) { t.Errorf("Expected validationError with prefix %q, got %q", prefixPartitionTypeMissing, *ve) } } func TestSkipProcessedRequest(t *testing.T) { _, ctx := ktesting.NewTestContext(t) now := metav1.Now() // Create a request that's already been processed (Status is non-nil with conditions) request := &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, Status: &resourcev1alpha3.ResourcePoolStatusRequestStatus{ PoolCount: new(int32(0)), Conditions: []metav1.Condition{ { Type: resourcev1alpha3.ResourcePoolStatusRequestConditionComplete, Status: metav1.ConditionTrue, LastTransitionTime: now, Reason: "CalculationComplete", Message: "Calculated status for 0 pools", }, }, }, } fakeClient := fake.NewClientset(request) informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } err = informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests().Informer().GetStore().Add(request) if err != nil { t.Fatalf("Failed to add request to informer: %v", err) } // Sync should skip the already-processed request err = controller.syncRequest(ctx, "test-request") if err != nil { t.Fatalf("syncRequest failed: %v", err) } // Verify no update was made actions := fakeClient.Actions() for _, action := range actions { if action.GetVerb() == "update" && action.GetSubresource() == "status" { t.Error("Should not update status for already-processed request") } } } // Helper functions func makeSlice(name, driver, pool, node string, deviceCount int) *resourcev1.ResourceSlice { return makeSliceWithGenerationAndCount(name, driver, pool, node, deviceCount, 1, 1) } func makeSliceWithExpectedCount(name, driver, pool, node string, deviceCount int, generation int64, resourceSliceCount int64) *resourcev1.ResourceSlice { return makeSliceWithGenerationAndCount(name, driver, pool, node, deviceCount, generation, resourceSliceCount) } func makeSliceWithGeneration(name, driver, pool, node string, deviceCount int, generation int64) *resourcev1.ResourceSlice { return makeSliceWithGenerationAndCount(name, driver, pool, node, deviceCount, generation, 1) } func makeSliceWithGenerationAndCount(name, driver, pool, node string, deviceCount int, generation int64, resourceSliceCount int64) *resourcev1.ResourceSlice { devices := make([]resourcev1.Device, deviceCount) for i := range deviceCount { devices[i] = resourcev1.Device{ Name: fmt.Sprintf("device-%d", i), } } return &resourcev1.ResourceSlice{ ObjectMeta: metav1.ObjectMeta{ Name: name, }, Spec: resourcev1.ResourceSliceSpec{ Driver: driver, NodeName: &node, Pool: resourcev1.ResourcePool{ Name: pool, Generation: generation, ResourceSliceCount: resourceSliceCount, }, Devices: devices, }, } } func makeAllocatedClaim(name, namespace, driver, pool, device string) *resourcev1.ResourceClaim { return &resourcev1.ResourceClaim{ ObjectMeta: metav1.ObjectMeta{ Name: name, Namespace: namespace, }, Spec: resourcev1.ResourceClaimSpec{}, Status: resourcev1.ResourceClaimStatus{ Allocation: &resourcev1.AllocationResult{ Devices: resourcev1.DeviceAllocationResult{ Results: []resourcev1.DeviceRequestAllocationResult{ { Driver: driver, Pool: pool, Device: device, }, }, }, }, }, } } func makeAdminAccessClaim(name, namespace, driver, pool, device string) *resourcev1.ResourceClaim { claim := makeAllocatedClaim(name, namespace, driver, pool, device) adminAccess := true claim.Status.Allocation.Devices.Results[0].AdminAccess = &adminAccess return claim } // makeSliceWithTaintedDevices taints the first taintedCount devices with effect. func makeSliceWithTaintedDevices(name, driver, pool, node string, deviceCount, taintedCount int, effect resourcev1.DeviceTaintEffect) *resourcev1.ResourceSlice { slice := makeSlice(name, driver, pool, node, deviceCount) for i := 0; i < taintedCount && i < deviceCount; i++ { slice.Spec.Devices[i].Taints = []resourcev1.DeviceTaint{{ Key: "example.com/maintenance", Effect: effect, }} } return slice } func makeRequest(driver string) *resourcev1alpha3.ResourcePoolStatusRequest { return &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{Name: "test-request"}, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{Driver: driver}, } } // runCalculatePoolStatus seeds the informer stores and runs the computation. func runCalculatePoolStatus(t *testing.T, request *resourcev1alpha3.ResourcePoolStatusRequest, slices []*resourcev1.ResourceSlice, claims []*resourcev1.ResourceClaim, rules ...*resourcev1.DeviceTaintRule) resourcev1alpha3.ResourcePoolStatusRequestStatus { t.Helper() _, ctx := ktesting.NewTestContext(t) fakeClient := fake.NewClientset() informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } for _, slice := range slices { if err := informerFactory.Resource().V1().ResourceSlices().Informer().GetStore().Add(slice); err != nil { t.Fatalf("Failed to add slice: %v", err) } } for _, claim := range claims { if err := informerFactory.Resource().V1().ResourceClaims().Informer().GetStore().Add(claim); err != nil { t.Fatalf("Failed to add claim: %v", err) } } for _, rule := range rules { if err := informerFactory.Resource().V1().DeviceTaintRules().Informer().GetStore().Add(rule); err != nil { t.Fatalf("Failed to add taint rule: %v", err) } } return controller.calculatePoolStatus(ctx, request) } // makeDeviceTaintRule taints the named device in a pool via an external rule. func makeDeviceTaintRule(name, driver, pool, device string, effect resourcev1.DeviceTaintEffect) *resourcev1.DeviceTaintRule { return &resourcev1.DeviceTaintRule{ ObjectMeta: metav1.ObjectMeta{Name: name}, Spec: resourcev1.DeviceTaintRuleSpec{ DeviceSelector: &resourcev1.DeviceTaintSelector{ Driver: &driver, Pool: &pool, Device: &device, }, Taint: resourcev1.DeviceTaint{ Key: "example.com/maintenance", Effect: effect, }, }, } } func requireSinglePool(t *testing.T, status resourcev1alpha3.ResourcePoolStatusRequestStatus) resourcev1alpha3.PoolStatus { t.Helper() if len(status.Pools) != 1 { t.Fatalf("expected 1 pool, got %d", len(status.Pools)) } return status.Pools[0] } // derefInt32 returns -1 for nil so an unexpectedly unset count fails loudly. func derefInt32(p *int32) int32 { if p == nil { return -1 } return *p } // Device tallies: repeated claims, AdminAccess observers, taints and taint rules. func TestCalculatePoolStatus_DeviceCounts(t *testing.T) { driver := "test.example.com" plainSlices := []*resourcev1.ResourceSlice{makeSlice("slice-1", driver, "pool-1", "node-1", 4)} taintedSlices := func(effect resourcev1.DeviceTaintEffect) []*resourcev1.ResourceSlice { return []*resourcev1.ResourceSlice{makeSliceWithTaintedDevices("slice-1", driver, "pool-1", "node-1", 5, 2, effect)} } taintRule := makeDeviceTaintRule("rule-1", driver, "pool-1", "device-0", resourcev1.DeviceTaintEffectNoSchedule) testCases := map[string]struct { slices []*resourcev1.ResourceSlice claims []*resourcev1.ResourceClaim rules []*resourcev1.DeviceTaintRule enableTaintRules bool wantTotal int32 wantAllocated int32 wantAvailable int32 wantUnavailable int32 }{ // Three claims reference the same physical device; it must count once. "repeated claims on one device count once": { slices: plainSlices, claims: []*resourcev1.ResourceClaim{ makeAllocatedClaim("claim-1", "default", driver, "pool-1", "device-0"), makeAllocatedClaim("claim-2", "default", driver, "pool-1", "device-0"), makeAllocatedClaim("claim-3", "default", driver, "pool-1", "device-0"), }, wantTotal: 4, wantAllocated: 1, wantAvailable: 3, }, // AdminAccess allocations are observers and must not move any tally. "adminAccess claim is not an allocation": { slices: plainSlices, claims: []*resourcev1.ResourceClaim{ makeAllocatedClaim("claim-1", "default", driver, "pool-1", "device-0"), makeAdminAccessClaim("admin-1", "default", driver, "pool-1", "device-1"), }, wantTotal: 4, wantAllocated: 1, wantAvailable: 3, }, "noSchedule taint is unavailable": { slices: taintedSlices(resourcev1.DeviceTaintEffectNoSchedule), wantTotal: 5, wantAvailable: 3, wantUnavailable: 2, }, "noExecute taint is unavailable": { slices: taintedSlices(resourcev1.DeviceTaintEffectNoExecute), wantTotal: 5, wantAvailable: 3, wantUnavailable: 2, }, // A None-effect taint does not make a device unavailable; it counts the // same as an untainted device. Unknown effects are treated like None. "none taint is available": { slices: taintedSlices(resourcev1.DeviceTaintEffectNone), wantTotal: 5, wantAvailable: 5, wantUnavailable: 0, }, // A matching DeviceTaintRule applies only when its gate is enabled. "taint rule applies when gate is enabled": { slices: plainSlices, rules: []*resourcev1.DeviceTaintRule{taintRule}, enableTaintRules: true, wantTotal: 4, wantAvailable: 3, wantUnavailable: 1, }, "taint rule ignored when gate is disabled": { slices: plainSlices, rules: []*resourcev1.DeviceTaintRule{taintRule}, wantTotal: 4, wantAvailable: 4, wantUnavailable: 0, }, } for name, tc := range testCases { t.Run(name, func(t *testing.T) { featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.DRADeviceTaintRules, tc.enableTaintRules) pool := requireSinglePool(t, runCalculatePoolStatus(t, makeRequest(driver), tc.slices, tc.claims, tc.rules...)) if got := derefInt32(pool.TotalDevices); got != tc.wantTotal { t.Errorf("TotalDevices = %d, want %d", got, tc.wantTotal) } if got := derefInt32(pool.AllocatedDevices); got != tc.wantAllocated { t.Errorf("AllocatedDevices = %d, want %d", got, tc.wantAllocated) } if got := derefInt32(pool.AvailableDevices); got != tc.wantAvailable { t.Errorf("AvailableDevices = %d, want %d", got, tc.wantAvailable) } if got := derefInt32(pool.UnavailableDevices); got != tc.wantUnavailable { t.Errorf("UnavailableDevices = %d, want %d", got, tc.wantUnavailable) } }) } } func TestIsOlderThan(t *testing.T) { testCases := []struct { name string time time.Time duration time.Duration expected bool }{ { name: "zero-time-is-not-older", time: time.Time{}, duration: time.Hour, expected: false, }, { name: "recent-time-is-not-older", time: time.Now().Add(-30 * time.Minute), duration: time.Hour, expected: false, }, { name: "old-time-is-older", time: time.Now().Add(-2 * time.Hour), duration: time.Hour, expected: true, }, { name: "just-under-boundary-is-not-older", time: time.Now().Add(-time.Hour + time.Minute), duration: time.Hour, expected: false, }, } for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { result := isOlderThan(tc.time, tc.duration) if result != tc.expected { t.Errorf("isOlderThan(%v, %v) = %v, expected %v", tc.time, tc.duration, result, tc.expected) } }) } } func TestShouldDeleteRequest(t *testing.T) { _, ctx := ktesting.NewTestContext(t) fakeClient := fake.NewClientset() informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } testCases := []struct { name string request *resourcev1alpha3.ResourcePoolStatusRequest expectedDelete bool }{ { name: "completed-request-not-expired", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{ Name: "test-request", CreationTimestamp: metav1.Now(), }, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, Status: &resourcev1alpha3.ResourcePoolStatusRequestStatus{ PoolCount: new(int32(0)), Conditions: []metav1.Condition{ { Type: resourcev1alpha3.ResourcePoolStatusRequestConditionComplete, Status: metav1.ConditionTrue, LastTransitionTime: metav1.Now(), Reason: "CalculationComplete", Message: "Calculated status for 0 pools", }, }, }, }, expectedDelete: false, }, { name: "completed-request-expired", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{ Name: "test-request", CreationTimestamp: metav1.NewTime(time.Now().Add(-2 * time.Hour)), }, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, Status: &resourcev1alpha3.ResourcePoolStatusRequestStatus{ PoolCount: new(int32(0)), Conditions: []metav1.Condition{ { Type: resourcev1alpha3.ResourcePoolStatusRequestConditionComplete, Status: metav1.ConditionTrue, LastTransitionTime: metav1.NewTime(time.Now().Add(-2 * time.Hour)), Reason: "CalculationComplete", Message: "Calculated status for 0 pools", }, }, }, }, expectedDelete: true, }, { name: "pending-request-not-expired", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{ Name: "test-request", CreationTimestamp: metav1.Now(), }, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, // No status - request is pending }, expectedDelete: false, }, { name: "pending-request-expired", request: &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{ Name: "test-request", CreationTimestamp: metav1.NewTime(time.Now().Add(-25 * time.Hour)), }, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, // No status - pending request expired }, expectedDelete: true, }, } for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { result := controller.shouldDeleteRequest(tc.request) if result != tc.expectedDelete { t.Errorf("shouldDeleteRequest() = %v, expected %v", result, tc.expectedDelete) } }) } } func TestCleanupExpiredRequests(t *testing.T) { _, ctx := ktesting.NewTestContext(t) // Create requests: one expired, one not expired expiredRequest := &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{ Name: "expired-request", CreationTimestamp: metav1.NewTime(time.Now().Add(-2 * time.Hour)), }, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, Status: &resourcev1alpha3.ResourcePoolStatusRequestStatus{ PoolCount: new(int32(0)), Conditions: []metav1.Condition{ { Type: resourcev1alpha3.ResourcePoolStatusRequestConditionComplete, Status: metav1.ConditionTrue, LastTransitionTime: metav1.NewTime(time.Now().Add(-2 * time.Hour)), Reason: "CalculationComplete", Message: "Calculated status for 0 pools", }, }, }, } activeRequest := &resourcev1alpha3.ResourcePoolStatusRequest{ ObjectMeta: metav1.ObjectMeta{ Name: "active-request", CreationTimestamp: metav1.Now(), }, Spec: resourcev1alpha3.ResourcePoolStatusRequestSpec{ Driver: "test.example.com", }, Status: &resourcev1alpha3.ResourcePoolStatusRequestStatus{ PoolCount: new(int32(0)), Conditions: []metav1.Condition{ { Type: resourcev1alpha3.ResourcePoolStatusRequestConditionComplete, Status: metav1.ConditionTrue, LastTransitionTime: metav1.Now(), Reason: "CalculationComplete", Message: "Calculated status for 0 pools", }, }, }, } fakeClient := fake.NewClientset(expiredRequest, activeRequest) informerFactory := informers.NewSharedInformerFactory(fakeClient, 0) controller, err := NewController(ctx, fakeClient, informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests(), informerFactory.Resource().V1().ResourceSlices(), informerFactory.Resource().V1().ResourceClaims(), informerFactory.Resource().V1().DeviceTaintRules(), ) if err != nil { t.Fatalf("Failed to create controller: %v", err) } // Add requests to informer store err = informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests().Informer().GetStore().Add(expiredRequest) if err != nil { t.Fatalf("Failed to add expired request to informer: %v", err) } err = informerFactory.Resource().V1alpha3().ResourcePoolStatusRequests().Informer().GetStore().Add(activeRequest) if err != nil { t.Fatalf("Failed to add active request to informer: %v", err) } // Run cleanup controller.cleanupExpiredRequests(ctx) // Verify that delete was called for expired request actions := fakeClient.Actions() var deletedExpired, deletedActive bool for _, action := range actions { if action.GetVerb() == "delete" { deleteAction, ok := action.(interface{ GetName() string }) if ok { if deleteAction.GetName() == "expired-request" { deletedExpired = true } if deleteAction.GetName() == "active-request" { deletedActive = true } } } } if !deletedExpired { t.Error("Expected expired-request to be deleted") } if deletedActive { t.Error("Did not expect active-request to be deleted") } } func makeSliceWithoutNode(name, driver, pool string, deviceCount int) *resourcev1.ResourceSlice { devices := make([]resourcev1.Device, deviceCount) for i := range deviceCount { devices[i] = resourcev1.Device{ Name: fmt.Sprintf("device-%d", i), } } return &resourcev1.ResourceSlice{ ObjectMeta: metav1.ObjectMeta{ Name: name, }, Spec: resourcev1.ResourceSliceSpec{ Driver: driver, Pool: resourcev1.ResourcePool{ Name: pool, Generation: 1, ResourceSliceCount: 1, }, Devices: devices, }, } } // new is a generic helper to create a pointer to a value. func new[T any](v T) *T { return &v } // makePartitionCounterSlice is the counter-only slice of a partitionable pool: // it publishes a shared counter set and declares the pool's partition attribute. func makePartitionCounterSlice(name, driver, pool, node string, sliceCount int64) *resourcev1.ResourceSlice { s := makeSliceWithGenerationAndCount(name, driver, pool, node, 0, 1, sliceCount) s.Spec.Devices = nil s.Spec.SharedCounters = []resourcev1.CounterSet{counterSet("gpu-0", map[string]string{"memory": "80Gi"})} s.Spec.PartitionTypeAttribute = ptr.To(resourcev1.FullyQualifiedName(driver + "/profile")) return s } // makePartitionDeviceSlice is the device-bearing slice of a partitionable pool: // one Full (80Gi) and two Half (40Gi) partitions drawing from the sibling's // counter set. func makePartitionDeviceSlice(name, driver, pool, node string, sliceCount int64) *resourcev1.ResourceSlice { s := makeSliceWithGenerationAndCount(name, driver, pool, node, 0, 1, sliceCount) s.Spec.PartitionTypeAttribute = ptr.To(resourcev1.FullyQualifiedName(driver + "/profile")) s.Spec.Devices = []resourcev1.Device{ partitionSliceDevice("full-0", "Full", "80Gi"), partitionSliceDevice("half-0", "Half", "40Gi"), partitionSliceDevice("half-1", "Half", "40Gi"), } return s } func partitionSliceDevice(name, profile, cost string) resourcev1.Device { return resourcev1.Device{ Name: name, Attributes: map[resourcev1.QualifiedName]resourcev1.DeviceAttribute{ "profile": {StringValue: ptr.To(profile)}, }, ConsumesCounters: []resourcev1.DeviceCounterConsumption{consumes("gpu-0", map[string]string{"memory": cost})}, } } // makePartitionClassSlice is a second device slice for the same pool that groups // its partitions by a different attribute (driver/class), drawing from the same // sibling counter set. It models a pool that mixes multiple partition attributes. func makePartitionClassSlice(name, driver, pool, node string, sliceCount int64) *resourcev1.ResourceSlice { s := makeSliceWithGenerationAndCount(name, driver, pool, node, 0, 1, sliceCount) s.Spec.PartitionTypeAttribute = ptr.To(resourcev1.FullyQualifiedName(driver + "/class")) s.Spec.Devices = []resourcev1.Device{{ Name: "a-0", Attributes: map[resourcev1.QualifiedName]resourcev1.DeviceAttribute{ "class": {StringValue: ptr.To("A")}, }, ConsumesCounters: []resourcev1.DeviceCounterConsumption{consumes("gpu-0", map[string]string{"memory": "40Gi"})}, }} return s } // End-to-end partition attribute resolution over a two-slice partitionable pool, // exercising slice collection and the pool-beats-request precedence. func TestCalculatePoolStatus_PartitionSummary(t *testing.T) { driver := "gpu.example.com" profileAttr := driver + "/profile" classAttr := driver + "/class" // key names a summary entry by its attribute and type, so the assertion // covers the reported Attribute as well as the counts. key := func(attr, typ string) string { return attr + "\t" + typ } testCases := map[string]struct { // declarePoolAttr keeps the driver's own attribute on the slices. declarePoolAttr bool requestAttr *string // mixedClass adds a second device slice grouped by a different attribute. mixedClass bool want map[string][2]int32 }{ "pool declares the attribute": { declarePoolAttr: true, want: map[string][2]int32{key(profileAttr, "Full"): {1, 1}, key(profileAttr, "Half"): {2, 2}}, }, // The slices declare driver/profile. The request names a different // attribute that no device carries: if it won, every device would look // untyped, so the pool's own declaration must take precedence. "pool declaration beats the request default": { declarePoolAttr: true, requestAttr: ptr.To(driver + "/other"), want: map[string][2]int32{key(profileAttr, "Full"): {1, 1}, key(profileAttr, "Half"): {2, 2}}, }, "request default applies when the pool declares none": { requestAttr: ptr.To(profileAttr), want: map[string][2]int32{key(profileAttr, "Full"): {1, 1}, key(profileAttr, "Half"): {2, 2}}, }, // Slices declaring different attributes are not a conflict: each group // is reported independently under its own attribute. "pool mixes two grouping attributes": { declarePoolAttr: true, mixedClass: true, want: map[string][2]int32{ key(profileAttr, "Full"): {1, 1}, key(profileAttr, "Half"): {2, 2}, key(classAttr, "A"): {1, 1}, }, }, } for name, tc := range testCases { t.Run(name, func(t *testing.T) { sliceCount := int64(2) if tc.mixedClass { sliceCount = 3 } counters := makePartitionCounterSlice("counters", driver, "pool-0", "node-0", sliceCount) devices := makePartitionDeviceSlice("devices", driver, "pool-0", "node-0", sliceCount) all := []*resourcev1.ResourceSlice{counters, devices} if tc.mixedClass { all = append(all, makePartitionClassSlice("class-devices", driver, "pool-0", "node-0", sliceCount)) } if !tc.declarePoolAttr { counters.Spec.PartitionTypeAttribute = nil devices.Spec.PartitionTypeAttribute = nil } request := makeRequest(driver) request.Spec.DefaultPartitionTypeAttribute = tc.requestAttr pool := requireSinglePool(t, runCalculatePoolStatus(t, request, all, nil)) if pool.ValidationError != nil { t.Fatalf("unexpected validationError: %s", *pool.ValidationError) } got := map[string][2]int32{} for _, p := range pool.PartitionSummary { got[key(p.Attribute, p.Type)] = [2]int32{ptr.Deref(p.Total, 0), ptr.Deref(p.Allocatable, 0)} } if !maps.Equal(got, tc.want) { t.Errorf("partitionSummary {total,allocatable} = %v, want %v", got, tc.want) } }) } } // End-to-end: shareable devices aggregate consumed capacity from claim results // and report each capacity key independently, sorted by name. func TestCalculatePoolStatus_ShareableSummary(t *testing.T) { driver := "gpu.example.com" testCases := map[string]struct { capacity map[resourcev1.QualifiedName]resourcev1.DeviceCapacity consumed map[resourcev1.QualifiedName]resource.Quantity wantFully int32 wantPartially int32 // want maps each capacity name to {total, consumed, available}. want map[string][3]string }{ "single capacity": { capacity: map[resourcev1.QualifiedName]resourcev1.DeviceCapacity{"memory": {Value: qty("40Gi")}}, consumed: map[resourcev1.QualifiedName]resource.Quantity{"memory": qty("10Gi")}, wantPartially: 1, want: map[string][3]string{"memory": {"40Gi", "10Gi", "30Gi"}}, }, "multiple capacities": { capacity: map[resourcev1.QualifiedName]resourcev1.DeviceCapacity{ "memory": {Value: qty("40Gi")}, "cores": {Value: qty("8")}, }, consumed: map[resourcev1.QualifiedName]resource.Quantity{ "memory": qty("10Gi"), "cores": qty("2"), }, wantPartially: 1, want: map[string][3]string{ "memory": {"40Gi", "10Gi", "30Gi"}, "cores": {"8", "2", "6"}, }, }, } for name, tc := range testCases { t.Run(name, func(t *testing.T) { slice := makeSlice("shareable", driver, "pool-0", "node-0", 1) slice.Spec.Devices[0].AllowMultipleAllocations = ptr.To(true) slice.Spec.Devices[0].Capacity = tc.capacity claim := makeAllocatedClaim("c0", "ns", driver, "pool-0", "device-0") claim.Status.Allocation.Devices.Results[0].ConsumedCapacity = tc.consumed pool := requireSinglePool(t, runCalculatePoolStatus(t, makeRequest(driver), []*resourcev1.ResourceSlice{slice}, []*resourcev1.ResourceClaim{claim})) if pool.ShareableSummary == nil { t.Fatal("expected a shareableSummary") } sh := pool.ShareableSummary if gotFully, gotPartially := ptr.Deref(sh.FullyAvailableDevices, 0), ptr.Deref(sh.PartiallyAvailableDevices, 0); gotFully != tc.wantFully || gotPartially != tc.wantPartially { t.Errorf("full/partial devices = %d/%d, want %d/%d", gotFully, gotPartially, tc.wantFully, tc.wantPartially) } got := map[string][3]string{} for _, c := range sh.Capacity { got[c.Name] = [3]string{c.Total.String(), c.Consumed.String(), c.Available.String()} } if !maps.Equal(got, tc.want) { t.Errorf("capacity {total,consumed,available} = %v, want %v", got, tc.want) } }) } }