mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 21:48:39 +00:00
The regex tests are formatted with blocks for readability. Previously, they were formatted using folded style blocks (e.g. using `>`). Folded blocks convert newlines into spaces. This is problematic for our regex, since comments can only be terminated with a newline. Effectively, anything after a comment will be commented out, making many of the regex "silently pass". This commit replaces them with scalar-style blocks (e.g. using `|`), which treats newlines as significant, and thus correctly terminates comments inside the regex. Also fixes a regex test (`cat.thread_pool/10_basic.yaml`) that started to fail after the block was fixed. The test was missing a `\s+` before the closing newline.
51 lines
1.2 KiB
YAML
Executable File
51 lines
1.2 KiB
YAML
Executable File
---
|
|
"Test cat shards output":
|
|
|
|
- do:
|
|
cat.shards: {}
|
|
|
|
- match:
|
|
$body: |
|
|
/^$/
|
|
|
|
- do:
|
|
indices.create:
|
|
index: index1
|
|
body:
|
|
settings:
|
|
number_of_shards: "5"
|
|
number_of_replicas: "1"
|
|
- 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_shards: "5"
|
|
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}$/
|