forked from mozilla-conduit/lando-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_redis.py
38 lines (26 loc) · 1.02 KB
/
test_redis.py
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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import logging
import pytest
from redis import RedisError
from landoapi.redis import SuppressRedisFailure
def test_suppress_redis_failure_logs_exceptions(caplog):
caplog.set_level(logging.INFO)
flag = False
with SuppressRedisFailure():
raise RedisError("Failure to be suppressed.")
flag = True
assert len(caplog.records) == 1
assert not flag
def test_suppress_redis_failure_does_not_log_on_success(caplog):
does_not_raise = False
with SuppressRedisFailure():
does_not_raise = True
assert not caplog.records
assert does_not_raise
def test_suppress_redis_failure_does_not_supress_other_exceptions(caplog):
with pytest.raises(ValueError):
with SuppressRedisFailure():
raise ValueError("This should not be suppressed.")
assert not caplog.records