1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
from copy import deepcopy
from typing import Any
import pytest
from elasticsearch.dsl import AsyncUpdateByQuery, Q
from elasticsearch.dsl.response import UpdateByQueryResponse
from elasticsearch.dsl.search_base import SearchBase
def test_ubq_starts_with_no_query() -> None:
ubq = AsyncUpdateByQuery()
assert ubq.query._proxied is None
def test_ubq_to_dict() -> None:
ubq = AsyncUpdateByQuery()
assert {} == ubq.to_dict()
ubq = ubq.query("match", f=42)
assert {"query": {"match": {"f": 42}}} == ubq.to_dict()
assert {"query": {"match": {"f": 42}}, "size": 10} == ubq.to_dict(size=10)
ubq = AsyncUpdateByQuery(extra={"size": 5})
assert {"size": 5} == ubq.to_dict()
ubq = AsyncUpdateByQuery(extra={"extra_q": Q("term", category="conference")})
assert {"extra_q": {"term": {"category": "conference"}}} == ubq.to_dict()
def test_complex_example() -> None:
ubq = AsyncUpdateByQuery()
ubq = (
ubq.query("match", title="python")
.query(~Q("match", title="ruby"))
.filter(Q("term", category="meetup") | Q("term", category="conference"))
.script(
source="ctx._source.likes += params.f", lang="painless", params={"f": 3}
)
)
ubq.query.minimum_should_match = 2
assert {
"query": {
"bool": {
"filter": [
{
"bool": {
"should": [
{"term": {"category": "meetup"}},
{"term": {"category": "conference"}},
]
}
}
],
"must": [{"match": {"title": "python"}}],
"must_not": [{"match": {"title": "ruby"}}],
"minimum_should_match": 2,
}
},
"script": {
"source": "ctx._source.likes += params.f",
"lang": "painless",
"params": {"f": 3},
},
} == ubq.to_dict()
def test_exclude() -> None:
ubq = AsyncUpdateByQuery()
ubq = ubq.exclude("match", title="python")
assert {
"query": {
"bool": {
"filter": [{"bool": {"must_not": [{"match": {"title": "python"}}]}}]
}
}
} == ubq.to_dict()
def test_reverse() -> None:
d = {
"query": {
"bool": {
"filter": [
{
"bool": {
"should": [
{"term": {"category": "meetup"}},
{"term": {"category": "conference"}},
]
}
}
],
"must": [
{
"bool": {
"must": [{"match": {"title": "python"}}],
"must_not": [{"match": {"title": "ruby"}}],
"minimum_should_match": 2,
}
}
],
}
},
"script": {
"source": "ctx._source.likes += params.f",
"lang": "painless",
"params": {"f": 3},
},
}
d2 = deepcopy(d)
ubq = AsyncUpdateByQuery.from_dict(d)
assert d == d2
assert d == ubq.to_dict()
def test_from_dict_doesnt_need_query() -> None:
ubq = AsyncUpdateByQuery.from_dict({"script": {"source": "test"}})
assert {"script": {"source": "test"}} == ubq.to_dict()
@pytest.mark.asyncio
async def test_params_being_passed_to_search(async_mock_client: Any) -> None:
ubq = AsyncUpdateByQuery(using="mock", index="i")
ubq = ubq.params(routing="42")
await ubq.execute()
async_mock_client.update_by_query.assert_called_once_with(index=["i"], routing="42")
def test_overwrite_script() -> None:
ubq = AsyncUpdateByQuery()
ubq = ubq.script(
source="ctx._source.likes += params.f", lang="painless", params={"f": 3}
)
assert {
"script": {
"source": "ctx._source.likes += params.f",
"lang": "painless",
"params": {"f": 3},
}
} == ubq.to_dict()
ubq = ubq.script(source="ctx._source.likes++")
assert {"script": {"source": "ctx._source.likes++"}} == ubq.to_dict()
def test_update_by_query_response_success() -> None:
ubqr = UpdateByQueryResponse(SearchBase(), {"timed_out": False, "failures": []})
assert ubqr.success()
ubqr = UpdateByQueryResponse(SearchBase(), {"timed_out": True, "failures": []})
assert not ubqr.success()
ubqr = UpdateByQueryResponse(SearchBase(), {"timed_out": False, "failures": [{}]})
assert not ubqr.success()
|