Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunTestListInconsistentContinuation (0.76 sec)

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

    }
    
    func TestListInconsistentContinuation(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	// TODO(#109831): Enable use of this by setting compaction.
    	storagetesting.RunTestListInconsistentContinuation(ctx, t, cacher, nil)
    }
    
    func TestListResourceVersionMatch(t *testing.T) {
    	// TODO(#109831): Enable use of this test and run it.
    }
    
    func TestGuaranteedUpdate(t *testing.T) {
    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

    			t.Fatalf("Unable to compact, %v", err)
    		}
    	}
    }
    
    func TestListInconsistentContinuation(t *testing.T) {
    	ctx, store, client := testSetup(t)
    	storagetesting.RunTestListInconsistentContinuation(ctx, t, store, compactStorage(client))
    }
    
    func TestListResourceVersionMatch(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    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

    	}
    	if validation != nil {
    		validation(t, 2, 1)
    	}
    }
    
    type Compaction func(ctx context.Context, t *testing.T, resourceVersion string)
    
    func RunTestListInconsistentContinuation(ctx context.Context, t *testing.T, store storage.Interface, compaction Compaction) {
    	if compaction == nil {
    		t.Skipf("compaction callback not provided")
    	}
    
    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