Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunTestWatcherTimeout (1.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestWatchContextCancel(ctx, t, store)
    }
    
    func TestWatcherTimeout(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestWatcherTimeout(ctx, t, store)
    }
    
    func TestWatchDeleteEventObjectHaveLatestRV(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestWatchDeleteEventObjectHaveLatestRV(ctx, t, store)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    	// TODO(#109831): Enable use of this test and run it.
    }
    
    func TestWatcherTimeout(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestWatcherTimeout(ctx, t, cacher)
    }
    
    func TestWatchDeleteEventObjectHaveLatestRV(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)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		if ok {
    			t.Error("ResultChan() should be closed")
    		}
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Errorf("timeout after %v", wait.ForeverTestTimeout)
    	}
    }
    
    func RunTestWatcherTimeout(ctx context.Context, t *testing.T, store storage.Interface) {
    	// initialRV is used to initate the watcher at the beginning of the world.
    	podList := example.PodList{}
    	options := storage.ListOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top