mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 06:54:01 +00:00
Merge pull request #76350 from jpbetz/watch-consistency-conformance
Promote 'watch-consistency' e2e test to be a conformance test
This commit is contained in:
commit
9217cb5b6e
1
test/conformance/testdata/conformance.txt
vendored
1
test/conformance/testdata/conformance.txt
vendored
@ -13,6 +13,7 @@ test/e2e/apimachinery/watch.go: "should observe add, update, and delete watch no
|
|||||||
test/e2e/apimachinery/watch.go: "should be able to start watching from a specific resource version"
|
test/e2e/apimachinery/watch.go: "should be able to start watching from a specific resource version"
|
||||||
test/e2e/apimachinery/watch.go: "should be able to restart watching from the last resource version observed by the previous watch"
|
test/e2e/apimachinery/watch.go: "should be able to restart watching from the last resource version observed by the previous watch"
|
||||||
test/e2e/apimachinery/watch.go: "should observe an object deletion if it stops meeting the requirements of the selector"
|
test/e2e/apimachinery/watch.go: "should observe an object deletion if it stops meeting the requirements of the selector"
|
||||||
|
test/e2e/apimachinery/watch.go: "should receive events on concurrent watches in same order"
|
||||||
test/e2e/apps/daemon_set.go: "should run and stop simple daemon"
|
test/e2e/apps/daemon_set.go: "should run and stop simple daemon"
|
||||||
test/e2e/apps/daemon_set.go: "should run and stop complex daemon"
|
test/e2e/apps/daemon_set.go: "should run and stop complex daemon"
|
||||||
test/e2e/apps/daemon_set.go: "should retry creating failed daemon pods"
|
test/e2e/apps/daemon_set.go: "should retry creating failed daemon pods"
|
||||||
|
@ -321,11 +321,12 @@ var _ = SIGDescribe("Watchers", func() {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
Testname: watch-consistency
|
Testname: watch-consistency
|
||||||
|
Release : v1.15
|
||||||
Description: Ensure that concurrent watches are consistent with each other by initiating an additional watch
|
Description: Ensure that concurrent watches are consistent with each other by initiating an additional watch
|
||||||
for events received from the first watch, initiated at the resource version of the event, and checking that all
|
for events received from the first watch, initiated at the resource version of the event, and checking that all
|
||||||
resource versions of all events match. Events are produced from writes on a background goroutine.
|
resource versions of all events match. Events are produced from writes on a background goroutine.
|
||||||
*/
|
*/
|
||||||
It("should receive events on concurrent watches in same order", func() {
|
framework.ConformanceIt("should receive events on concurrent watches in same order", func() {
|
||||||
c := f.ClientSet
|
c := f.ClientSet
|
||||||
ns := f.Namespace.Name
|
ns := f.Namespace.Name
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user