40 lines
800 B
YAML
40 lines
800 B
YAML
---
|
|
setup:
|
|
- skip:
|
|
features: regex
|
|
|
|
---
|
|
"Test cat recovery output":
|
|
|
|
- do:
|
|
cat.recovery: {}
|
|
|
|
- match:
|
|
$body: >
|
|
/^$/
|
|
|
|
- do:
|
|
index:
|
|
index: index1
|
|
type: type1
|
|
id: 1
|
|
body: { foo: bar }
|
|
refresh: true
|
|
- do:
|
|
cluster.health:
|
|
wait_for_status: yellow
|
|
- do:
|
|
cat.recovery: {}
|
|
- match:
|
|
$body: >
|
|
/^(index1 \s+ \d+ \s+ \d+ \s+
|
|
(gateway|replica|snapshot|relocating) \s+
|
|
(init|index|start|translog|finalize|done) \s+
|
|
([\w/.-])+ \s+
|
|
([\w/.-])+ \s+
|
|
([\w/.-])+ \s+
|
|
([\w/.-])+ \s+
|
|
\d+ \s+ \d+\.\d+\% \s+ \d+ \s+ \d+\.\d+\% \s+ \n?)
|
|
{1,}$/
|
|
|