[TEST] Fixed suggestion tests for 1.0.0.Beta1

Results order has changed because the standard analyzer no
longer removes stopwords
This commit is contained in:
Clinton Gormley 2013-11-07 14:26:22 +01:00
parent 602c3b6782
commit 381436843d
1 changed files with 27 additions and 4 deletions

View File

@ -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}