55 lines
1.2 KiB
YAML
55 lines
1.2 KiB
YAML
---
|
|
setup:
|
|
- skip:
|
|
features: regex
|
|
|
|
---
|
|
"Test cat shards output":
|
|
|
|
- do:
|
|
cat.shards: {}
|
|
|
|
- match:
|
|
$body: >
|
|
/^$/
|
|
|
|
- do:
|
|
index:
|
|
index: index1
|
|
type: type1
|
|
id: 1
|
|
body: { foo: bar }
|
|
refresh: true
|
|
- do:
|
|
cluster.health:
|
|
wait_for_status: yellow
|
|
- do:
|
|
cat.shards: {}
|
|
|
|
- match:
|
|
$body: >
|
|
/^(index1 \s+ \d \s+ (p|r) \s+ ((STARTED|INITIALIZING) \s+ (\d \s+ (\d+|\d+[.]\d+)(kb|b) \s+)? \d{1,3}.\d{1,3}.\d{1,3}.\d{1,3} \s+ .+|UNASSIGNED \s+) \n?){10}$/
|
|
|
|
- do:
|
|
indices.create:
|
|
index: index2
|
|
body:
|
|
settings:
|
|
number_of_replicas: "0"
|
|
- do:
|
|
cluster.health:
|
|
wait_for_status: yellow
|
|
|
|
- do:
|
|
cat.shards: {}
|
|
- match:
|
|
$body: >
|
|
/^(index(1|2) \s+ \d \s+ (p|r) \s+ ((STARTED|INITIALIZING) \s+ (\d \s+ (\d+|\d+[.]\d+)(kb|b) \s+)? \d{1,3}.\d{1,3}.\d{1,3}.\d{1,3} \s+ .+|UNASSIGNED \s+) \n?){15}$/
|
|
|
|
- do:
|
|
cat.shards:
|
|
index: index2
|
|
- match:
|
|
$body: >
|
|
/^(index2 \s+ \d \s+ (p|r) \s+ ((STARTED|INITIALIZING) \s+ (\d \s+ (\d+|\d+[.]\d+)(kb|b) \s+)? \d{1,3}.\d{1,3}.\d{1,3}.\d{1,3} \s+ .+|UNASSIGNED \s+) \n?){5}$/
|