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
|
import math
import time
from datetime import datetime, timedelta
import pytest
from redis import exceptions
from redis.commands.core import HashDataPersistOptions
from tests.conftest import skip_if_server_version_lt
from tests.test_utils import redis_server_time
@skip_if_server_version_lt("7.3.240")
def test_hexpire_basic(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
assert r.hexpire("test:hash", 1, "field1") == [1]
time.sleep(1.1)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hexpire_with_timedelta(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
assert r.hexpire("test:hash", timedelta(seconds=1), "field1") == [1]
time.sleep(1.1)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hexpire_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
assert r.hexpire("test:hash", 2, "field1", xx=True) == [0]
assert r.hexpire("test:hash", 2, "field1", nx=True) == [1]
assert r.hexpire("test:hash", 1, "field1", xx=True) == [1]
assert r.hexpire("test:hash", 2, "field1", nx=True) == [0]
time.sleep(1.1)
assert r.hexists("test:hash", "field1") is False
r.hset("test:hash", "field1", "value1")
r.hexpire("test:hash", 2, "field1")
assert r.hexpire("test:hash", 1, "field1", gt=True) == [0]
assert r.hexpire("test:hash", 1, "field1", lt=True) == [1]
time.sleep(1.1)
assert r.hexists("test:hash", "field1") is False
@skip_if_server_version_lt("7.3.240")
def test_hexpire_nonexistent_key_or_field(r):
r.delete("test:hash")
assert r.hexpire("test:hash", 1, "field1") == [-2]
r.hset("test:hash", "field1", "value1")
assert r.hexpire("test:hash", 1, "nonexistent_field") == [-2]
@skip_if_server_version_lt("7.3.240")
def test_hexpire_multiple_fields(r):
r.delete("test:hash")
r.hset(
"test:hash",
mapping={"field1": "value1", "field2": "value2", "field3": "value3"},
)
assert r.hexpire("test:hash", 1, "field1", "field2") == [1, 1]
time.sleep(1.1)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is False
assert r.hexists("test:hash", "field3") is True
@skip_if_server_version_lt("7.3.240")
def test_hexpire_multiple_condition_flags_error(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
with pytest.raises(ValueError) as e:
r.hexpire("test:hash", 1, "field1", nx=True, xx=True)
assert "Only one of" in str(e)
@skip_if_server_version_lt("7.3.240")
def test_hpexpire_basic(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
assert r.hpexpire("test:hash", 500, "field1") == [1]
time.sleep(0.6)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hpexpire_with_timedelta(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
assert r.hpexpire("test:hash", timedelta(milliseconds=500), "field1") == [1]
time.sleep(0.6)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hpexpire_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
assert r.hpexpire("test:hash", 1500, "field1", xx=True) == [0]
assert r.hpexpire("test:hash", 1500, "field1", nx=True) == [1]
assert r.hpexpire("test:hash", 500, "field1", xx=True) == [1]
assert r.hpexpire("test:hash", 1500, "field1", nx=True) == [0]
time.sleep(0.6)
assert r.hexists("test:hash", "field1") is False
r.hset("test:hash", "field1", "value1")
r.hpexpire("test:hash", 1000, "field1")
assert r.hpexpire("test:hash", 500, "field1", gt=True) == [0]
assert r.hpexpire("test:hash", 500, "field1", lt=True) == [1]
time.sleep(0.6)
assert r.hexists("test:hash", "field1") is False
@skip_if_server_version_lt("7.3.240")
def test_hpexpire_nonexistent_key_or_field(r):
r.delete("test:hash")
assert r.hpexpire("test:hash", 500, "field1") == [-2]
r.hset("test:hash", "field1", "value1")
assert r.hpexpire("test:hash", 500, "nonexistent_field") == [-2]
@skip_if_server_version_lt("7.3.240")
def test_hpexpire_multiple_fields(r):
r.delete("test:hash")
r.hset(
"test:hash",
mapping={"field1": "value1", "field2": "value2", "field3": "value3"},
)
assert r.hpexpire("test:hash", 500, "field1", "field2") == [1, 1]
time.sleep(0.6)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is False
assert r.hexists("test:hash", "field3") is True
@skip_if_server_version_lt("7.3.240")
def test_hpexpire_multiple_condition_flags_error(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
with pytest.raises(ValueError) as e:
r.hpexpire("test:hash", 500, "field1", nx=True, xx=True)
assert "Only one of" in str(e)
@skip_if_server_version_lt("7.3.240")
def test_hexpireat_basic(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
exp_time = math.ceil((datetime.now() + timedelta(seconds=1)).timestamp())
assert r.hexpireat("test:hash", exp_time, "field1") == [1]
time.sleep(2.1)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hexpireat_with_datetime(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
exp_time = (datetime.now() + timedelta(seconds=2)).replace(microsecond=0)
assert r.hexpireat("test:hash", exp_time, "field1") == [1]
time.sleep(2.1)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hexpireat_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
future_exp_time = int((datetime.now() + timedelta(seconds=2)).timestamp())
past_exp_time = int((datetime.now() - timedelta(seconds=1)).timestamp())
assert r.hexpireat("test:hash", future_exp_time, "field1", xx=True) == [0]
assert r.hexpireat("test:hash", future_exp_time, "field1", nx=True) == [1]
assert r.hexpireat("test:hash", past_exp_time, "field1", gt=True) == [0]
assert r.hexpireat("test:hash", past_exp_time, "field1", lt=True) == [2]
assert r.hexists("test:hash", "field1") is False
@skip_if_server_version_lt("7.3.240")
def test_hexpireat_nonexistent_key_or_field(r):
r.delete("test:hash")
future_exp_time = int((datetime.now() + timedelta(seconds=1)).timestamp())
assert r.hexpireat("test:hash", future_exp_time, "field1") == [-2]
r.hset("test:hash", "field1", "value1")
assert r.hexpireat("test:hash", future_exp_time, "nonexistent_field") == [-2]
@skip_if_server_version_lt("7.3.240")
def test_hexpireat_multiple_fields(r):
r.delete("test:hash")
r.hset(
"test:hash",
mapping={"field1": "value1", "field2": "value2", "field3": "value3"},
)
exp_time = math.ceil((datetime.now() + timedelta(seconds=1)).timestamp())
assert r.hexpireat("test:hash", exp_time, "field1", "field2") == [1, 1]
time.sleep(2.1)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is False
assert r.hexists("test:hash", "field3") is True
@skip_if_server_version_lt("7.3.240")
def test_hexpireat_multiple_condition_flags_error(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
exp_time = int((datetime.now() + timedelta(seconds=1)).timestamp())
with pytest.raises(ValueError) as e:
r.hexpireat("test:hash", exp_time, "field1", nx=True, xx=True)
assert "Only one of" in str(e)
@skip_if_server_version_lt("7.3.240")
def test_hpexpireat_basic(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
exp_time = int((datetime.now() + timedelta(milliseconds=400)).timestamp() * 1000)
assert r.hpexpireat("test:hash", exp_time, "field1") == [1]
time.sleep(0.5)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hpexpireat_with_datetime(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
exp_time = datetime.now() + timedelta(milliseconds=400)
assert r.hpexpireat("test:hash", exp_time, "field1") == [1]
time.sleep(0.5)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is True
@skip_if_server_version_lt("7.3.240")
def test_hpexpireat_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
future_exp_time = int(
(datetime.now() + timedelta(milliseconds=500)).timestamp() * 1000
)
past_exp_time = int(
(datetime.now() - timedelta(milliseconds=500)).timestamp() * 1000
)
assert r.hpexpireat("test:hash", future_exp_time, "field1", xx=True) == [0]
assert r.hpexpireat("test:hash", future_exp_time, "field1", nx=True) == [1]
assert r.hpexpireat("test:hash", past_exp_time, "field1", gt=True) == [0]
assert r.hpexpireat("test:hash", past_exp_time, "field1", lt=True) == [2]
assert r.hexists("test:hash", "field1") is False
@skip_if_server_version_lt("7.3.240")
def test_hpexpireat_nonexistent_key_or_field(r):
r.delete("test:hash")
future_exp_time = int(
(datetime.now() + timedelta(milliseconds=500)).timestamp() * 1000
)
assert r.hpexpireat("test:hash", future_exp_time, "field1") == [-2]
r.hset("test:hash", "field1", "value1")
assert r.hpexpireat("test:hash", future_exp_time, "nonexistent_field") == [-2]
@skip_if_server_version_lt("7.3.240")
def test_hpexpireat_multiple_fields(r):
r.delete("test:hash")
r.hset(
"test:hash",
mapping={"field1": "value1", "field2": "value2", "field3": "value3"},
)
exp_time = int((datetime.now() + timedelta(milliseconds=400)).timestamp() * 1000)
assert r.hpexpireat("test:hash", exp_time, "field1", "field2") == [1, 1]
time.sleep(0.5)
assert r.hexists("test:hash", "field1") is False
assert r.hexists("test:hash", "field2") is False
assert r.hexists("test:hash", "field3") is True
@skip_if_server_version_lt("7.3.240")
def test_hpexpireat_multiple_condition_flags_error(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1"})
exp_time = int((datetime.now() + timedelta(milliseconds=500)).timestamp())
with pytest.raises(ValueError) as e:
r.hpexpireat("test:hash", exp_time, "field1", nx=True, xx=True)
assert "Only one of" in str(e)
@skip_if_server_version_lt("7.3.240")
def test_hpersist_multiple_fields(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
r.hexpire("test:hash", 5000, "field1")
assert r.hpersist("test:hash", "field1", "field2", "field3") == [1, -1, -2]
@skip_if_server_version_lt("7.3.240")
def test_hpersist_nonexistent_key(r):
r.delete("test:hash")
assert r.hpersist("test:hash", "field1", "field2", "field3") == [-2, -2, -2]
@skip_if_server_version_lt("7.3.240")
def test_hexpiretime_multiple_fields_mixed_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
future_time = int((datetime.now() + timedelta(minutes=30)).timestamp())
r.hexpireat("test:hash", future_time, "field1")
result = r.hexpiretime("test:hash", "field1", "field2", "field3")
assert future_time - 10 < result[0] <= future_time
assert result[1:] == [-1, -2]
@skip_if_server_version_lt("7.3.240")
def test_hexpiretime_nonexistent_key(r):
r.delete("test:hash")
assert r.hexpiretime("test:hash", "field1", "field2", "field3") == [-2, -2, -2]
@skip_if_server_version_lt("7.3.240")
def test_hpexpiretime_multiple_fields_mixed_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
future_time = int((datetime.now() + timedelta(minutes=30)).timestamp())
r.hexpireat("test:hash", future_time, "field1")
result = r.hpexpiretime("test:hash", "field1", "field2", "field3")
assert future_time * 1000 - 10000 < result[0] <= future_time * 1000
assert result[1:] == [-1, -2]
@skip_if_server_version_lt("7.3.240")
def test_hpexpiretime_nonexistent_key(r):
r.delete("test:hash")
assert r.hpexpiretime("test:hash", "field1", "field2", "field3") == [-2, -2, -2]
@skip_if_server_version_lt("7.3.240")
def test_httl_multiple_fields_mixed_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
future_time = int((datetime.now() + timedelta(minutes=30)).timestamp())
r.hexpireat("test:hash", future_time, "field1")
result = r.httl("test:hash", "field1", "field2", "field3")
assert 30 * 60 - 10 < result[0] <= 30 * 60
assert result[1:] == [-1, -2]
@skip_if_server_version_lt("7.3.240")
def test_httl_nonexistent_key(r):
r.delete("test:hash")
assert r.httl("test:hash", "field1", "field2", "field3") == [-2, -2, -2]
@skip_if_server_version_lt("7.3.240")
def test_hpttl_multiple_fields_mixed_conditions(r):
r.delete("test:hash")
r.hset("test:hash", mapping={"field1": "value1", "field2": "value2"})
future_time = int((datetime.now() + timedelta(minutes=30)).timestamp())
r.hexpireat("test:hash", future_time, "field1")
result = r.hpttl("test:hash", "field1", "field2", "field3")
assert 30 * 60000 - 10000 < result[0] <= 30 * 60000
assert result[1:] == [-1, -2]
@skip_if_server_version_lt("7.3.240")
def test_hpttl_nonexistent_key(r):
r.delete("test:hash")
assert r.hpttl("test:hash", "field1", "field2", "field3") == [-2, -2, -2]
@skip_if_server_version_lt("7.9.0")
def test_hgetdel(r):
r.delete("test:hash")
r.hset("test:hash", "foo", "bar", mapping={"1": 1, "2": 2})
assert r.hgetdel("test:hash", "foo", "1") == [b"bar", b"1"]
assert r.hget("test:hash", "foo") is None
assert r.hget("test:hash", "1") is None
assert r.hget("test:hash", "2") == b"2"
assert r.hgetdel("test:hash", "foo", "1") == [None, None]
assert r.hget("test:hash", "2") == b"2"
with pytest.raises(exceptions.DataError):
r.hgetdel("test:hash")
@skip_if_server_version_lt("7.9.0")
def test_hgetex_no_expiration(r):
r.delete("test:hash")
r.hset("b", "foo", "bar", mapping={"1": 1, "2": 2, "3": "three", "4": b"four"})
assert r.hgetex("b", "foo", "1", "4") == [b"bar", b"1", b"four"]
assert r.httl("b", "foo", "1", "4") == [-1, -1, -1]
@skip_if_server_version_lt("7.9.0")
def test_hgetex_expiration_configs(r):
r.delete("test:hash")
r.hset("test:hash", "foo", "bar", mapping={"1": 1, "3": "three", "4": b"four"})
test_keys = ["foo", "1", "4"]
# test get with multiple fields with expiration set through 'ex'
assert r.hgetex("test:hash", *test_keys, ex=10) == [b"bar", b"1", b"four"]
ttls = r.httl("test:hash", *test_keys)
for ttl in ttls:
assert pytest.approx(ttl) == 10
# test get with multiple fields removing expiration settings with 'persist'
assert r.hgetex("test:hash", *test_keys, persist=True) == [
b"bar",
b"1",
b"four",
]
assert r.httl("test:hash", *test_keys) == [-1, -1, -1]
# test get with multiple fields with expiration set through 'px'
assert r.hgetex("test:hash", *test_keys, px=6000) == [b"bar", b"1", b"four"]
ttls = r.httl("test:hash", *test_keys)
for ttl in ttls:
assert pytest.approx(ttl) == 6
# test get single field with expiration set through 'pxat'
expire_at = redis_server_time(r) + timedelta(minutes=1)
assert r.hgetex("test:hash", "foo", pxat=expire_at) == [b"bar"]
assert r.httl("test:hash", "foo")[0] <= 61
# test get single field with expiration set through 'exat'
expire_at = redis_server_time(r) + timedelta(seconds=10)
assert r.hgetex("test:hash", "foo", exat=expire_at) == [b"bar"]
assert r.httl("test:hash", "foo")[0] <= 10
@skip_if_server_version_lt("7.9.0")
def test_hgetex_validate_expired_fields_removed(r):
r.delete("test:hash")
r.hset("test:hash", "foo", "bar", mapping={"1": 1, "3": "three", "4": b"four"})
test_keys = ["foo", "1", "3"]
# test get multiple fields with expiration set
# validate that expired fields are removed
assert r.hgetex("test:hash", *test_keys, ex=1) == [b"bar", b"1", b"three"]
time.sleep(1.1)
assert r.hgetex("test:hash", *test_keys) == [None, None, None]
assert r.httl("test:hash", *test_keys) == [-2, -2, -2]
assert r.hgetex("test:hash", "4") == [b"four"]
@skip_if_server_version_lt("7.9.0")
def test_hgetex_invalid_inputs(r):
with pytest.raises(exceptions.DataError):
r.hgetex("b", "foo", "1", "3", ex=10, persist=True)
with pytest.raises(exceptions.DataError):
r.hgetex("b", "foo", ex=10.0, persist=True)
with pytest.raises(exceptions.DataError):
r.hgetex("b", "foo", ex=10, px=6000)
with pytest.raises(exceptions.DataError):
r.hgetex("b", ex=10)
@skip_if_server_version_lt("7.9.0")
def test_hsetex_no_expiration(r):
r.delete("test:hash")
# # set items from mapping without expiration
assert r.hsetex("test:hash", None, None, mapping={"1": 1, "4": b"four"}) == 1
assert r.httl("test:hash", "foo", "1", "4") == [-2, -1, -1]
assert r.hgetex("test:hash", "foo", "1") == [None, b"1"]
@skip_if_server_version_lt("7.9.0")
def test_hsetex_expiration_ex_and_keepttl(r):
r.delete("test:hash")
# set items from key/value provided
# combined with mapping and items with expiration - testing ex field
assert (
r.hsetex(
"test:hash",
"foo",
"bar",
mapping={"1": 1, "2": "2"},
items=["i1", 11, "i2", 22],
ex=10,
)
== 1
)
ttls = r.httl("test:hash", "foo", "1", "2", "i1", "i2")
for ttl in ttls:
assert pytest.approx(ttl) == 10
assert r.hgetex("test:hash", "foo", "1", "2", "i1", "i2") == [
b"bar",
b"1",
b"2",
b"11",
b"22",
]
time.sleep(1.1)
# validate keepttl
assert r.hsetex("test:hash", "foo", "bar1", keepttl=True) == 1
assert r.httl("test:hash", "foo")[0] < 10
@skip_if_server_version_lt("7.9.0")
def test_hsetex_expiration_px(r):
r.delete("test:hash")
# set items from key/value provided and mapping
# with expiration - testing px field
assert (
r.hsetex("test:hash", "foo", "bar", mapping={"1": 1, "2": "2"}, px=60000) == 1
)
test_keys = ["foo", "1", "2"]
ttls = r.httl("test:hash", *test_keys)
for ttl in ttls:
assert pytest.approx(ttl) == 60
assert r.hgetex("test:hash", *test_keys) == [b"bar", b"1", b"2"]
@skip_if_server_version_lt("7.9.0")
def test_hsetex_expiration_pxat_and_fnx(r):
r.delete("test:hash")
assert r.hsetex("test:hash", "foo", "bar", mapping={"1": 1, "2": "2"}, ex=30) == 1
expire_at = redis_server_time(r) + timedelta(minutes=1)
assert (
r.hsetex(
"test:hash",
"foo",
"bar1",
mapping={"new": "ok"},
pxat=expire_at,
data_persist_option=HashDataPersistOptions.FNX,
)
== 0
)
ttls = r.httl("test:hash", "foo", "new")
assert ttls[0] <= 30
assert ttls[1] == -2
assert r.hgetex("test:hash", "foo", "1", "new") == [b"bar", b"1", None]
assert (
r.hsetex(
"test:hash",
"foo_new",
"bar1",
mapping={"new": "ok"},
pxat=expire_at,
data_persist_option=HashDataPersistOptions.FNX,
)
== 1
)
ttls = r.httl("test:hash", "foo", "new")
for ttl in ttls:
assert ttl <= 61
assert r.hgetex("test:hash", "foo", "foo_new", "new") == [
b"bar",
b"bar1",
b"ok",
]
@skip_if_server_version_lt("7.9.0")
def test_hsetex_expiration_exat_and_fxx(r):
r.delete("test:hash")
assert r.hsetex("test:hash", "foo", "bar", mapping={"1": 1, "2": "2"}, ex=30) == 1
expire_at = redis_server_time(r) + timedelta(seconds=10)
assert (
r.hsetex(
"test:hash",
"foo",
"bar1",
mapping={"new": "ok"},
exat=expire_at,
data_persist_option=HashDataPersistOptions.FXX,
)
== 0
)
ttls = r.httl("test:hash", "foo", "new")
assert 10 < ttls[0] <= 30
assert ttls[1] == -2
assert r.hgetex("test:hash", "foo", "1", "new") == [b"bar", b"1", None]
assert (
r.hsetex(
"test:hash",
"foo",
"bar1",
mapping={"1": "new_value"},
exat=expire_at,
data_persist_option=HashDataPersistOptions.FXX,
)
== 1
)
assert r.hgetex("test:hash", "foo", "1") == [b"bar1", b"new_value"]
@skip_if_server_version_lt("7.9.0")
def test_hsetex_invalid_inputs(r):
with pytest.raises(exceptions.DataError):
r.hsetex("b", "foo", "bar", ex=10.0)
with pytest.raises(exceptions.DataError):
r.hsetex("b", None, None)
with pytest.raises(exceptions.DataError):
r.hsetex("b", "foo", "bar", items=["i1", 11, "i2"], px=6000)
with pytest.raises(exceptions.DataError):
r.hsetex("b", "foo", "bar", ex=10, keepttl=True)
|