Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Oct 16, 2020
1 parent 3e025c9 commit 9cbe401
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 0 deletions.
93 changes: 93 additions & 0 deletions tests/util/caches/test_deferred_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,99 @@ def test_hit(self):

self.assertEquals(self.successResultOf(cache.get("foo")), 123)

def test_hit_deferred(self):
cache = DeferredCache("test")
origin_d = defer.Deferred()
set_d = cache.set("k1", origin_d)

# get should return an incomplete deferred
get_d = cache.get("k1")
self.assertFalse(get_d.called)

# add a callback that will make sure that the set_d gets called before the get_d
def check1(r):
self.assertTrue(set_d.called)
return r

get_d.addCallback(check1)

# now fire off all the deferreds
origin_d.callback(99)
self.assertEqual(self.successResultOf(origin_d), 99)
self.assertEqual(self.successResultOf(set_d), 99)
self.assertEqual(self.successResultOf(get_d), 99)

def test_callbacks(self):
"""Invalidation callbacks are called at the right time"""
cache = DeferredCache("test")
callbacks = set()

# start with an entry, with a callback
cache.prefill("k1", 10, callback=lambda: callbacks.add("prefill"))

# now replace that entry with a pending result
origin_d = defer.Deferred()
set_d = cache.set("k1", origin_d, callback=lambda: callbacks.add("set"))

# ... and also make a get request
get_d = cache.get("k1", callback=lambda: callbacks.add("get"))

# we don't expect the invalidation callback for the original value to have
# been called yet, even though get() will now return a different result.
# I'm not sure if that is by design or not.
self.assertSetEqual(callbacks, set())

# now fire off all the deferreds
origin_d.callback(20)
self.assertEqual(self.successResultOf(set_d), 20)
self.assertEqual(self.successResultOf(get_d), 20)

# now the original invalidation callback should have been called, but none of
# the others
self.assertSetEqual(callbacks, {"prefill"})
callbacks.clear()

# another update should invalidate both the previous results
cache.prefill("k1", 30)
self.assertSetEqual(callbacks, {"set", "get"})

def test_set_fail(self):
cache = DeferredCache("test")
callbacks = set()

# start with an entry, with a callback
cache.prefill("k1", 10, callback=lambda: callbacks.add("prefill"))

# now replace that entry with a pending result
origin_d = defer.Deferred()
set_d = cache.set("k1", origin_d, callback=lambda: callbacks.add("set"))

# ... and also make a get request
get_d = cache.get("k1", callback=lambda: callbacks.add("get"))

# none of the callbacks should have been called yet
self.assertSetEqual(callbacks, set())

# oh noes! fails!
e = Exception("oops")
origin_d.errback(e)
self.assertIs(self.failureResultOf(set_d, Exception).value, e)
self.assertIs(self.failureResultOf(get_d, Exception).value, e)

# the callbacks for the failed requests should have been called.
# I'm not sure if this is deliberate or not.
self.assertSetEqual(callbacks, {"get", "set"})
callbacks.clear()

# the old value should still be returned now?
get_d2 = cache.get("k1", callback=lambda: callbacks.add("get2"))
self.assertEqual(self.successResultOf(get_d2), 10)

# replacing the value now should run the callbacks for those requests
# which got the original result
cache.prefill("k1", 30)
self.assertSetEqual(callbacks, {"prefill", "get2"})

def test_get_immediate(self):
cache = DeferredCache("test")
d1 = defer.Deferred()
Expand Down
51 changes: 51 additions & 0 deletions tests/util/caches/test_descriptors.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from typing import Set

import mock

Expand Down Expand Up @@ -130,6 +131,56 @@ def fn(self, arg1):
d = obj.fn(1)
self.failureResultOf(d, SynapseError)

def test_cache_with_async_exception(self):
"""The wrapped function returns a failure
"""

class Cls:
result = None
call_count = 0

@cached()
def fn(self, arg1):
self.call_count += 1
return self.result

obj = Cls()
callbacks = set() # type: Set[str]

# set off an asynchronous request
obj.result = origin_d = defer.Deferred()

d1 = obj.fn(1, on_invalidate=lambda: callbacks.add("d1"))
self.assertFalse(d1.called)

# a second request should also return a deferred, but should not call the
# function itself.
d2 = obj.fn(1, on_invalidate=lambda: callbacks.add("d2"))
self.assertFalse(d2.called)
self.assertEqual(obj.call_count, 1)

# no callbacks yet
self.assertSetEqual(callbacks, set())

# the original request fails
e = Exception("bzz")
origin_d.errback(e)

# ... which should cause the lookups to fail similarly
self.assertIs(self.failureResultOf(d1, Exception).value, e)
self.assertIs(self.failureResultOf(d2, Exception).value, e)

# ... and the callbacks to have been, uh, called.
self.assertSetEqual(callbacks, {"d1", "d2"})

# ... leaving the cache empty
self.assertEqual(len(obj.fn.cache.cache), 0)

# and a second call should work as normal
obj.result = defer.succeed(100)
d3 = obj.fn(1)
self.assertEqual(self.successResultOf(d3), 100)

def test_cache_logcontexts(self):
"""Check that logcontexts are set and restored correctly when
using the cache."""
Expand Down

0 comments on commit 9cbe401

Please sign in to comment.