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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287
|
import copy
import re
from contextlib import contextmanager
from unittest.mock import ANY, MagicMock, Mock, call, patch, sentinel
import pytest
from kombu.serialization import prepare_accept_content
from kombu.utils.encoding import bytes_to_str, ensure_bytes
import celery
from celery import chord, group, signature, states, uuid
from celery.app.task import Context, Task
from celery.backends.base import BaseBackend, DisabledBackend, KeyValueStoreBackend, _nulldict
from celery.exceptions import BackendGetMetaError, BackendStoreError, ChordError, SecurityError, TimeoutError
from celery.result import result_from_tuple
from celery.utils import serialization
from celery.utils.functional import pass1
from celery.utils.serialization import UnpickleableExceptionWrapper
from celery.utils.serialization import find_pickleable_exception as fnpe
from celery.utils.serialization import get_pickleable_exception as gpe
from celery.utils.serialization import subclass_exception
class wrapobject:
def __init__(self, *args, **kwargs):
self.args = args
class paramexception(Exception):
def __init__(self, param):
self.param = param
class objectexception:
class Nested(Exception):
pass
Oldstyle = None
Unpickleable = subclass_exception(
'Unpickleable', KeyError, 'foo.module',
)
Impossible = subclass_exception(
'Impossible', object, 'foo.module',
)
Lookalike = subclass_exception(
'Lookalike', wrapobject, 'foo.module',
)
class test_nulldict:
def test_nulldict(self):
x = _nulldict()
x['foo'] = 1
x.update(foo=1, bar=2)
x.setdefault('foo', 3)
class test_serialization:
def test_create_exception_cls(self):
assert serialization.create_exception_cls('FooError', 'm')
assert serialization.create_exception_cls('FooError', 'm', KeyError)
class test_Backend_interface:
def setup_method(self):
self.app.conf.accept_content = ['json']
def test_accept_precedence(self):
# default is app.conf.accept_content
accept_content = self.app.conf.accept_content
b1 = BaseBackend(self.app)
assert prepare_accept_content(accept_content) == b1.accept
# accept parameter
b2 = BaseBackend(self.app, accept=['yaml'])
assert len(b2.accept) == 1
assert list(b2.accept)[0] == 'application/x-yaml'
assert prepare_accept_content(['yaml']) == b2.accept
# accept parameter over result_accept_content
self.app.conf.result_accept_content = ['json']
b3 = BaseBackend(self.app, accept=['yaml'])
assert len(b3.accept) == 1
assert list(b3.accept)[0] == 'application/x-yaml'
assert prepare_accept_content(['yaml']) == b3.accept
# conf.result_accept_content if specified
self.app.conf.result_accept_content = ['yaml']
b4 = BaseBackend(self.app)
assert len(b4.accept) == 1
assert list(b4.accept)[0] == 'application/x-yaml'
assert prepare_accept_content(['yaml']) == b4.accept
def test_get_result_meta(self):
b1 = BaseBackend(self.app)
meta = b1._get_result_meta(result={'fizz': 'buzz'},
state=states.SUCCESS, traceback=None,
request=None)
assert meta['status'] == states.SUCCESS
assert meta['result'] == {'fizz': 'buzz'}
assert meta['traceback'] is None
self.app.conf.result_extended = True
args = ['a', 'b']
kwargs = {'foo': 'bar'}
task_name = 'mytask'
b2 = BaseBackend(self.app)
request = Context(args=args, kwargs=kwargs,
task=task_name,
delivery_info={'routing_key': 'celery'})
meta = b2._get_result_meta(result={'fizz': 'buzz'},
state=states.SUCCESS, traceback=None,
request=request, encode=False)
assert meta['name'] == task_name
assert meta['args'] == args
assert meta['kwargs'] == kwargs
assert meta['queue'] == 'celery'
def test_get_result_meta_stamps_attribute_error(self):
class Request:
pass
self.app.conf.result_extended = True
b1 = BaseBackend(self.app)
meta = b1._get_result_meta(result={'fizz': 'buzz'},
state=states.SUCCESS, traceback=None,
request=Request())
assert meta['status'] == states.SUCCESS
assert meta['result'] == {'fizz': 'buzz'}
assert meta['traceback'] is None
def test_get_result_meta_encoded(self):
self.app.conf.result_extended = True
b1 = BaseBackend(self.app)
args = ['a', 'b']
kwargs = {'foo': 'bar'}
request = Context(args=args, kwargs=kwargs)
meta = b1._get_result_meta(result={'fizz': 'buzz'},
state=states.SUCCESS, traceback=None,
request=request, encode=True)
assert meta['args'] == ensure_bytes(b1.encode(args))
assert meta['kwargs'] == ensure_bytes(b1.encode(kwargs))
def test_get_result_meta_with_none(self):
b1 = BaseBackend(self.app)
meta = b1._get_result_meta(result=None,
state=states.SUCCESS, traceback=None,
request=None)
assert meta['status'] == states.SUCCESS
assert meta['result'] is None
assert meta['traceback'] is None
self.app.conf.result_extended = True
args = ['a', 'b']
kwargs = {'foo': 'bar'}
task_name = 'mytask'
b2 = BaseBackend(self.app)
request = Context(args=args, kwargs=kwargs,
task=task_name,
delivery_info={'routing_key': 'celery'})
meta = b2._get_result_meta(result=None,
state=states.SUCCESS, traceback=None,
request=request, encode=False)
assert meta['name'] == task_name
assert meta['args'] == args
assert meta['kwargs'] == kwargs
assert meta['queue'] == 'celery'
def test_get_result_meta_format_date(self):
import datetime
self.app.conf.result_extended = True
b1 = BaseBackend(self.app)
args = ['a', 'b']
kwargs = {'foo': 'bar'}
request = Context(args=args, kwargs=kwargs)
meta = b1._get_result_meta(result={'fizz': 'buzz'},
state=states.SUCCESS, traceback=None,
request=request, format_date=True)
assert isinstance(meta['date_done'], str)
self.app.conf.result_extended = True
b2 = BaseBackend(self.app)
args = ['a', 'b']
kwargs = {'foo': 'bar'}
request = Context(args=args, kwargs=kwargs)
meta = b2._get_result_meta(result={'fizz': 'buzz'},
state=states.SUCCESS, traceback=None,
request=request, format_date=False)
assert isinstance(meta['date_done'], datetime.datetime)
class test_BaseBackend_interface:
def setup_method(self):
self.b = BaseBackend(self.app)
@self.app.task(shared=False)
def callback(result):
pass
self.callback = callback
def test__forget(self):
with pytest.raises(NotImplementedError):
self.b._forget('SOMExx-N0Nex1stant-IDxx-')
def test_forget(self):
with pytest.raises(NotImplementedError):
self.b.forget('SOMExx-N0nex1stant-IDxx-')
def test_on_chord_part_return(self):
self.b.on_chord_part_return(None, None, None)
def test_apply_chord(self, unlock='celery.chord_unlock'):
self.app.tasks[unlock] = Mock()
header_result_args = (
uuid(),
[self.app.AsyncResult(x) for x in range(3)],
)
self.b.apply_chord(header_result_args, self.callback.s())
assert self.app.tasks[unlock].apply_async.call_count
def test_chord_unlock_queue(self, unlock='celery.chord_unlock'):
self.app.tasks[unlock] = Mock()
header_result_args = (
uuid(),
[self.app.AsyncResult(x) for x in range(3)],
)
body = self.callback.s()
self.b.apply_chord(header_result_args, body)
called_kwargs = self.app.tasks[unlock].apply_async.call_args[1]
assert called_kwargs['queue'] == 'testcelery'
routing_queue = Mock()
routing_queue.name = "routing_queue"
self.app.amqp.router.route = Mock(return_value={
"queue": routing_queue
})
self.b.apply_chord(header_result_args, body)
assert self.app.amqp.router.route.call_args[0][1] == body.name
called_kwargs = self.app.tasks[unlock].apply_async.call_args[1]
assert called_kwargs["queue"] == "routing_queue"
self.b.apply_chord(header_result_args, body.set(queue='test_queue'))
called_kwargs = self.app.tasks[unlock].apply_async.call_args[1]
assert called_kwargs['queue'] == 'test_queue'
@self.app.task(shared=False, queue='test_queue_two')
def callback_queue(result):
pass
self.b.apply_chord(header_result_args, callback_queue.s())
called_kwargs = self.app.tasks[unlock].apply_async.call_args[1]
assert called_kwargs['queue'] == 'test_queue_two'
with self.Celery() as app2:
@app2.task(name='callback_different_app', shared=False)
def callback_different_app(result):
pass
callback_different_app_signature = self.app.signature('callback_different_app')
self.b.apply_chord(header_result_args, callback_different_app_signature)
called_kwargs = self.app.tasks[unlock].apply_async.call_args[1]
assert called_kwargs['queue'] == 'routing_queue'
callback_different_app_signature.set(queue='test_queue_three')
self.b.apply_chord(header_result_args, callback_different_app_signature)
called_kwargs = self.app.tasks[unlock].apply_async.call_args[1]
assert called_kwargs['queue'] == 'test_queue_three'
class test_exception_pickle:
def test_BaseException(self):
assert fnpe(Exception()) is None
def test_get_pickleable_exception(self):
exc = Exception('foo')
assert gpe(exc) == exc
def test_unpickleable(self):
assert isinstance(fnpe(Unpickleable()), KeyError)
assert fnpe(Impossible()) is None
class test_prepare_exception:
def setup_method(self):
self.b = BaseBackend(self.app)
def test_unpickleable(self):
self.b.serializer = 'pickle'
x = self.b.prepare_exception(Unpickleable(1, 2, 'foo'))
assert isinstance(x, KeyError)
y = self.b.exception_to_python(x)
assert isinstance(y, KeyError)
def test_json_exception_arguments(self):
self.b.serializer = 'json'
x = self.b.prepare_exception(Exception(object))
assert x == {
'exc_message': serialization.ensure_serializable(
(object,), self.b.encode),
'exc_type': Exception.__name__,
'exc_module': Exception.__module__}
y = self.b.exception_to_python(x)
assert isinstance(y, Exception)
def test_json_exception_nested(self):
self.b.serializer = 'json'
x = self.b.prepare_exception(objectexception.Nested('msg'))
assert x == {
'exc_message': ('msg',),
'exc_type': 'objectexception.Nested',
'exc_module': objectexception.Nested.__module__}
y = self.b.exception_to_python(x)
assert isinstance(y, objectexception.Nested)
def test_impossible(self):
self.b.serializer = 'pickle'
x = self.b.prepare_exception(Impossible())
assert isinstance(x, UnpickleableExceptionWrapper)
assert str(x)
y = self.b.exception_to_python(x)
assert y.__class__.__name__ == 'Impossible'
assert y.__class__.__module__ == 'foo.module'
def test_regular(self):
self.b.serializer = 'pickle'
x = self.b.prepare_exception(KeyError('baz'))
assert isinstance(x, KeyError)
y = self.b.exception_to_python(x)
assert isinstance(y, KeyError)
def test_unicode_message(self):
message = '\u03ac'
x = self.b.prepare_exception(Exception(message))
assert x == {'exc_message': (message,),
'exc_type': Exception.__name__,
'exc_module': Exception.__module__}
class KVBackend(KeyValueStoreBackend):
mget_returns_dict = False
def __init__(self, app, *args, **kwargs):
self.db = {}
super().__init__(app, *args, **kwargs)
def get(self, key):
return self.db.get(key)
def _set_with_state(self, key, value, state):
self.db[key] = value
def mget(self, keys):
if self.mget_returns_dict:
return {key: self.get(key) for key in keys}
else:
return [self.get(k) for k in keys]
def delete(self, key):
self.db.pop(key, None)
class DictBackend(BaseBackend):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self._data = {'can-delete': {'result': 'foo'}}
def _restore_group(self, group_id):
if group_id == 'exists':
return {'result': 'group'}
def _get_task_meta_for(self, task_id):
if task_id == 'task-exists':
return {'result': 'task'}
def _delete_group(self, group_id):
self._data.pop(group_id, None)
class test_BaseBackend_dict:
def setup_method(self):
self.b = DictBackend(app=self.app)
@self.app.task(shared=False, bind=True)
def bound_errback(self, result):
pass
@self.app.task(shared=False)
def errback(arg1, arg2):
errback.last_result = arg1 + arg2
self.bound_errback = bound_errback
self.errback = errback
def test_delete_group(self):
self.b.delete_group('can-delete')
assert 'can-delete' not in self.b._data
def test_prepare_exception_json(self):
x = DictBackend(self.app, serializer='json')
e = x.prepare_exception(KeyError('foo'))
assert 'exc_type' in e
e = x.exception_to_python(e)
assert e.__class__.__name__ == 'KeyError'
assert str(e).strip('u') == "'foo'"
def test_save_group(self):
b = BaseBackend(self.app)
b._save_group = Mock()
b.save_group('foofoo', 'xxx')
b._save_group.assert_called_with('foofoo', 'xxx')
def test_add_to_chord_interface(self):
b = BaseBackend(self.app)
with pytest.raises(NotImplementedError):
b.add_to_chord('group_id', 'sig')
def test_forget_interface(self):
b = BaseBackend(self.app)
with pytest.raises(NotImplementedError):
b.forget('foo')
def test_restore_group(self):
assert self.b.restore_group('missing') is None
assert self.b.restore_group('missing') is None
assert self.b.restore_group('exists') == 'group'
assert self.b.restore_group('exists') == 'group'
assert self.b.restore_group('exists', cache=False) == 'group'
def test_reload_group_result(self):
self.b._cache = {}
self.b.reload_group_result('exists')
self.b._cache['exists'] = {'result': 'group'}
def test_reload_task_result(self):
self.b._cache = {}
self.b.reload_task_result('task-exists')
self.b._cache['task-exists'] = {'result': 'task'}
def test_fail_from_current_stack(self):
import inspect
self.b.mark_as_failure = Mock()
frame_list = []
def raise_dummy():
frame_str_temp = str(inspect.currentframe().__repr__)
frame_list.append(frame_str_temp)
raise KeyError('foo')
try:
raise_dummy()
except KeyError as exc:
self.b.fail_from_current_stack('task_id')
self.b.mark_as_failure.assert_called()
args = self.b.mark_as_failure.call_args[0]
assert args[0] == 'task_id'
assert args[1] is exc
assert args[2]
tb_ = exc.__traceback__
while tb_ is not None:
if str(tb_.tb_frame.__repr__) == frame_list[0]:
assert len(tb_.tb_frame.f_locals) == 0
tb_ = tb_.tb_next
def test_prepare_value_serializes_group_result(self):
self.b.serializer = 'json'
g = self.app.GroupResult('group_id', [self.app.AsyncResult('foo')])
v = self.b.prepare_value(g)
assert isinstance(v, (list, tuple))
assert result_from_tuple(v, app=self.app) == g
v2 = self.b.prepare_value(g[0])
assert isinstance(v2, (list, tuple))
assert result_from_tuple(v2, app=self.app) == g[0]
self.b.serializer = 'pickle'
assert isinstance(self.b.prepare_value(g), self.app.GroupResult)
def test_is_cached(self):
b = BaseBackend(app=self.app, max_cached_results=1)
b._cache['foo'] = 1
assert b.is_cached('foo')
assert not b.is_cached('false')
def test_mark_as_done__chord(self):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
b.on_chord_part_return = Mock()
b.mark_as_done('id', 10, request=request)
b.on_chord_part_return.assert_called_with(request, states.SUCCESS, 10)
def test_mark_as_failure__bound_errback_eager(self):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
request.delivery_info = {
'is_eager': True
}
request.errbacks = [
self.bound_errback.subtask(args=[1], immutable=True)]
exc = KeyError()
group = self.patching('celery.backends.base.group')
b.mark_as_failure('id', exc, request=request)
group.assert_called_with(request.errbacks, app=self.app)
group.return_value.apply.assert_called_with(
(request.id, ), parent_id=request.id, root_id=request.root_id)
def test_mark_as_failure__bound_errback(self):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
request.delivery_info = {}
request.errbacks = [
self.bound_errback.subtask(args=[1], immutable=True)]
exc = KeyError()
group = self.patching('celery.backends.base.group')
b.mark_as_failure('id', exc, request=request)
group.assert_called_with(request.errbacks, app=self.app)
group.return_value.apply_async.assert_called_with(
(request.id, ), parent_id=request.id, root_id=request.root_id)
def test_mark_as_failure__errback(self):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
request.errbacks = [self.errback.subtask(args=[2, 3], immutable=True)]
exc = KeyError()
b.mark_as_failure('id', exc, request=request)
assert self.errback.last_result == 5
@patch('celery.backends.base.group')
def test_class_based_task_can_be_used_as_error_callback(self, mock_group):
b = BaseBackend(app=self.app)
b._store_result = Mock()
class TaskBasedClass(Task):
def run(self):
pass
TaskBasedClass = self.app.register_task(TaskBasedClass())
request = Mock(name='request')
request.errbacks = [TaskBasedClass.subtask(args=[], immutable=True)]
exc = KeyError()
b.mark_as_failure('id', exc, request=request)
mock_group.assert_called_once_with(request.errbacks, app=self.app)
@patch('celery.backends.base.group')
def test_unregistered_task_can_be_used_as_error_callback(self, mock_group):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
request.errbacks = [signature('doesnotexist',
immutable=True)]
exc = KeyError()
b.mark_as_failure('id', exc, request=request)
mock_group.assert_called_once_with(request.errbacks, app=self.app)
def test_mark_as_failure__chord(self):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
request.errbacks = []
b.on_chord_part_return = Mock()
exc = KeyError()
b.mark_as_failure('id', exc, request=request)
b.on_chord_part_return.assert_called_with(request, states.FAILURE, exc)
def test_mark_as_revoked__chord(self):
b = BaseBackend(app=self.app)
b._store_result = Mock()
request = Mock(name='request')
request.errbacks = []
b.on_chord_part_return = Mock()
b.mark_as_revoked('id', 'revoked', request=request)
b.on_chord_part_return.assert_called_with(request, states.REVOKED, ANY)
def test_chord_error_from_stack_raises(self):
class ExpectedException(Exception):
pass
b = BaseBackend(app=self.app)
callback = MagicMock(name='callback')
callback.options = {'link_error': []}
callback.keys.return_value = []
task = self.app.tasks[callback.task] = Mock()
b.fail_from_current_stack = Mock()
self.patching('celery.group')
with patch.object(
b, "_call_task_errbacks", side_effect=ExpectedException()
) as mock_call_errbacks:
b.chord_error_from_stack(callback, exc=ValueError())
task.backend.fail_from_current_stack.assert_called_with(
callback.id, exc=mock_call_errbacks.side_effect,
)
def test_exception_to_python_when_None(self):
b = BaseBackend(app=self.app)
assert b.exception_to_python(None) is None
def test_not_an_actual_exc_info(self):
pass
def test_not_an_exception_but_a_callable(self):
x = {
'exc_message': ('echo 1',),
'exc_type': 'system',
'exc_module': 'os'
}
with pytest.raises(SecurityError,
match=re.escape(r"Expected an exception class, got os.system with payload ('echo 1',)")):
self.b.exception_to_python(x)
def test_not_an_exception_but_another_object(self):
x = {
'exc_message': (),
'exc_type': 'object',
'exc_module': 'builtins'
}
with pytest.raises(SecurityError,
match=re.escape(r"Expected an exception class, got builtins.object with payload ()")):
self.b.exception_to_python(x)
def test_exception_to_python_when_attribute_exception(self):
b = BaseBackend(app=self.app)
test_exception = {'exc_type': 'AttributeDoesNotExist',
'exc_module': 'celery',
'exc_message': ['Raise Custom Message']}
result_exc = b.exception_to_python(test_exception)
assert str(result_exc) == 'Raise Custom Message'
def test_exception_to_python_when_type_error(self):
b = BaseBackend(app=self.app)
celery.TestParamException = paramexception
test_exception = {'exc_type': 'TestParamException',
'exc_module': 'celery',
'exc_message': []}
result_exc = b.exception_to_python(test_exception)
del celery.TestParamException
assert str(result_exc) == "<class 't.unit.backends.test_base.paramexception'>([])"
def test_wait_for__on_interval(self):
self.patching('time.sleep')
b = BaseBackend(app=self.app)
b._get_task_meta_for = Mock()
b._get_task_meta_for.return_value = {'status': states.PENDING}
callback = Mock(name='callback')
with pytest.raises(TimeoutError):
b.wait_for(task_id='1', on_interval=callback, timeout=1)
callback.assert_called_with()
b._get_task_meta_for.return_value = {'status': states.SUCCESS}
b.wait_for(task_id='1', timeout=None)
def test_get_children(self):
b = BaseBackend(app=self.app)
b._get_task_meta_for = Mock()
b._get_task_meta_for.return_value = {}
assert b.get_children('id') is None
b._get_task_meta_for.return_value = {'children': 3}
assert b.get_children('id') == 3
class test_KeyValueStoreBackend:
def setup_method(self):
self.b = KVBackend(app=self.app)
def test_on_chord_part_return(self):
assert not self.b.implements_incr
self.b.on_chord_part_return(None, None, None)
def test_get_store_delete_result(self):
tid = uuid()
self.b.mark_as_done(tid, 'Hello world')
assert self.b.get_result(tid) == 'Hello world'
assert self.b.get_state(tid) == states.SUCCESS
self.b.forget(tid)
assert self.b.get_state(tid) == states.PENDING
@pytest.mark.parametrize('serializer',
['json', 'pickle', 'yaml', 'msgpack'])
def test_store_result_parent_id(self, serializer):
self.app.conf.accept_content = ('json', serializer)
self.b = KVBackend(app=self.app, serializer=serializer)
tid = uuid()
pid = uuid()
state = 'SUCCESS'
result = 10
request = Context(parent_id=pid)
self.b.store_result(
tid, state=state, result=result, request=request,
)
stored_meta = self.b.decode(self.b.get(self.b.get_key_for_task(tid)))
assert stored_meta['parent_id'] == request.parent_id
def test_store_result_group_id(self):
tid = uuid()
state = 'SUCCESS'
result = 10
request = Context(group='gid', children=[])
self.b.store_result(
tid, state=state, result=result, request=request,
)
stored_meta = self.b.decode(self.b.get(self.b.get_key_for_task(tid)))
assert stored_meta['group_id'] == request.group
def test_store_result_race_second_write_should_ignore_if_previous_success(self):
tid = uuid()
state = 'SUCCESS'
result = 10
request = Context(group='gid', children=[])
self.b.store_result(
tid, state=state, result=result, request=request,
)
self.b.store_result(
tid, state=states.FAILURE, result=result, request=request,
)
stored_meta = self.b.decode(self.b.get(self.b.get_key_for_task(tid)))
assert stored_meta['status'] == states.SUCCESS
def test_get_key_for_task_none_task_id(self):
with pytest.raises(ValueError):
self.b.get_key_for_task(None)
def test_get_key_for_group_none_group_id(self):
with pytest.raises(ValueError):
self.b.get_key_for_task(None)
def test_get_key_for_chord_none_group_id(self):
with pytest.raises(ValueError):
self.b.get_key_for_group(None)
def test_strip_prefix(self):
x = self.b.get_key_for_task('x1b34')
assert self.b._strip_prefix(x) == 'x1b34'
assert self.b._strip_prefix('x1b34') == 'x1b34'
def test_global_keyprefix(self):
global_keyprefix = "test_global_keyprefix"
app = copy.deepcopy(self.app)
app.conf.get('result_backend_transport_options', {}).update({"global_keyprefix": global_keyprefix})
b = KVBackend(app=app)
tid = uuid()
assert bytes_to_str(b.get_key_for_task(tid)) == f"{global_keyprefix}_celery-task-meta-{tid}"
assert bytes_to_str(b.get_key_for_group(tid)) == f"{global_keyprefix}_celery-taskset-meta-{tid}"
assert bytes_to_str(b.get_key_for_chord(tid)) == f"{global_keyprefix}_chord-unlock-{tid}"
global_keyprefix = "test_global_keyprefix_"
app = copy.deepcopy(self.app)
app.conf.get('result_backend_transport_options', {}).update({"global_keyprefix": global_keyprefix})
b = KVBackend(app=app)
tid = uuid()
assert bytes_to_str(b.get_key_for_task(tid)) == f"{global_keyprefix}celery-task-meta-{tid}"
assert bytes_to_str(b.get_key_for_group(tid)) == f"{global_keyprefix}celery-taskset-meta-{tid}"
assert bytes_to_str(b.get_key_for_chord(tid)) == f"{global_keyprefix}chord-unlock-{tid}"
global_keyprefix = "test_global_keyprefix:"
app = copy.deepcopy(self.app)
app.conf.get('result_backend_transport_options', {}).update({"global_keyprefix": global_keyprefix})
b = KVBackend(app=app)
tid = uuid()
assert bytes_to_str(b.get_key_for_task(tid)) == f"{global_keyprefix}celery-task-meta-{tid}"
assert bytes_to_str(b.get_key_for_group(tid)) == f"{global_keyprefix}celery-taskset-meta-{tid}"
assert bytes_to_str(b.get_key_for_chord(tid)) == f"{global_keyprefix}chord-unlock-{tid}"
def test_global_keyprefix_missing(self):
tid = uuid()
assert bytes_to_str(self.b.get_key_for_task(tid)) == f"celery-task-meta-{tid}"
assert bytes_to_str(self.b.get_key_for_group(tid)) == f"celery-taskset-meta-{tid}"
assert bytes_to_str(self.b.get_key_for_chord(tid)) == f"chord-unlock-{tid}"
def test_get_many(self):
for is_dict in True, False:
self.b.mget_returns_dict = is_dict
ids = {uuid(): i for i in range(10)}
for id, i in ids.items():
self.b.mark_as_done(id, i)
it = self.b.get_many(list(ids), interval=0.01)
for i, (got_id, got_state) in enumerate(it):
assert got_state['result'] == ids[got_id]
assert i == 9
assert list(self.b.get_many(list(ids), interval=0.01))
self.b._cache.clear()
callback = Mock(name='callback')
it = self.b.get_many(
list(ids),
on_message=callback,
interval=0.05
)
for i, (got_id, got_state) in enumerate(it):
assert got_state['result'] == ids[got_id]
assert i == 9
assert list(
self.b.get_many(list(ids), interval=0.01)
)
callback.assert_has_calls([
call(ANY) for id in ids
])
def test_get_many_times_out(self):
tasks = [uuid() for _ in range(4)]
self.b._cache[tasks[1]] = {'status': 'PENDING'}
with pytest.raises(self.b.TimeoutError):
list(self.b.get_many(tasks, timeout=0.01, interval=0.01))
def test_get_many_passes_ready_states(self):
tasks_length = 10
ready_states = frozenset({states.SUCCESS})
self.b._cache.clear()
ids = {uuid(): i for i in range(tasks_length)}
for id, i in ids.items():
if i % 2 == 0:
self.b.mark_as_done(id, i)
else:
self.b.mark_as_failure(id, Exception())
it = self.b.get_many(list(ids), interval=0.01, max_iterations=1, READY_STATES=ready_states)
it_list = list(it)
assert all([got_state['status'] in ready_states for (got_id, got_state) in it_list])
assert len(it_list) == tasks_length / 2
def test_chord_part_return_no_gid(self):
self.b.implements_incr = True
task = Mock()
state = 'SUCCESS'
result = 10
task.request.group = None
self.b.get_key_for_chord = Mock()
self.b.get_key_for_chord.side_effect = AssertionError(
'should not get here',
)
assert self.b.on_chord_part_return(
task.request, state, result) is None
@patch('celery.backends.base.GroupResult')
@patch('celery.backends.base.maybe_signature')
def test_chord_part_return_restore_raises(self, maybe_signature,
GroupResult):
self.b.implements_incr = True
GroupResult.restore.side_effect = KeyError()
self.b.chord_error_from_stack = Mock()
callback = Mock(name='callback')
request = Mock(name='request')
request.group = 'gid'
maybe_signature.return_value = callback
self.b.on_chord_part_return(request, states.SUCCESS, 10)
self.b.chord_error_from_stack.assert_called_with(
callback, ANY,
)
@patch('celery.backends.base.GroupResult')
@patch('celery.backends.base.maybe_signature')
def test_chord_part_return_restore_empty(self, maybe_signature,
GroupResult):
self.b.implements_incr = True
GroupResult.restore.return_value = None
self.b.chord_error_from_stack = Mock()
callback = Mock(name='callback')
request = Mock(name='request')
request.group = 'gid'
maybe_signature.return_value = callback
self.b.on_chord_part_return(request, states.SUCCESS, 10)
self.b.chord_error_from_stack.assert_called_with(
callback, ANY,
)
def test_filter_ready(self):
self.b.decode_result = Mock()
self.b.decode_result.side_effect = pass1
assert len(list(self.b._filter_ready([
(1, {'status': states.RETRY}),
(2, {'status': states.FAILURE}),
(3, {'status': states.SUCCESS}),
]))) == 2
@contextmanager
def _chord_part_context(self, b):
@self.app.task(shared=False)
def callback(result):
pass
b.implements_incr = True
b.client = Mock()
with patch('celery.backends.base.GroupResult') as GR:
deps = GR.restore.return_value = Mock(name='DEPS')
deps.__len__ = Mock()
deps.__len__.return_value = 10
b.incr = Mock()
b.incr.return_value = 10
b.expire = Mock()
task = Mock()
task.request.group = 'grid'
cb = task.request.chord = callback.s()
task.request.chord.freeze()
callback.backend = b
callback.backend.fail_from_current_stack = Mock()
yield task, deps, cb
def test_chord_part_return_timeout(self):
with self._chord_part_context(self.b) as (task, deps, _):
try:
self.app.conf.result_chord_join_timeout += 1.0
self.b.on_chord_part_return(task.request, 'SUCCESS', 10)
finally:
self.app.conf.result_chord_join_timeout -= 1.0
self.b.expire.assert_not_called()
deps.delete.assert_called_with()
deps.join_native.assert_called_with(propagate=True, timeout=4.0)
def test_chord_part_return_propagate_set(self):
with self._chord_part_context(self.b) as (task, deps, _):
self.b.on_chord_part_return(task.request, 'SUCCESS', 10)
self.b.expire.assert_not_called()
deps.delete.assert_called_with()
deps.join_native.assert_called_with(propagate=True, timeout=3.0)
def test_chord_part_return_propagate_default(self):
with self._chord_part_context(self.b) as (task, deps, _):
self.b.on_chord_part_return(task.request, 'SUCCESS', 10)
self.b.expire.assert_not_called()
deps.delete.assert_called_with()
deps.join_native.assert_called_with(propagate=True, timeout=3.0)
def test_chord_part_return_join_raises_internal(self):
with self._chord_part_context(self.b) as (task, deps, callback):
deps._failed_join_report = lambda: iter([])
deps.join_native.side_effect = KeyError('foo')
self.b.on_chord_part_return(task.request, 'SUCCESS', 10)
self.b.fail_from_current_stack.assert_called()
args = self.b.fail_from_current_stack.call_args
exc = args[1]['exc']
assert isinstance(exc, ChordError)
assert 'foo' in str(exc)
def test_chord_part_return_join_raises_task(self):
b = KVBackend(serializer='pickle', app=self.app)
with self._chord_part_context(b) as (task, deps, callback):
deps._failed_join_report = lambda: iter([
self.app.AsyncResult('culprit'),
])
deps.join_native.side_effect = KeyError('foo')
b.on_chord_part_return(task.request, 'SUCCESS', 10)
b.fail_from_current_stack.assert_called()
args = b.fail_from_current_stack.call_args
exc = args[1]['exc']
assert isinstance(exc, ChordError)
assert 'Dependency culprit raised' in str(exc)
def test_restore_group_from_json(self):
b = KVBackend(serializer='json', app=self.app)
g = self.app.GroupResult(
'group_id',
[self.app.AsyncResult('a'), self.app.AsyncResult('b')],
)
b._save_group(g.id, g)
g2 = b._restore_group(g.id)['result']
assert g2 == g
def test_restore_group_from_pickle(self):
b = KVBackend(serializer='pickle', app=self.app)
g = self.app.GroupResult(
'group_id',
[self.app.AsyncResult('a'), self.app.AsyncResult('b')],
)
b._save_group(g.id, g)
g2 = b._restore_group(g.id)['result']
assert g2 == g
def test_chord_apply_fallback(self):
self.b.implements_incr = False
self.b.fallback_chord_unlock = Mock()
header_result_args = (
'group_id',
[self.app.AsyncResult(x) for x in range(3)],
)
self.b.apply_chord(
header_result_args, 'body', foo=1,
)
self.b.fallback_chord_unlock.assert_called_with(
self.app.GroupResult(*header_result_args), 'body', foo=1,
)
def test_get_missing_meta(self):
assert self.b.get_result('xxx-missing') is None
assert self.b.get_state('xxx-missing') == states.PENDING
def test_save_restore_delete_group(self):
tid = uuid()
tsr = self.app.GroupResult(
tid, [self.app.AsyncResult(uuid()) for _ in range(10)],
)
self.b.save_group(tid, tsr)
self.b.restore_group(tid)
assert self.b.restore_group(tid) == tsr
self.b.delete_group(tid)
assert self.b.restore_group(tid) is None
def test_restore_missing_group(self):
assert self.b.restore_group('xxx-nonexistant') is None
class test_KeyValueStoreBackend_interface:
def test_get(self):
with pytest.raises(NotImplementedError):
KeyValueStoreBackend(self.app).get('a')
def test_set(self):
with pytest.raises(NotImplementedError):
KeyValueStoreBackend(self.app)._set_with_state('a', 1, states.SUCCESS)
def test_incr(self):
with pytest.raises(NotImplementedError):
KeyValueStoreBackend(self.app).incr('a')
def test_cleanup(self):
assert not KeyValueStoreBackend(self.app).cleanup()
def test_delete(self):
with pytest.raises(NotImplementedError):
KeyValueStoreBackend(self.app).delete('a')
def test_mget(self):
with pytest.raises(NotImplementedError):
KeyValueStoreBackend(self.app).mget(['a'])
def test_forget(self):
with pytest.raises(NotImplementedError):
KeyValueStoreBackend(self.app).forget('a')
class test_DisabledBackend:
def test_store_result(self):
DisabledBackend(self.app).store_result()
def test_is_disabled(self):
with pytest.raises(NotImplementedError):
DisabledBackend(self.app).get_state('foo')
def test_as_uri(self):
assert DisabledBackend(self.app).as_uri() == 'disabled://'
@pytest.mark.celery(result_backend='disabled')
def test_chord_raises_error(self):
with pytest.raises(NotImplementedError):
chord(self.add.s(i, i) for i in range(10))(self.add.s([2]))
@pytest.mark.celery(result_backend='disabled')
def test_chain_with_chord_raises_error(self):
with pytest.raises(NotImplementedError):
(self.add.s(2, 2) |
group(self.add.s(2, 2),
self.add.s(5, 6)) | self.add.s()).delay()
class test_as_uri:
def setup_method(self):
self.b = BaseBackend(
app=self.app,
url='sch://uuuu:pwpw@hostname.dom'
)
def test_as_uri_include_password(self):
assert self.b.as_uri(True) == self.b.url
def test_as_uri_exclude_password(self):
assert self.b.as_uri() == 'sch://uuuu:**@hostname.dom/'
class test_backend_retries:
def test_should_retry_exception(self):
assert not BaseBackend(app=self.app).exception_safe_to_retry(Exception("test"))
def test_get_failed_never_retries(self):
self.app.conf.result_backend_always_retry, prev = False, self.app.conf.result_backend_always_retry
expected_exc = Exception("failed")
try:
b = BaseBackend(app=self.app)
b.exception_safe_to_retry = lambda exc: True
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.side_effect = [
expected_exc,
{'status': states.SUCCESS, 'result': 42}
]
try:
b.get_task_meta(sentinel.task_id)
assert False
except Exception as exc:
assert b._sleep.call_count == 0
assert exc == expected_exc
finally:
self.app.conf.result_backend_always_retry = prev
def test_get_with_retries(self):
self.app.conf.result_backend_always_retry, prev = True, self.app.conf.result_backend_always_retry
try:
b = BaseBackend(app=self.app)
b.exception_safe_to_retry = lambda exc: True
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.side_effect = [
Exception("failed"),
{'status': states.SUCCESS, 'result': 42}
]
res = b.get_task_meta(sentinel.task_id)
assert res == {'status': states.SUCCESS, 'result': 42}
assert b._sleep.call_count == 1
finally:
self.app.conf.result_backend_always_retry = prev
def test_get_reaching_max_retries(self):
self.app.conf.result_backend_always_retry, prev = True, self.app.conf.result_backend_always_retry
self.app.conf.result_backend_max_retries, prev_max_retries = 0, self.app.conf.result_backend_max_retries
try:
b = BaseBackend(app=self.app)
b.exception_safe_to_retry = lambda exc: True
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.side_effect = [
Exception("failed"),
{'status': states.SUCCESS, 'result': 42}
]
try:
b.get_task_meta(sentinel.task_id)
assert False
except BackendGetMetaError:
assert b._sleep.call_count == 0
finally:
self.app.conf.result_backend_always_retry = prev
self.app.conf.result_backend_max_retries = prev_max_retries
def test_get_unsafe_exception(self):
self.app.conf.result_backend_always_retry, prev = True, self.app.conf.result_backend_always_retry
expected_exc = Exception("failed")
try:
b = BaseBackend(app=self.app)
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.side_effect = [
expected_exc,
{'status': states.SUCCESS, 'result': 42}
]
try:
b.get_task_meta(sentinel.task_id)
assert False
except Exception as exc:
assert b._sleep.call_count == 0
assert exc == expected_exc
finally:
self.app.conf.result_backend_always_retry = prev
def test_store_result_never_retries(self):
self.app.conf.result_backend_always_retry, prev = False, self.app.conf.result_backend_always_retry
expected_exc = Exception("failed")
try:
b = BaseBackend(app=self.app)
b.exception_safe_to_retry = lambda exc: True
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.return_value = {
'status': states.RETRY,
'result': {
"exc_type": "Exception",
"exc_message": ["failed"],
"exc_module": "builtins",
},
}
b._store_result = Mock()
b._store_result.side_effect = [
expected_exc,
42
]
try:
b.store_result(sentinel.task_id, 42, states.SUCCESS)
except Exception as exc:
assert b._sleep.call_count == 0
assert exc == expected_exc
finally:
self.app.conf.result_backend_always_retry = prev
def test_store_result_with_retries(self):
self.app.conf.result_backend_always_retry, prev = True, self.app.conf.result_backend_always_retry
try:
b = BaseBackend(app=self.app)
b.exception_safe_to_retry = lambda exc: True
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.return_value = {
'status': states.RETRY,
'result': {
"exc_type": "Exception",
"exc_message": ["failed"],
"exc_module": "builtins",
},
}
b._store_result = Mock()
b._store_result.side_effect = [
Exception("failed"),
42
]
res = b.store_result(sentinel.task_id, 42, states.SUCCESS)
assert res == 42
assert b._sleep.call_count == 1
finally:
self.app.conf.result_backend_always_retry = prev
def test_store_result_reaching_max_retries(self):
self.app.conf.result_backend_always_retry, prev = True, self.app.conf.result_backend_always_retry
self.app.conf.result_backend_max_retries, prev_max_retries = 0, self.app.conf.result_backend_max_retries
try:
b = BaseBackend(app=self.app)
b.exception_safe_to_retry = lambda exc: True
b._sleep = Mock()
b._get_task_meta_for = Mock()
b._get_task_meta_for.return_value = {
'status': states.RETRY,
'result': {
"exc_type": "Exception",
"exc_message": ["failed"],
"exc_module": "builtins",
},
}
b._store_result = Mock()
b._store_result.side_effect = [
Exception("failed"),
42
]
try:
b.store_result(sentinel.task_id, 42, states.SUCCESS)
assert False
except BackendStoreError:
assert b._sleep.call_count == 0
finally:
self.app.conf.result_backend_always_retry = prev
self.app.conf.result_backend_max_retries = prev_max_retries
def test_result_backend_thread_safe(self):
# Should identify the backend as thread safe
self.app.conf.result_backend_thread_safe = True
b = BaseBackend(app=self.app)
assert b.thread_safe is True
def test_result_backend_not_thread_safe(self):
# Should identify the backend as not being thread safe
self.app.conf.result_backend_thread_safe = False
b = BaseBackend(app=self.app)
assert b.thread_safe is False
|