From 381436843dc193314d0cfa2ef0110ce10afcc1ab Mon Sep 17 00:00:00 2001 From: Clinton Gormley Date: Thu, 7 Nov 2013 14:26:22 +0100 Subject: [PATCH] [TEST] Fixed suggestion tests for 1.0.0.Beta1 Results order has changed because the standard analyzer no longer removes stopwords --- rest-api-spec/test/suggest/10_basic.yaml | 31 +++++++++++++++++++++--- 1 file changed, 27 insertions(+), 4 deletions(-) diff --git a/rest-api-spec/test/suggest/10_basic.yaml b/rest-api-spec/test/suggest/10_basic.yaml index 8acc9a58ad2..fec54b71f1a 100644 --- a/rest-api-spec/test/suggest/10_basic.yaml +++ b/rest-api-spec/test/suggest/10_basic.yaml @@ -1,9 +1,7 @@ ---- -"Basic tests for suggest API": +setup: - skip: version: "0 - 0.90.2" reason: "Suggest is broken on 0.90.2 - see #3246" - - do: index: index: test @@ -11,10 +9,17 @@ id: testing_document body: body: Amsterdam meetup - - do: indices.refresh: {} + +--- +"Basic tests for suggest API - pre v1": + - skip: + version: "1 - 99" + reason: "Standard analyzer uses stopwords" + + - do: suggest: body: @@ -25,3 +30,21 @@ - match: {test_suggestion.0.options.0.text: amsterdam} - match: {test_suggestion.1.options.0.text: meetup} + +--- +"Basic tests for suggest API - post v1": + - skip: + version: "0 - 0.90.9" + reason: "Standard analyzer ignores stopwords" + + + - do: + suggest: + body: + test_suggestion: + text: "The Amsterdma meetpu" + term: + field: body + + - match: {test_suggestion.1.options.0.text: amsterdam} + - match: {test_suggestion.2.options.0.text: meetup}