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:
parent
90a62523d1
commit
9beab7b999
@ -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',
|
||||
|
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user