Fix broken unit tests for redis jobboard driver

These tests are not run unless redis is actually started and these
failures were not caught in CI.

Change-Id: I4bb430c8ba77de78a8135b3f066274373f625730
This commit is contained in:
Takashi Kajinami 2024-04-15 16:29:17 +09:00
parent db020073ec
commit 6dba127ad0
1 changed files with 3 additions and 6 deletions

View File

@ -161,14 +161,11 @@ class RedisJobboardTest(test.TestCase, base.BoardTestMixin):
test_conf = {
'username': 'default',
'password': 'secret',
'sentinel_kwargs': None,
}
mock_sentinel.assert_called_once_with(
[('127.0.0.1', 26379), ('::1', 26379),
('127.0.0.2', 26379), ('localhost', 26379)],
sentinel_kwargs={
'username': 'default',
'password': 'secret'
},
**test_conf)
mock_sentinel().master_for.assert_called_once_with('mymaster')
@ -179,7 +176,7 @@ class RedisJobboardTest(test.TestCase, base.BoardTestMixin):
'password': 'secret',
'namespace': 'test',
'sentinel': 'mymaster',
'sentinel_kwargs': {'password': 'senitelsecret'},
'sentinel_kwargs': None,
'ssl': True,
'ssl_ca_certs': '/etc/ssl/certs'}
with mock.patch('redis.sentinel.Sentinel') as mock_sentinel:
@ -192,6 +189,6 @@ class RedisJobboardTest(test.TestCase, base.BoardTestMixin):
}
mock_sentinel.assert_called_once_with(
[('127.0.0.1', 26379)],
sentinel_kwargs={'password': 'senitelsecret'},
sentinel_kwargs=None,
**test_conf)
mock_sentinel().master_for.assert_called_once_with('mymaster')