Ejemplo n.º 1
0
    def test_should_return_elastic_search_query_dsl_for_basic_query_with_type(self):
        query_string = 'type:help and title:hello description:"world"'
        expected_query_dsl = {
            "query": {
                "filtered": {
                    "query": {
                        "query_string": {
                            "query": 'title:hello description:"world"',
                            "default_operator": "and"
                        }
                    },
                    "filter": {
                        "bool": {
                            "must": [
                                {
                                    "type": {"value": "help"}
                                }
                            ],
                            "should": [],
                            "must_not": []
                        }
                    }
                }
            },
        }

        elastic_query_dsl = plasticparser.get_query_dsl(query_string)
        self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 2
0
 def test_should_return_elastic_search_query_dsl_for_nested_queries(self):
     query_string = 'type:help first_name:asdasd AND (candidate_messages.comments.title:(yes i will) OR due_date:(1234))'
     expected_query_dsl = {
         "query": {
             "filtered": {
                 "query": {
                     "query_string": {
                         "query": u"first_name:asdasd AND (candidate_messages.comments.title:(yes i will) OR due_date:(1234 ))",
                         "default_operator": "and"
                     }
                 },
                 "filter": {
                     "bool": {
                         "must": [
                             {
                                 "type": {"value": "help"}
                             }
                         ],
                         "should": [],
                         "must_not": []
                     }
                 }
             }
         },
     }
     elastic_query_dsl = plasticparser.get_query_dsl(query_string)
     self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 3
0
 def test_should_return_elastic_search_query_dsl_for_queries_with_comparision_operators(self):
     query_string = 'type:help and due_date:<1234 due_date:>1234 due_date:>=1234 (due_date:>=1234)'
     expected_query_dsl = {
         "query": {
             "filtered": {
                 "query": {
                     "query_string": {
                         "query": "due_date:<1234 due_date:>1234"
                         " due_date:>=1234 (due_date:>=1234)",
                         "default_operator": "and"
                     }
                 },
                 "filter": {
                     "bool": {
                         "must": [
                             {
                                 "type": {"value": "help"}
                             }
                         ],
                         "should": [],
                         "must_not": []
                     }
                 }
             }
         },
     }
     elastic_query_dsl = plasticparser.get_query_dsl(query_string)
     self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 4
0
 def test_should_return_elastic_search_query_dsl_for_basic_query(self):
     query_string = 'title:hello OR description:"world"'
     elastic_query_dsl = plasticparser.get_query_dsl(query_string)
     expected_query_dsl = {
         "query": {
             "filtered": {
                 "query": {
                     "query_string": {
                         "query": 'title:hello OR description:"world"',
                         "default_operator": "and"
                     }
                 },
                 "filter": {
                     "bool": {
                         "must": [],
                         "should": [],
                         "must_not": []
                     }
                 },
             }
         },
         "facets": {},
         "sort": []
     }
     self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 5
0
 def test_should_return_elastic_search_query_dsl_for_basic_query(self):
     query_string = 'title:hello OR description:"world"'
     elastic_query_dsl = plasticparser.get_query_dsl(query_string)
     expected_query_dsl = {
         "query": {
             "filtered": {
                 "query": {
                     "query_string": {
                         "query": 'title:hello OR description:"world"',
                         "default_operator": "and"
                     }
                 },
                 "filter": {
                     "bool": {
                         "must": [],
                         "should": [],
                         "must_not": []
                     }
                 },
             }
         },
         "facets": {},
         "sort": []
     }
     self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 6
0
 def test_should_return_elastic_search_query_dsl_for_basic_query_with_global_filters(
         self):
     self.maxDiff = None
     query_string = 'type:help and title:hello description:"world"'
     global_filters = {
         'and': [{
             "client_id": 1
         }, {
             "user_id": 2
         }],
         'or': [{
             "assigned_to": ["/api/v1/users/5/"]
         }],
         'not': [],
         'sort': [{
             "created_on": "desc"
         }]
     }
     expected_query_dsl = {
         "query": {
             "filtered": {
                 "query": {
                     "query_string": {
                         "query": 'title:hello description:"world"',
                         "default_operator": "and"
                     }
                 },
                 "filter": {
                     "bool": {
                         "must": [{
                             'type': {
                                 'value': 'help'
                             }
                         }, {
                             'term': {
                                 'client_id': 1
                             }
                         }, {
                             'term': {
                                 'user_id': 2
                             }
                         }],
                         "should": [{
                             "term": {
                                 "assigned_to": ["/api/v1/users/5/"]
                             }
                         }],
                         "must_not": []
                     }
                 }
             }
         },
         "facets": {},
         "sort": [{
             "created_on": "desc"
         }]
     }
     elastic_query_dsl = plasticparser.get_query_dsl(
         query_string, global_filters)
     self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 7
0
 def test_should_return_elastic_search_query_dsl_for_basic_query_with_nested_filters(self):
     self.maxDiff = None
     query_string = 'type:help and title:hello description:"world" nested:[metadata_facets(field_value:(no) field_name:(first))]'
     global_filters = {
         'and': [{"client_id": 1},
                 {"user_id": 2}],
         'or': [{"assigned_to": ["/api/v1/users/5/"]}],
         'not': [],
         'sort': [{"created_on": "desc"}]
     }
     expected_query_dsl = {
         "query": {
             "filtered": {
                 "query": {
                     "query_string": {
                         "query": 'title:hello description:"world"',
                         "default_operator": "and"
                     }
                 },
                 "filter": {
                     "bool": {
                         "must": [
                             {
                                 'type': {'value': 'help'}
                             },
                             {
                                 "nested": {
                                     "path": "metadata_facets",
                                     "query": {
                                         "query_string": {
                                             "query": "field_value:(no) field_name:(first)",
                                             "default_operator": "and"
                                         }
                                     }
                                 }
                             },
                             {
                                 'term': {'client_id': 1}
                             },
                             {
                                 'term': {'user_id': 2}
                             },
                         ],
                         "should": [
                             {
                                 "term": {"assigned_to": ["/api/v1/users/5/"]}
                             }
                         ],
                         "must_not": []
                     }
                 }
             }
         },
         "facets": {},
         "sort": [{"created_on": "desc"}]
     }
     elastic_query_dsl = plasticparser.get_query_dsl(query_string, global_filters)
     self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 8
0
    def test_should_return_elastic_search_query_dsl_for_when_no_querystring_with_facets(
            self):
        query_string = 'type:help facets: [ aaa.bb(abc:def) bbb(cc:ddd) ]'
        expected_query_dsl = {
            "query": {
                "filtered": {
                    "filter": {
                        "bool": {
                            "must": [{
                                "type": {
                                    "value": "help"
                                }
                            }],
                            "should": [],
                            "must_not": []
                        }
                    }
                }
            },
            'facets': {
                'aaa.bb': {
                    'facet_filter': {
                        'query': {
                            'query_string': {
                                'query': u'abc:def',
                                "default_operator": "and"
                            }
                        }
                    },
                    'terms': {
                        'field': 'bb_nonngram',
                        'size': 20
                    },
                    'nested': u'aaa'
                },
                'bbb': {
                    'facet_filter': {
                        'query': {
                            'query_string': {
                                'query': u'cc:ddd',
                                "default_operator": "and"
                            }
                        }
                    },
                    'terms': {
                        'field': 'bbb_nonngram',
                        'size': 20
                    }
                }
            },
            'sort': []
        }

        elastic_query_dsl = plasticparser.get_query_dsl(query_string)
        self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 9
0
    def test_should_return_elastic_search_query_dsl_for_when_no_querystring_with_facets(self):
        query_string = 'type:help facets: [ aaa.bb(abc:def) bbb(cc:ddd) ]'
        expected_query_dsl = {
            "query": {
                "filtered": {
                    "filter": {
                        "bool": {
                            "must": [
                                {
                                    "type": {"value": "help"}
                                }
                            ],
                            "should": [],
                            "must_not": []
                        }
                    }
                }
            },
            'facets': {
                'aaa.bb': {
                    'facet_filter': {
                        'query': {
                            'query_string': {
                                'query': u'abc:def',
                                "default_operator": "and"
                            }
                        }
                    },
                    'terms': {
                        'field': 'bb_nonngram',
                        'size': 20
                    },
                    'nested': u'aaa'},
                'bbb': {
                    'facet_filter': {
                        'query': {
                            'query_string': {
                                'query': u'cc:ddd',
                                "default_operator": "and"
                            }
                        }
                    },
                    'terms': {
                        'field': 'bbb_nonngram',
                        'size': 20
                    }
                }
            },
            'sort': []
        }

        elastic_query_dsl = plasticparser.get_query_dsl(query_string)
        self.assertEqual(elastic_query_dsl, expected_query_dsl)
Ejemplo n.º 10
0
 def test_should_return_elastic_search_query_dsl_for_queries_with_highlight_sort_fields(self):
     query_string = 'highlight:[field,due_date] sort[due_date] type:help and field:"asdsad" (due_date:>=1234)'
     expected_query_dsl = {
         'query': {
             'filtered': {
                 'filter': {
                     'bool': {
                         'should': [],
                         'must_not': [],
                         'must': [
                             {
                                 'type': {
                                     'value': u'help'
                                 }
                             }
                         ]
                     }
                 },
                 'query': {
                     'query_string': {
                         'query': u'field:"asdsad" (due_date:>=1234)',
                         'default_operator': 'and'
                     }
                 }
             }
         },
         'highlight': {
             'fields': {
                 'field': {},
                 'due_date': {}
             }
         },
         'sort': {
             'due_date': {'order': 'asc'}
         }
     }
     elastic_query_dsl = plasticparser.get_query_dsl(query_string)
     self.assertEqual(elastic_query_dsl, expected_query_dsl)