mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Another workaround for Sable's latency with the history server
This commit is contained in:
@ -111,7 +111,9 @@ class _BaseChathistoryTests(cases.BaseServerTestCase):
|
|||||||
|
|
||||||
# test a nonexistent channel
|
# test a nonexistent channel
|
||||||
self.sendLine(bar, "CHATHISTORY LATEST #nonexistent_channel * 10")
|
self.sendLine(bar, "CHATHISTORY LATEST #nonexistent_channel * 10")
|
||||||
msgs = self.getMessages(bar)
|
while not (msgs := self.getMessages(bar)):
|
||||||
|
# need to retry when Sable has the history server on
|
||||||
|
pass
|
||||||
msgs = [msg for msg in msgs if msg.command != "MODE"] # :NickServ MODE +r
|
msgs = [msg for msg in msgs if msg.command != "MODE"] # :NickServ MODE +r
|
||||||
self.assertMessageMatch(
|
self.assertMessageMatch(
|
||||||
msgs[0],
|
msgs[0],
|
||||||
@ -121,7 +123,9 @@ class _BaseChathistoryTests(cases.BaseServerTestCase):
|
|||||||
|
|
||||||
# as should a real channel to which one is not joined:
|
# as should a real channel to which one is not joined:
|
||||||
self.sendLine(bar, "CHATHISTORY LATEST %s * 10" % (real_chname,))
|
self.sendLine(bar, "CHATHISTORY LATEST %s * 10" % (real_chname,))
|
||||||
msgs = self.getMessages(bar)
|
while not (msgs := self.getMessages(bar)):
|
||||||
|
# need to retry when Sable has the history server on
|
||||||
|
pass
|
||||||
self.assertMessageMatch(
|
self.assertMessageMatch(
|
||||||
msgs[0],
|
msgs[0],
|
||||||
command="FAIL",
|
command="FAIL",
|
||||||
|
Reference in New Issue
Block a user