Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RunTestWatch (0.11 sec)

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

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/ptr"
    )
    
    func TestWatch(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestWatch(ctx, t, store)
    }
    
    func TestClusterScopedWatch(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestClusterScopedWatch(ctx, t, store)
    }
    
    func TestNamespaceScopedWatch(t *testing.T) {
    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

    	t.Cleanup(terminate)
    	storagetesting.RunTestCount(ctx, t, cacher)
    }
    
    func TestWatch(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestWatch(ctx, t, cacher)
    }
    
    func TestWatchFromZero(t *testing.T) {
    	ctx, cacher, server, terminate := testSetupWithEtcdServer(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

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	utilflowcontrol "k8s.io/apiserver/pkg/util/flowcontrol"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/pointer"
    )
    
    func RunTestWatch(ctx context.Context, t *testing.T, store storage.Interface) {
    	testWatch(ctx, t, store, false)
    	testWatch(ctx, t, store, true)
    }
    
    // It tests that
    // - first occurrence of objects should notify Add event
    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