Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunTestListPaginationRareObject (0.52 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    }
    
    func TestListPaginationRareObject(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestListPaginationRareObject(ctx, t, cacher, checkStorageCalls)
    }
    
    func TestListContinuationWithFilter(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	ctx, store, etcdClient := testSetup(t, withRecorder())
    	validation := checkStorageCallsInvariants(
    		store.transformer.(*storagetesting.PrefixTransformer), etcdClient.KV.(*clientRecorder))
    	storagetesting.RunTestListPaginationRareObject(ctx, t, store, validation)
    }
    
    func TestListContinuationWithFilter(t *testing.T) {
    	ctx, store, etcdClient := testSetup(t, withRecorder())
    	validation := checkStorageCallsInvariants(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Errorf("Expect output.ResourceVersion = %s, but got %s", currentRV, out.ResourceVersion)
    	}
    	if validation != nil {
    		validation(t, 1, 1)
    	}
    }
    
    func RunTestListPaginationRareObject(ctx context.Context, t *testing.T, store storage.Interface, validation CallsValidation) {
    	podCount := 1000
    	var pods []*example.Pod
    	for i := 0; i < podCount; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top