Browse Source

Mute data stream setup in remote cluster REST tests (#58052)

Dan Hermann 5 years ago
parent
commit
49e8f723dd

+ 38 - 31
qa/multi-cluster-search/src/test/resources/rest-api-spec/test/remote_cluster/10_basic.yml

@@ -3,37 +3,6 @@
   - skip:
       features: allowed_warnings
 
-  - do:
-      allowed_warnings:
-        - "index template [my-template1] has index patterns [simple-data-stream1] matching patterns from existing older templates [global] with patterns (global => [*]); this template [my-template1] will take precedence during new index creation"
-      indices.put_index_template:
-        name: my-template1
-        body:
-          index_patterns: [simple-data-stream1]
-          data_stream:
-            timestamp_field: '@timestamp'
-  - do:
-      allowed_warnings:
-        - "index template [my-template2] has index patterns [simple-data-stream2] matching patterns from existing older templates [global] with patterns (global => [*]); this template [my-template2] will take precedence during new index creation"
-      indices.put_index_template:
-        name: my-template2
-        body:
-          index_patterns: [simple-data-stream2]
-          data_stream:
-            timestamp_field: '@timestamp2'
-
-  - do:
-      indices.create_data_stream:
-        name: simple-data-stream1
-
-  - do:
-      indices.create_data_stream:
-        name: simple-data-stream2
-
-  - do:
-      indices.rollover:
-        alias: "simple-data-stream2"
-
   - do:
       indices.create:
         index: single_doc_index
@@ -175,3 +144,41 @@
   - match: { hits.hits.0._index: "test_index" }
 
 
+---
+"Set up data stream tests":
+  - skip:
+      version: "all"
+      reason: muting for now
+      features: allowed_warnings
+
+  - do:
+      allowed_warnings:
+        - "index template [my-template1] has index patterns [simple-data-stream1] matching patterns from existing older templates [global] with patterns (global => [*]); this template [my-template1] will take precedence during new index creation"
+      indices.put_index_template:
+        name: my-template1
+        body:
+          index_patterns: [simple-data-stream1]
+          data_stream:
+            timestamp_field: '@timestamp'
+  - do:
+      allowed_warnings:
+        - "index template [my-template2] has index patterns [simple-data-stream2] matching patterns from existing older templates [global] with patterns (global => [*]); this template [my-template2] will take precedence during new index creation"
+      indices.put_index_template:
+        name: my-template2
+        body:
+          index_patterns: [simple-data-stream2]
+          data_stream:
+            timestamp_field: '@timestamp2'
+
+  - do:
+      indices.create_data_stream:
+        name: simple-data-stream1
+
+  - do:
+      indices.create_data_stream:
+        name: simple-data-stream2
+
+  - do:
+      indices.rollover:
+        alias: "simple-data-stream2"
+