コード例 #1
0
    def test_build_search_query_with_empty_category(self):
        query = "eu gene"
        multi_match_fields = [1,2,3]
        category = ""

        request = testing.DummyRequest()
        request.context = testing.DummyResource()

        self.assertEqual(build_es_search_query(query, multi_match_fields), build_search_query(query, multi_match_fields, category, self.category_filters, request))
コード例 #2
0
    def test_add_exact_match(self):
        query = "eu gene"
        multi_match_fields = [1,2]
        es_query = build_es_search_query(query, multi_match_fields)
        
        add_exact_match(es_query, query, multi_match_fields)

        es_query_original = build_es_search_query(query, multi_match_fields)

        self.assertEqual(es_query, {
            'bool': {'minimum_should_match': 1,
                     'should': [{
                         'match_phrase_prefix': {
                             'name': {
                                 'analyzer': 'standard',
                                 'boost': 3,
                                 'max_expansions': 30,
                                 'query': 'eu gene'}}
                     }, {
                         'match_phrase_prefix': {
                             'name': {
                                 'analyzer': 'standard',
                                 'boost': 80,
                                 'query': 'eu gene'
                             }
                         }
                     }, {
                         'match_phrase_prefix': {
                             'description': {
                                 'analyzer': 'standard',
                                 'boost': 1,
                                 'query': 'eu gene'
                             }
                         }
                     }, {
                         'multi_match': {
                             'boost': 3,
                             'fields': [1, 2],
                             'query': 'eu gene',
                             'type': 'phrase_prefix'
                         }
                     }
                     ]
            }})
コード例 #3
0
    def test_build_aggregation_query_with_category(self):
        query = "eu gene"
        multi_match_fields = [1,2]
        category = "locus"
        
        es_query = build_es_search_query(query, multi_match_fields)

        aggs = {}
        
        for c in self.category_filters[category]:
            aggs[c[1]] = {'terms': {'field': c[1] + '.raw', 'size': 999}}
        
        self.assertEqual({
            'query': es_query,
            'size': 0,
            'aggs': aggs
        }, build_aggregation_query(es_query, category, self.category_filters))
コード例 #4
0
    def test_build_search_query_with_no_filters(self):
        query = "eu gene"
        multi_match_fields = [1,2,3]
        category = "locus"

        request = testing.DummyRequest()
        request.context = testing.DummyResource()

        self.assertEqual({
            'filtered': {
                'query': build_es_search_query(query, multi_match_fields),
                'filter': {
                    'bool': {
                        'must': [{'term': {'category': category}}]
                    }
                }
            }
        }, build_search_query(query, multi_match_fields, category, self.category_filters, request))
コード例 #5
0
 def test_build_aggregation_query_with_emtpy_category(self):
     query = "eu gene"
     multi_match_fields = [1,2]
     category = ""
     
     es_query = build_es_search_query(query, multi_match_fields)
     
     self.assertEqual({
         'query': es_query,
         'size': 0,
         'aggs': {
             'categories': {
                 'terms': {'field': 'category', 'size': 50}
             },
             'feature_type': {
                 'terms': {'field': 'feature_type', 'size': 50}
             }
         }
     }, build_aggregation_query(es_query, category, self.category_filters))
コード例 #6
0
    def test_build_search_query_with_filters(self):
        query = "eu gene"
        multi_match_fields = [1,2,3]
        category = "locus"

        request = testing.DummyRequest()
        request.context = testing.DummyResource()
        request.params['feature type'] = 'type_1'

        item = self.category_filters[category][0]

        self.assertEqual({
            'filtered': {
                'query': build_es_search_query(query, multi_match_fields),
                'filter': {
                    'bool': {
                        'must': [{'term': {'category': category}}, {'term': {(item[1]+".raw"): request.params.get(item[0])}}]
                    }
                }
            }
        }, build_search_query(query, multi_match_fields, category, self.category_filters, request))
コード例 #7
0
    def test_build_es_search_query_should_quote_query_with_special_characters(self):
        query = "eu-gene"
        
        multi_match_fields = [1,2,3]

        self.maxDiff = None
        
        self.assertEqual({
            'bool': {
                'minimum_should_match': 1,
                'should': [{
                    'match_phrase_prefix': {
                        'name': {
                            'analyzer': 'standard',
                            'boost': 3,
                            'max_expansions': 30,
                            'query': "\"" + query + "\""}}
                }, {
                    'match_phrase_prefix': {
                        'name': {
                            'analyzer': 'standard',
                            'boost': 80,
                            'query': "\"" + query + "\""}}
                }, {
                    'match_phrase_prefix': {
                        'description': {
                            'analyzer': 'standard',
                            'boost': 1,
                            'query': "\"" + query + "\""}}
                }, {
                    'multi_match': {
                        'boost': 3,
                        'fields': [1, 2, 3],
                        'query': "\"" + query + "\"",
                        'type': 'phrase_prefix'
                    }
                }]
            }
        }, build_es_search_query(query, multi_match_fields))
コード例 #8
0
 def test_add_exact_match_for_double_comma_queries(self, mock_exact):
     query = "\"eu gene\""
     multi_match_fields = [1,2,3]
     
     build_es_search_query(query, multi_match_fields)
     self.assertTrue(mock_exact.called)
コード例 #9
0
 def test_build_es_query_for_empty_query(self):
     query = ""
     self.assertEqual({'match_all': {}}, build_es_search_query("", []))
コード例 #10
0
    def test_build_es_search_query(self):
        query = "eu_gene"
        
        multi_match_fields = [1,2,3]

        self.maxDiff = None
        
        self.assertEqual({
            "bool": {
                "should": [
                    {
                        "match_phrase_prefix": {
                            "name": {
                                "query": query,
                                "boost": 3,
                                "max_expansions": 30,
                                "analyzer": "standard"
                            }
                        }
                    },
                    {
                        "match_phrase_prefix": {
                            "keys": {
                                "query": query,
                                "boost": 35,
                                "max_expansions": 12,
                                "analyzer": "standard"
                            }
                        }
                    },
                    {
                        "match_phrase": {
                            "name": {
                                "query": query,
                                "boost": 80,
                                "analyzer": "standard"
                            }
                        }
                    },                        
                    {
                        "match": {
                            "description": {
                                "query": query,
                                "boost": 1,
                                "analyzer": "standard"
                            }
                        }
                    },
                    {
                        "match_phrase": {
                            "keys": {
                                "query": query,
                                "boost": 50,
                                "analyzer": "standard"
                            }
                        }
                    },
                    {
                        "multi_match": {
                            "query": query,
                            "type": "best_fields",
                            "fields": multi_match_fields,
                            "boost": 1
                        }
                    },
                ],
                "minimum_should_match": 1
            }
        }, build_es_search_query(query, multi_match_fields))