0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-12-01 11:41:20 +01:00

Updates elasticsearch2 & 5 tests for #2547.

This commit is contained in:
Bertrand Bordage 2017-06-19 03:26:44 +02:00
parent 90a62523d1
commit 9beab7b999
2 changed files with 36 additions and 0 deletions

View File

@ -763,6 +763,14 @@ class TestElasticsearch2Mapping(TestCase):
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
'content': {'type': 'string', 'include_in_all': True},
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
'subobjects': {
'properties': {
'name': {'analyzer': 'edgengram_analyzer',
'include_in_all': True,
'search_analyzer': 'standard',
'type': 'string'}},
'type': 'nested',
},
'tags': {
'type': 'nested',
'properties': {
@ -798,6 +806,7 @@ class TestElasticsearch2Mapping(TestCase):
'title_filter': 'Hello',
'callable_indexed_field': 'Callable',
'content': '',
'subobjects': [],
'tags': [
{
'name': 'a tag',
@ -858,6 +867,14 @@ class TestElasticsearch2MappingInheritance(TestCase):
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
'content': {'type': 'string', 'include_in_all': True},
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
'subobjects': {
'properties': {
'name': {'analyzer': 'edgengram_analyzer',
'include_in_all': True,
'search_analyzer': 'standard',
'type': 'string'}},
'type': 'nested',
},
'tags': {
'type': 'nested',
'properties': {
@ -908,6 +925,7 @@ class TestElasticsearch2MappingInheritance(TestCase):
'title_filter': 'Hello',
'callable_indexed_field': 'Callable',
'content': '',
'subobjects': [],
'tags': [
{
'name': 'a tag',

View File

@ -762,6 +762,14 @@ class TestElasticsearch5Mapping(TestCase):
'title_filter': {'type': 'keyword', 'include_in_all': False},
'content': {'type': 'text', 'include_in_all': True},
'callable_indexed_field': {'type': 'text', 'include_in_all': True},
'subobjects': {
'properties': {
'name': {'analyzer': 'edgengram_analyzer',
'include_in_all': True,
'search_analyzer': 'standard',
'type': 'text'}},
'type': 'nested',
},
'tags': {
'type': 'nested',
'properties': {
@ -797,6 +805,7 @@ class TestElasticsearch5Mapping(TestCase):
'title_filter': 'Hello',
'callable_indexed_field': 'Callable',
'content': '',
'subobjects': [],
'tags': [
{
'name': 'a tag',
@ -857,6 +866,14 @@ class TestElasticsearch5MappingInheritance(TestCase):
'title_filter': {'type': 'keyword', 'include_in_all': False},
'content': {'type': 'text', 'include_in_all': True},
'callable_indexed_field': {'type': 'text', 'include_in_all': True},
'subobjects': {
'properties': {
'name': {'analyzer': 'edgengram_analyzer',
'include_in_all': True,
'search_analyzer': 'standard',
'type': 'text'}},
'type': 'nested',
},
'tags': {
'type': 'nested',
'properties': {
@ -907,6 +924,7 @@ class TestElasticsearch5MappingInheritance(TestCase):
'title_filter': 'Hello',
'callable_indexed_field': 'Callable',
'content': '',
'subobjects': [],
'tags': [
{
'name': 'a tag',