kopia lustrzana https://github.com/wagtail/wagtail
Fixes Python 2 & elasticsearch tests.
rodzic
72f0a3a2fc
commit
ac0d1f69c8
|
@ -1,3 +1,5 @@
|
||||||
|
# coding: utf-8
|
||||||
|
|
||||||
from __future__ import absolute_import, unicode_literals
|
from __future__ import absolute_import, unicode_literals
|
||||||
|
|
||||||
import time
|
import time
|
||||||
|
|
|
@ -761,7 +761,7 @@ class TestElasticsearch2Mapping(TestCase):
|
||||||
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
||||||
'title': {'type': 'string', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
'title': {'type': 'string', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
||||||
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
||||||
'content': {'type': 'string', 'include_in_all': True},
|
'content': {'type': 'string', 'boost': 2, 'include_in_all': True},
|
||||||
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
||||||
'subobjects': {
|
'subobjects': {
|
||||||
'properties': {
|
'properties': {
|
||||||
|
@ -865,7 +865,7 @@ class TestElasticsearch2MappingInheritance(TestCase):
|
||||||
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
||||||
'title': {'type': 'string', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
'title': {'type': 'string', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
||||||
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
||||||
'content': {'type': 'string', 'include_in_all': True},
|
'content': {'type': 'string', 'boost': 2, 'include_in_all': True},
|
||||||
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
||||||
'subobjects': {
|
'subobjects': {
|
||||||
'properties': {
|
'properties': {
|
||||||
|
|
|
@ -760,7 +760,7 @@ class TestElasticsearch5Mapping(TestCase):
|
||||||
'published_date_filter': {'type': 'date', 'include_in_all': False},
|
'published_date_filter': {'type': 'date', 'include_in_all': False},
|
||||||
'title': {'type': 'text', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
'title': {'type': 'text', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
||||||
'title_filter': {'type': 'keyword', 'include_in_all': False},
|
'title_filter': {'type': 'keyword', 'include_in_all': False},
|
||||||
'content': {'type': 'text', 'include_in_all': True},
|
'content': {'type': 'text', 'boost': 2, 'include_in_all': True},
|
||||||
'callable_indexed_field': {'type': 'text', 'include_in_all': True},
|
'callable_indexed_field': {'type': 'text', 'include_in_all': True},
|
||||||
'subobjects': {
|
'subobjects': {
|
||||||
'properties': {
|
'properties': {
|
||||||
|
@ -864,7 +864,7 @@ class TestElasticsearch5MappingInheritance(TestCase):
|
||||||
'published_date_filter': {'type': 'date', 'include_in_all': False},
|
'published_date_filter': {'type': 'date', 'include_in_all': False},
|
||||||
'title': {'type': 'text', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
'title': {'type': 'text', 'include_in_all': True, 'analyzer': 'edgengram_analyzer', 'search_analyzer': 'standard'},
|
||||||
'title_filter': {'type': 'keyword', 'include_in_all': False},
|
'title_filter': {'type': 'keyword', 'include_in_all': False},
|
||||||
'content': {'type': 'text', 'include_in_all': True},
|
'content': {'type': 'text', 'boost': 2, 'include_in_all': True},
|
||||||
'callable_indexed_field': {'type': 'text', 'include_in_all': True},
|
'callable_indexed_field': {'type': 'text', 'include_in_all': True},
|
||||||
'subobjects': {
|
'subobjects': {
|
||||||
'properties': {
|
'properties': {
|
||||||
|
|
|
@ -774,7 +774,7 @@ class TestElasticsearchMapping(TestCase):
|
||||||
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
||||||
'title': {'type': 'string', 'include_in_all': True, 'index_analyzer': 'edgengram_analyzer'},
|
'title': {'type': 'string', 'include_in_all': True, 'index_analyzer': 'edgengram_analyzer'},
|
||||||
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
||||||
'content': {'type': 'string', 'include_in_all': True},
|
'content': {'type': 'string', 'boost': 2, 'include_in_all': True},
|
||||||
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
||||||
'tags': {
|
'tags': {
|
||||||
'type': 'nested',
|
'type': 'nested',
|
||||||
|
@ -881,7 +881,7 @@ class TestElasticsearchMappingInheritance(TestCase):
|
||||||
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
'published_date_filter': {'index': 'not_analyzed', 'type': 'date', 'include_in_all': False},
|
||||||
'title': {'type': 'string', 'include_in_all': True, 'index_analyzer': 'edgengram_analyzer'},
|
'title': {'type': 'string', 'include_in_all': True, 'index_analyzer': 'edgengram_analyzer'},
|
||||||
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
'title_filter': {'index': 'not_analyzed', 'type': 'string', 'include_in_all': False},
|
||||||
'content': {'type': 'string', 'include_in_all': True},
|
'content': {'type': 'string', 'boost': 2, 'include_in_all': True},
|
||||||
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
'callable_indexed_field': {'type': 'string', 'include_in_all': True},
|
||||||
'tags': {
|
'tags': {
|
||||||
'type': 'nested',
|
'type': 'nested',
|
||||||
|
|
Ładowanie…
Reference in New Issue