-
Notifications
You must be signed in to change notification settings - Fork 24.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Transform] restructure transform yaml tests (#52956)
restructure transform yaml tests to run cleanup in teardown phase relates #52428
- Loading branch information
Hendrik Muhs
authored
Mar 3, 2020
1 parent
9b262dc
commit 98b4e8c
Showing
4 changed files
with
178 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
x-pack/plugin/src/test/resources/rest-api-spec/test/transform/transforms_force_delete.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
setup: | ||
- do: | ||
indices.create: | ||
index: airline-data | ||
body: | ||
mappings: | ||
properties: | ||
time: | ||
type: date | ||
airline: | ||
type: keyword | ||
responsetime: | ||
type: float | ||
event_rate: | ||
type: integer | ||
- do: | ||
transform.put_transform: | ||
transform_id: "airline-transform-start-delete" | ||
body: > | ||
{ | ||
"source": { "index": "airline-data" }, | ||
"dest": { "index": "airline-data-by-airline-start-delete" }, | ||
"pivot": { | ||
"group_by": { "airline": {"terms": {"field": "airline"}}}, | ||
"aggs": {"avg_response": {"avg": {"field": "responsetime"}}} | ||
}, | ||
"sync": { | ||
"time": { | ||
"field": "time", | ||
"delay": "90m" | ||
} | ||
} | ||
} | ||
--- | ||
teardown: | ||
- do: | ||
transform.stop_transform: | ||
wait_for_checkpoint: false | ||
transform_id: "airline-transform-start-delete" | ||
wait_for_completion: true | ||
ignore: 404 | ||
- do: | ||
transform.delete_transform: | ||
transform_id: "airline-transform-start-delete" | ||
ignore: 404 | ||
--- | ||
"Test force deleting a running transform": | ||
- do: | ||
transform.start_transform: | ||
transform_id: "airline-transform-start-delete" | ||
- match: { acknowledged: true } | ||
|
||
- do: | ||
transform.get_transform_stats: | ||
transform_id: "airline-transform-start-delete" | ||
- match: { count: 1 } | ||
- match: { transforms.0.id: "airline-transform-start-delete" } | ||
- match: { transforms.0.state: "/started|indexing/" } | ||
|
||
- do: | ||
catch: /Cannot delete transform \[airline-transform-start-delete\] as the task is running/ | ||
transform.delete_transform: | ||
transform_id: "airline-transform-start-delete" | ||
|
||
- do: | ||
transform.delete_transform: | ||
transform_id: "airline-transform-start-delete" | ||
force: true | ||
- match: { acknowledged: true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
...ck/plugin/src/test/resources/rest-api-spec/test/transform/transforms_stats_continuous.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
setup: | ||
- do: | ||
indices.create: | ||
index: airline-data | ||
body: | ||
mappings: | ||
properties: | ||
time: | ||
type: date | ||
airline: | ||
type: keyword | ||
responsetime: | ||
type: float | ||
event_rate: | ||
type: integer | ||
- do: | ||
transform.put_transform: | ||
transform_id: "airline-transform-stats-continuous" | ||
body: > | ||
{ | ||
"source": { "index": "airline-data" }, | ||
"dest": { "index": "airline-data-by-airline-stats-continuous" }, | ||
"pivot": { | ||
"group_by": { "airline": {"terms": {"field": "airline"}}}, | ||
"aggs": {"avg_response": {"avg": {"field": "responsetime"}}} | ||
}, | ||
"sync": { "time": { "field": "time", "delay": "1m" } } | ||
} | ||
- do: | ||
transform.start_transform: | ||
transform_id: "airline-transform-stats-continuous" | ||
|
||
--- | ||
teardown: | ||
- do: | ||
transform.stop_transform: | ||
wait_for_checkpoint: false | ||
transform_id: "airline-transform-stats-continuous" | ||
wait_for_completion: true | ||
|
||
- do: | ||
transform.delete_transform: | ||
transform_id: "airline-transform-stats-continuous" | ||
|
||
--- | ||
"Test get continuous transform stats": | ||
- do: | ||
transform.get_transform_stats: | ||
transform_id: "airline-transform-stats-continuous" | ||
- match: { count: 1 } | ||
- match: { transforms.0.id: "airline-transform-stats-continuous" } | ||
# Since this is continuous, there is no worry of it automatically stopping | ||
- match: { transforms.0.state: "/started|indexing/" } | ||
- lte: { transforms.0.checkpointing.last.checkpoint: 1 } | ||
# Since this is continuous, and _start does not return until it is assigned | ||
# we should see a node assignment | ||
- is_true: transforms.0.node | ||
- is_true: transforms.0.node.id | ||
- is_true: transforms.0.node.name | ||
- is_true: transforms.0.node.ephemeral_id | ||
- is_true: transforms.0.node.transport_address | ||
- lte: { transforms.0.stats.pages_processed: 1 } | ||
- match: { transforms.0.stats.documents_processed: 0 } | ||
- match: { transforms.0.stats.documents_indexed: 0 } | ||
- lte: { transforms.0.stats.trigger_count: 1 } | ||
- match: { transforms.0.stats.index_time_in_ms: 0 } | ||
- match: { transforms.0.stats.index_total: 0 } | ||
- match: { transforms.0.stats.index_failures: 0 } | ||
- gte: { transforms.0.stats.search_time_in_ms: 0 } | ||
- lte: { transforms.0.stats.search_total: 1 } | ||
- match: { transforms.0.stats.search_failures: 0 } | ||
- is_true: transforms.0.stats.exponential_avg_checkpoint_duration_ms | ||
- match: { transforms.0.stats.exponential_avg_documents_indexed: 0.0 } | ||
- match: { transforms.0.stats.exponential_avg_documents_processed: 0.0 } |