Backport: unmute rolling upgrade watcher tests and (#51664)

set watcher logger to debug level.

These tests haven't run in such a long time,
we first need to get a better picture how/if
these tests fail today.

Backport of #51478
See #33185
This commit is contained in:
Martijn van Groningen 2020-01-30 14:01:30 +01:00 committed by GitHub
parent 285a167c34
commit f7e2082378
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 41 deletions

View File

@ -102,6 +102,7 @@ for (Version bwcVersion : bwcVersions.wireCompatible) {
}
javaHome = BuildParams.runtimeJavaHome
setting 'logger.org.elasticsearch.xpack.watcher', 'DEBUG'
}
}

View File

@ -1,10 +1,5 @@
---
"CRUD watch APIs":
- skip:
reason: https://github.com/elastic/elasticsearch/issues/33185
version: "6.7.0 - "
# no need to put watch, exists already
- do:
watcher.get_watch:
@ -12,7 +7,6 @@
- match: { found : true}
- match: { _id: "my_watch" }
# execute watch
- do:
watcher.execute_watch:
@ -48,7 +42,7 @@
watcher.deactivate_watch:
watch_id: "my_watch"
- match: { status.state.active : false }
- do:
watcher.get_watch:
id: "my_watch"
@ -56,13 +50,12 @@
- match: { _id: "my_watch" }
- match: { status.state.active: false }
# activate watch again, check with GET API as well
- do:
watcher.activate_watch:
watch_id: "my_watch"
- match: { status.state.active : true }
- do:
watcher.get_watch:
id: "my_watch"
@ -70,14 +63,8 @@
- match: { _id: "my_watch" }
- match: { status.state.active: true }
---
"Test watcher stats output":
- skip:
reason: https://github.com/elastic/elasticsearch/issues/33185
version: "6.7.0 - "
- do:
watcher.stats: {}
- match: { "manually_stopped": false }

View File

@ -1,9 +1,5 @@
---
"CRUD watch APIs":
- skip:
reason: https://github.com/elastic/elasticsearch/issues/33185
version: "6.7.0 - "
- do:
watcher.put_watch:
id: "my_watch"
@ -31,7 +27,6 @@
- match: { found : true}
- match: { _id: "my_watch" }
# execute watch
- do:
watcher.execute_watch:
@ -67,7 +62,7 @@
watcher.deactivate_watch:
watch_id: "my_watch"
- match: { status.state.active : false }
- do:
watcher.get_watch:
id: "my_watch"
@ -81,7 +76,7 @@
watcher.activate_watch:
watch_id: "my_watch"
- match: { status.state.active : true }
- do:
watcher.get_watch:
id: "my_watch"
@ -89,14 +84,8 @@
- match: { _id: "my_watch" }
- match: { status.state.active: true }
---
"Test watcher stats output":
- skip:
reason: https://github.com/elastic/elasticsearch/issues/33185
version: "6.7.0 - "
- do:
watcher.stats: {}
- match: { "manually_stopped": false }

View File

@ -1,10 +1,5 @@
---
"CRUD watch APIs":
- skip:
reason: https://github.com/elastic/elasticsearch/issues/33185
version: "6.7.0 - "
# no need to put watch, exists already
- do:
watcher.get_watch:
@ -12,7 +7,6 @@
- match: { found : true}
- match: { _id: "my_watch" }
# execute watch
- do:
watcher.execute_watch:
@ -48,7 +42,7 @@
watcher.deactivate_watch:
watch_id: "my_watch"
- match: { status.state.active : false }
- do:
watcher.get_watch:
id: "my_watch"
@ -62,7 +56,7 @@
watcher.activate_watch:
watch_id: "my_watch"
- match: { status.state.active : true }
- do:
watcher.get_watch:
id: "my_watch"
@ -72,11 +66,6 @@
---
"Test watcher stats output":
- skip:
reason: https://github.com/elastic/elasticsearch/issues/33185
version: "6.7.0 - "
- do:
watcher.stats: {}
- match: { "manually_stopped": false }