mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Remove some Ergo marks (#70)
* Remove some 'Ergo' marks These are not ergo-specific specs * Make chathistory test less Ergo-specific Although they can only run on Ergo for now, as Unreal has a couple of minor bugs that prevents them from passing. * Fix synchronization issue (NickServ sets MODE +r, which is unexpected caught by the next self.assertMessageMatch call)
This commit is contained in:
4
Makefile
4
Makefile
@ -66,6 +66,8 @@ SOPEL_SELECTORS := \
|
|||||||
# testCapRemovalByClient and testNakWhole fail pending https://github.com/unrealircd/unrealircd/pull/148
|
# testCapRemovalByClient and testNakWhole fail pending https://github.com/unrealircd/unrealircd/pull/148
|
||||||
# Tests marked with arbitrary_client_tags can't pass because Unreal whitelists which tags it relays
|
# Tests marked with arbitrary_client_tags can't pass because Unreal whitelists which tags it relays
|
||||||
# Tests marked with react_tag can't pass because Unreal blocks +draft/react https://github.com/unrealircd/unrealircd/pull/149
|
# Tests marked with react_tag can't pass because Unreal blocks +draft/react https://github.com/unrealircd/unrealircd/pull/149
|
||||||
|
# Tests marked with private_chathistory can't pass because Unreal does not implement CHATHISTORY for DMs
|
||||||
|
# testChathistory fails: https://bugs.unrealircd.org/view.php?id=5952 and https://bugs.unrealircd.org/view.php?id=5953
|
||||||
UNREALIRCD_SELECTORS := \
|
UNREALIRCD_SELECTORS := \
|
||||||
not Ergo \
|
not Ergo \
|
||||||
and not deprecated \
|
and not deprecated \
|
||||||
@ -77,6 +79,8 @@ UNREALIRCD_SELECTORS := \
|
|||||||
and not (test_account_tag and testInvite) \
|
and not (test_account_tag and testInvite) \
|
||||||
and not arbitrary_client_tags \
|
and not arbitrary_client_tags \
|
||||||
and not react_tag \
|
and not react_tag \
|
||||||
|
and not private_chathistory \
|
||||||
|
and not testChathistory \
|
||||||
$(EXTRA_SELECTORS)
|
$(EXTRA_SELECTORS)
|
||||||
|
|
||||||
.PHONY: all flakes charybdis ergo inspircd mammon limnoria sopel solanum unrealircd
|
.PHONY: all flakes charybdis ergo inspircd mammon limnoria sopel solanum unrealircd
|
||||||
|
@ -91,6 +91,7 @@ set {{
|
|||||||
lag-penalty-bytes 10000;
|
lag-penalty-bytes 10000;
|
||||||
}}
|
}}
|
||||||
}}
|
}}
|
||||||
|
modes-on-join "+H 100:1d"; // Enables CHATHISTORY
|
||||||
}}
|
}}
|
||||||
|
|
||||||
tld {{
|
tld {{
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
import secrets
|
import secrets
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
from irctest import cases
|
from irctest import cases
|
||||||
from irctest.irc_utils.junkdrawer import random_name
|
from irctest.irc_utils.junkdrawer import random_name
|
||||||
from irctest.patma import ANYSTR
|
from irctest.patma import ANYSTR
|
||||||
@ -28,7 +30,8 @@ def validate_chathistory_batch(msgs):
|
|||||||
and batch_tag is not None
|
and batch_tag is not None
|
||||||
and msg.tags.get("batch") == batch_tag
|
and msg.tags.get("batch") == batch_tag
|
||||||
):
|
):
|
||||||
result.append(msg.to_history_message())
|
if not msg.prefix.startswith("HistServ!"): # FIXME: ergo-specific
|
||||||
|
result.append(msg.to_history_message())
|
||||||
assert batch_tag == closed_batch_tag
|
assert batch_tag == closed_batch_tag
|
||||||
return result
|
return result
|
||||||
|
|
||||||
@ -39,7 +42,6 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
def config() -> cases.TestCaseControllerConfig:
|
def config() -> cases.TestCaseControllerConfig:
|
||||||
return cases.TestCaseControllerConfig(chathistory=True)
|
return cases.TestCaseControllerConfig(chathistory=True)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testInvalidTargets(self):
|
def testInvalidTargets(self):
|
||||||
bar, pw = random_name("bar"), random_name("pw")
|
bar, pw = random_name("bar"), random_name("pw")
|
||||||
self.controller.registerUser(self, bar, pw)
|
self.controller.registerUser(self, bar, pw)
|
||||||
@ -53,12 +55,15 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"server-time",
|
"server-time",
|
||||||
"sasl",
|
"sasl",
|
||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
|
||||||
],
|
],
|
||||||
password=pw,
|
password=pw,
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.getMessages(bar)
|
self.getMessages(bar)
|
||||||
|
|
||||||
|
self.sendLine(bar, "PRIVMSG #nonexistent_channel :Is this thing on?")
|
||||||
|
self.getMessages(bar)
|
||||||
|
|
||||||
qux = random_name("qux")
|
qux = random_name("qux")
|
||||||
real_chname = random_name("#real_channel")
|
real_chname = random_name("#real_channel")
|
||||||
self.connectClient(qux, name=qux)
|
self.connectClient(qux, name=qux)
|
||||||
@ -81,7 +86,7 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
params=["CHATHISTORY", "INVALID_TARGET", "LATEST", ANYSTR, ANYSTR],
|
params=["CHATHISTORY", "INVALID_TARGET", "LATEST", ANYSTR, ANYSTR],
|
||||||
)
|
)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
@pytest.mark.private_chathistory
|
||||||
def testMessagesToSelf(self):
|
def testMessagesToSelf(self):
|
||||||
bar, pw = random_name("bar"), random_name("pw")
|
bar, pw = random_name("bar"), random_name("pw")
|
||||||
self.controller.registerUser(self, bar, pw)
|
self.controller.registerUser(self, bar, pw)
|
||||||
@ -94,8 +99,10 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"message-tags",
|
"message-tags",
|
||||||
"sasl",
|
"sasl",
|
||||||
"server-time",
|
"server-time",
|
||||||
|
CHATHISTORY_CAP,
|
||||||
],
|
],
|
||||||
password=pw,
|
password=pw,
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.getMessages(bar)
|
self.getMessages(bar)
|
||||||
|
|
||||||
@ -151,8 +158,38 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
self.assertEqual(len(set(msg.msgid for msg in echo_messages)), num_messages)
|
self.assertEqual(len(set(msg.msgid for msg in echo_messages)), num_messages)
|
||||||
self.assertEqual(len(set(msg.time for msg in echo_messages)), num_messages)
|
self.assertEqual(len(set(msg.time for msg in echo_messages)), num_messages)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testChathistory(self):
|
def testChathistory(self):
|
||||||
|
self.connectClient(
|
||||||
|
"bar",
|
||||||
|
capabilities=[
|
||||||
|
"message-tags",
|
||||||
|
"server-time",
|
||||||
|
"echo-message",
|
||||||
|
"batch",
|
||||||
|
"labeled-response",
|
||||||
|
"sasl",
|
||||||
|
CHATHISTORY_CAP,
|
||||||
|
],
|
||||||
|
skip_if_cap_nak=True,
|
||||||
|
)
|
||||||
|
chname = "#chan" + secrets.token_hex(12)
|
||||||
|
self.joinChannel(1, chname)
|
||||||
|
self.getMessages(1)
|
||||||
|
self.getMessages(1)
|
||||||
|
|
||||||
|
NUM_MESSAGES = 10
|
||||||
|
echo_messages = []
|
||||||
|
for i in range(NUM_MESSAGES):
|
||||||
|
self.sendLine(1, "PRIVMSG %s :this is message %d" % (chname, i))
|
||||||
|
echo_messages.extend(
|
||||||
|
msg.to_history_message() for msg in self.getMessages(1)
|
||||||
|
)
|
||||||
|
time.sleep(0.002)
|
||||||
|
|
||||||
|
self.validate_echo_messages(NUM_MESSAGES, echo_messages)
|
||||||
|
self.validate_chathistory(echo_messages, 1, chname)
|
||||||
|
|
||||||
|
def testChathistoryEventPlayback(self):
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
"bar",
|
"bar",
|
||||||
capabilities=[
|
capabilities=[
|
||||||
@ -165,8 +202,9 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
EVENT_PLAYBACK_CAP,
|
||||||
],
|
],
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
chname = "#" + secrets.token_hex(12)
|
chname = "#chan" + secrets.token_hex(12)
|
||||||
self.joinChannel(1, chname)
|
self.joinChannel(1, chname)
|
||||||
self.getMessages(1)
|
self.getMessages(1)
|
||||||
|
|
||||||
@ -182,10 +220,10 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
self.validate_echo_messages(NUM_MESSAGES, echo_messages)
|
self.validate_echo_messages(NUM_MESSAGES, echo_messages)
|
||||||
self.validate_chathistory(echo_messages, 1, chname)
|
self.validate_chathistory(echo_messages, 1, chname)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
@pytest.mark.private_chathistory
|
||||||
def testChathistoryDMs(self):
|
def testChathistoryDMs(self):
|
||||||
c1 = secrets.token_hex(12)
|
c1 = "foo" + secrets.token_hex(12)
|
||||||
c2 = secrets.token_hex(12)
|
c2 = "bar" + secrets.token_hex(12)
|
||||||
self.controller.registerUser(self, c1, "sesame1")
|
self.controller.registerUser(self, c1, "sesame1")
|
||||||
self.controller.registerUser(self, c2, "sesame2")
|
self.controller.registerUser(self, c2, "sesame2")
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
@ -198,9 +236,9 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"labeled-response",
|
"labeled-response",
|
||||||
"sasl",
|
"sasl",
|
||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
|
||||||
],
|
],
|
||||||
password="sesame1",
|
password="sesame1",
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
c2,
|
c2,
|
||||||
@ -212,7 +250,6 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"labeled-response",
|
"labeled-response",
|
||||||
"sasl",
|
"sasl",
|
||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
|
||||||
],
|
],
|
||||||
password="sesame2",
|
password="sesame2",
|
||||||
)
|
)
|
||||||
@ -238,7 +275,7 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
self.validate_chathistory(echo_messages, 1, c2)
|
self.validate_chathistory(echo_messages, 1, c2)
|
||||||
self.validate_chathistory(echo_messages, 2, c1)
|
self.validate_chathistory(echo_messages, 2, c1)
|
||||||
|
|
||||||
c3 = secrets.token_hex(12)
|
c3 = "baz" + secrets.token_hex(12)
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
c3,
|
c3,
|
||||||
capabilities=[
|
capabilities=[
|
||||||
@ -248,8 +285,8 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"batch",
|
"batch",
|
||||||
"labeled-response",
|
"labeled-response",
|
||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
|
||||||
],
|
],
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.sendLine(
|
self.sendLine(
|
||||||
1, "PRIVMSG %s :this is a message in a separate conversation" % (c3,)
|
1, "PRIVMSG %s :this is a message in a separate conversation" % (c3,)
|
||||||
@ -305,9 +342,9 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"labeled-response",
|
"labeled-response",
|
||||||
"sasl",
|
"sasl",
|
||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
|
||||||
],
|
],
|
||||||
password="sesame3",
|
password="sesame3",
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.getMessages(c3)
|
self.getMessages(c3)
|
||||||
self.sendLine(c3, "CHATHISTORY LATEST %s * 10" % (c1,))
|
self.sendLine(c3, "CHATHISTORY LATEST %s * 10" % (c1,))
|
||||||
@ -495,11 +532,11 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
result = validate_chathistory_batch(self.getMessages(user))
|
result = validate_chathistory_batch(self.getMessages(user))
|
||||||
self.assertIn(echo_messages[7], result)
|
self.assertIn(echo_messages[7], result)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
@pytest.mark.arbitrary_client_tags
|
||||||
def testChathistoryTagmsg(self):
|
def testChathistoryTagmsg(self):
|
||||||
c1 = secrets.token_hex(12)
|
c1 = "foo" + secrets.token_hex(12)
|
||||||
c2 = secrets.token_hex(12)
|
c2 = "bar" + secrets.token_hex(12)
|
||||||
chname = "#" + secrets.token_hex(12)
|
chname = "#chan" + secrets.token_hex(12)
|
||||||
self.controller.registerUser(self, c1, "sesame1")
|
self.controller.registerUser(self, c1, "sesame1")
|
||||||
self.controller.registerUser(self, c2, "sesame2")
|
self.controller.registerUser(self, c2, "sesame2")
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
@ -515,6 +552,7 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
EVENT_PLAYBACK_CAP,
|
EVENT_PLAYBACK_CAP,
|
||||||
],
|
],
|
||||||
password="sesame1",
|
password="sesame1",
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
c2,
|
c2,
|
||||||
@ -591,11 +629,12 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
]
|
]
|
||||||
self.assertEqual(len(history_tagmsgs), 0)
|
self.assertEqual(len(history_tagmsgs), 0)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
@pytest.mark.arbitrary_client_tags
|
||||||
|
@pytest.mark.private_chathistory
|
||||||
def testChathistoryDMClientOnlyTags(self):
|
def testChathistoryDMClientOnlyTags(self):
|
||||||
# regression test for Ergo #1411
|
# regression test for Ergo #1411
|
||||||
c1 = secrets.token_hex(12)
|
c1 = "foo" + secrets.token_hex(12)
|
||||||
c2 = secrets.token_hex(12)
|
c2 = "bar" + secrets.token_hex(12)
|
||||||
self.controller.registerUser(self, c1, "sesame1")
|
self.controller.registerUser(self, c1, "sesame1")
|
||||||
self.controller.registerUser(self, c2, "sesame2")
|
self.controller.registerUser(self, c2, "sesame2")
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
@ -608,9 +647,9 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
|
|||||||
"labeled-response",
|
"labeled-response",
|
||||||
"sasl",
|
"sasl",
|
||||||
CHATHISTORY_CAP,
|
CHATHISTORY_CAP,
|
||||||
EVENT_PLAYBACK_CAP,
|
|
||||||
],
|
],
|
||||||
password="sesame1",
|
password="sesame1",
|
||||||
|
skip_if_cap_nak=True,
|
||||||
)
|
)
|
||||||
self.connectClient(
|
self.connectClient(
|
||||||
c2,
|
c2,
|
||||||
|
@ -13,10 +13,10 @@ class TestRegisterBeforeConnect(cases.BaseServerTestCase):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testBeforeConnect(self):
|
def testBeforeConnect(self):
|
||||||
self.addClient("bar")
|
self.addClient("bar")
|
||||||
self.sendLine("bar", "CAP LS 302")
|
self.sendLine("bar", "CAP LS 302")
|
||||||
|
self.requestCapabilities("bar", [REGISTER_CAP_NAME], skip_if_cap_nak=True)
|
||||||
caps = self.getCapLs("bar")
|
caps = self.getCapLs("bar")
|
||||||
self.assertIn(REGISTER_CAP_NAME, caps)
|
self.assertIn(REGISTER_CAP_NAME, caps)
|
||||||
self.assertIn("before-connect", caps[REGISTER_CAP_NAME])
|
self.assertIn("before-connect", caps[REGISTER_CAP_NAME])
|
||||||
@ -36,10 +36,10 @@ class TestRegisterBeforeConnectDisallowed(cases.BaseServerTestCase):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testBeforeConnect(self):
|
def testBeforeConnect(self):
|
||||||
self.addClient("bar")
|
self.addClient("bar")
|
||||||
self.sendLine("bar", "CAP LS 302")
|
self.sendLine("bar", "CAP LS 302")
|
||||||
|
self.requestCapabilities("bar", [REGISTER_CAP_NAME], skip_if_cap_nak=True)
|
||||||
caps = self.getCapLs("bar")
|
caps = self.getCapLs("bar")
|
||||||
self.assertIn(REGISTER_CAP_NAME, caps)
|
self.assertIn(REGISTER_CAP_NAME, caps)
|
||||||
self.assertEqual(caps[REGISTER_CAP_NAME], None)
|
self.assertEqual(caps[REGISTER_CAP_NAME], None)
|
||||||
@ -70,10 +70,12 @@ class TestRegisterEmailVerified(cases.BaseServerTestCase):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testBeforeConnect(self):
|
def testBeforeConnect(self):
|
||||||
self.addClient("bar")
|
self.addClient("bar")
|
||||||
self.sendLine("bar", "CAP LS 302")
|
self.sendLine("bar", "CAP LS 302")
|
||||||
|
self.requestCapabilities(
|
||||||
|
"bar", capabilities=[REGISTER_CAP_NAME], skip_if_cap_nak=True
|
||||||
|
)
|
||||||
caps = self.getCapLs("bar")
|
caps = self.getCapLs("bar")
|
||||||
self.assertIn(REGISTER_CAP_NAME, caps)
|
self.assertIn(REGISTER_CAP_NAME, caps)
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
@ -88,9 +90,10 @@ class TestRegisterEmailVerified(cases.BaseServerTestCase):
|
|||||||
fail_response, params=["REGISTER", "INVALID_EMAIL", ANYSTR, ANYSTR]
|
fail_response, params=["REGISTER", "INVALID_EMAIL", ANYSTR, ANYSTR]
|
||||||
)
|
)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testAfterConnect(self):
|
def testAfterConnect(self):
|
||||||
self.connectClient("bar", name="bar")
|
self.connectClient(
|
||||||
|
"bar", name="bar", capabilities=[REGISTER_CAP_NAME], skip_if_cap_nak=True
|
||||||
|
)
|
||||||
self.sendLine("bar", "REGISTER * shivarampassphrase")
|
self.sendLine("bar", "REGISTER * shivarampassphrase")
|
||||||
msgs = self.getMessages("bar")
|
msgs = self.getMessages("bar")
|
||||||
fail_response = [msg for msg in msgs if msg.command == "FAIL"][0]
|
fail_response = [msg for msg in msgs if msg.command == "FAIL"][0]
|
||||||
@ -108,10 +111,11 @@ class TestRegisterNoLandGrabs(cases.BaseServerTestCase):
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@cases.mark_specifications("Ergo")
|
|
||||||
def testBeforeConnect(self):
|
def testBeforeConnect(self):
|
||||||
# have an anonymous client take the 'root' username:
|
# have an anonymous client take the 'root' username:
|
||||||
self.connectClient("root", name="root")
|
self.connectClient(
|
||||||
|
"root", name="root", capabilities=[REGISTER_CAP_NAME], skip_if_cap_nak=True
|
||||||
|
)
|
||||||
|
|
||||||
# cannot register it out from under the anonymous nick holder:
|
# cannot register it out from under the anonymous nick holder:
|
||||||
self.addClient("bar")
|
self.addClient("bar")
|
||||||
|
@ -14,6 +14,7 @@ markers =
|
|||||||
services
|
services
|
||||||
arbitrary_client_tags
|
arbitrary_client_tags
|
||||||
react_tag
|
react_tag
|
||||||
|
private_chathistory
|
||||||
|
|
||||||
# capabilities
|
# capabilities
|
||||||
account-tag
|
account-tag
|
||||||
|
Reference in New Issue
Block a user