mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Bump Unreal to 6.0.3 and remove ELIST workarounds (#158)
Workarounds that are only still needed for Unreal 5 and and Hybrid/Plexus
This commit is contained in:
2
.github/workflows/test-stable.yml
vendored
2
.github/workflows/test-stable.yml
vendored
@ -342,7 +342,7 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: unrealircd
|
path: unrealircd
|
||||||
ref: daa0c11f285c7123ba9fa2966dee2d1a17729f1e
|
ref: cedd23ae9cdd5985ce16e9869cbdb808479c3fc4
|
||||||
repository: unrealircd/unrealircd
|
repository: unrealircd/unrealircd
|
||||||
- name: Build UnrealIRCd 6
|
- name: Build UnrealIRCd 6
|
||||||
run: |
|
run: |
|
||||||
|
@ -139,6 +139,7 @@ class UnrealircdController(BaseServerController, DirectoryBasedController):
|
|||||||
supports_sts = False
|
supports_sts = False
|
||||||
|
|
||||||
extban_mute_char = "quiet" if installed_version() >= 6 else "q"
|
extban_mute_char = "quiet" if installed_version() >= 6 else "q"
|
||||||
|
software_version = installed_version()
|
||||||
|
|
||||||
def create_config(self) -> None:
|
def create_config(self) -> None:
|
||||||
super().create_config()
|
super().create_config()
|
||||||
|
@ -236,6 +236,17 @@ class FaketimeListTestCase(_BasedListTestCase):
|
|||||||
|
|
||||||
@cases.mark_isupport("ELIST")
|
@cases.mark_isupport("ELIST")
|
||||||
@cases.mark_specifications("Modern")
|
@cases.mark_specifications("Modern")
|
||||||
|
@cases.xfailIfSoftware(
|
||||||
|
["Plexus4", "Hybrid"],
|
||||||
|
"Hybrid and Plexus4 filter on ELIST=C with the opposite meaning",
|
||||||
|
)
|
||||||
|
@cases.xfailIf(
|
||||||
|
lambda self: bool(
|
||||||
|
self.controller.software_name == "UnrealIRCd"
|
||||||
|
and self.controller.software_version == 5
|
||||||
|
),
|
||||||
|
"UnrealIRCd <6.0.3 filters on ELIST=C with the opposite meaning",
|
||||||
|
)
|
||||||
def testListCreationTime(self):
|
def testListCreationTime(self):
|
||||||
"""
|
"""
|
||||||
" C: Searching based on channel creation time, via the "C<val" and "C>val"
|
" C: Searching based on channel creation time, via the "C<val" and "C>val"
|
||||||
@ -282,51 +293,32 @@ class FaketimeListTestCase(_BasedListTestCase):
|
|||||||
|
|
||||||
self._sleep_minutes(1)
|
self._sleep_minutes(1)
|
||||||
|
|
||||||
if self.controller.software_name in ("UnrealIRCd", "Plexus4", "Hybrid"):
|
self.sendLine(2, "LIST C>2")
|
||||||
self.sendLine(2, "LIST C<2")
|
self.assertEqual(self._parseChanList(2), {"#chan1"})
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1"})
|
|
||||||
|
|
||||||
self.sendLine(2, "LIST C>2")
|
self.sendLine(2, "LIST C<2")
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan2"})
|
self.assertEqual(self._parseChanList(2), {"#chan2"})
|
||||||
|
|
||||||
self.sendLine(2, "LIST C>0")
|
self.sendLine(2, "LIST C<0")
|
||||||
self.assertEqual(self._parseChanList(2), set())
|
if self.controller.software_name == "InspIRCd":
|
||||||
|
|
||||||
self.sendLine(2, "LIST C<0")
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
|
||||||
|
|
||||||
self.sendLine(2, "LIST C>10")
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
|
||||||
elif self.controller.software_name in (
|
|
||||||
"Solanum",
|
|
||||||
"Charybdis",
|
|
||||||
"InspIRCd",
|
|
||||||
"Nefarious",
|
|
||||||
):
|
|
||||||
self.sendLine(2, "LIST C>2")
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1"})
|
|
||||||
|
|
||||||
self.sendLine(2, "LIST C<2")
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan2"})
|
|
||||||
|
|
||||||
self.sendLine(2, "LIST C<0")
|
|
||||||
if self.controller.software_name == "InspIRCd":
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
|
||||||
else:
|
|
||||||
self.assertEqual(self._parseChanList(2), set())
|
|
||||||
|
|
||||||
self.sendLine(2, "LIST C>0")
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
|
||||||
|
|
||||||
self.sendLine(2, "LIST C<10")
|
|
||||||
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
||||||
else:
|
else:
|
||||||
assert False, f"{self.controller.software_name} not supported"
|
self.assertEqual(self._parseChanList(2), set())
|
||||||
|
|
||||||
|
self.sendLine(2, "LIST C>0")
|
||||||
|
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
||||||
|
|
||||||
|
self.sendLine(2, "LIST C<10")
|
||||||
|
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
|
||||||
|
|
||||||
@cases.mark_isupport("ELIST")
|
@cases.mark_isupport("ELIST")
|
||||||
@cases.mark_specifications("Modern")
|
@cases.mark_specifications("Modern")
|
||||||
@cases.xfailIfSoftware(
|
@cases.xfailIf(
|
||||||
["UnrealIRCd"], "UnrealIRCd advertises ELIST=T but does not implement it"
|
lambda self: bool(
|
||||||
|
self.controller.software_name == "UnrealIRCd"
|
||||||
|
and self.controller.software_version == 5
|
||||||
|
),
|
||||||
|
"UnrealIRCd <6.0.3 advertises ELIST=T but does not implement it",
|
||||||
)
|
)
|
||||||
def testListTopicTime(self):
|
def testListTopicTime(self):
|
||||||
"""
|
"""
|
||||||
@ -371,46 +363,21 @@ class FaketimeListTestCase(_BasedListTestCase):
|
|||||||
|
|
||||||
self._sleep_minutes(1)
|
self._sleep_minutes(1)
|
||||||
|
|
||||||
if self.controller.software_name in ("UnrealIRCd",):
|
self.sendLine(1, "LIST T>2")
|
||||||
self.sendLine(1, "LIST T<2")
|
self.assertEqual(self._parseChanList(1), {"#chan1"})
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1"})
|
|
||||||
|
|
||||||
self.sendLine(1, "LIST T>2")
|
self.sendLine(1, "LIST T<2")
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan2"})
|
self.assertEqual(self._parseChanList(1), {"#chan2"})
|
||||||
|
|
||||||
self.sendLine(1, "LIST T>0")
|
self.sendLine(1, "LIST T<0")
|
||||||
self.assertEqual(self._parseChanList(1), set())
|
if self.controller.software_name == "InspIRCd":
|
||||||
|
# Insp internally represents "LIST T>0" like "LIST"
|
||||||
self.sendLine(1, "LIST T<0")
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
|
||||||
|
|
||||||
self.sendLine(1, "LIST T>10")
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
|
||||||
elif self.controller.software_name in (
|
|
||||||
"Solanum",
|
|
||||||
"Charybdis",
|
|
||||||
"InspIRCd",
|
|
||||||
"Plexus4",
|
|
||||||
"Hybrid",
|
|
||||||
"Nefarious",
|
|
||||||
):
|
|
||||||
self.sendLine(1, "LIST T>2")
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1"})
|
|
||||||
|
|
||||||
self.sendLine(1, "LIST T<2")
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan2"})
|
|
||||||
|
|
||||||
self.sendLine(1, "LIST T<0")
|
|
||||||
if self.controller.software_name == "InspIRCd":
|
|
||||||
# Insp internally represents "LIST T>0" like "LIST"
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
|
||||||
else:
|
|
||||||
self.assertEqual(self._parseChanList(1), set())
|
|
||||||
|
|
||||||
self.sendLine(1, "LIST T>0")
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
|
||||||
|
|
||||||
self.sendLine(1, "LIST T<10")
|
|
||||||
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
||||||
else:
|
else:
|
||||||
assert False, f"{self.controller.software_name} not supported"
|
self.assertEqual(self._parseChanList(1), set())
|
||||||
|
|
||||||
|
self.sendLine(1, "LIST T>0")
|
||||||
|
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
||||||
|
|
||||||
|
self.sendLine(1, "LIST T<10")
|
||||||
|
self.assertEqual(self._parseChanList(1), {"#chan1", "#chan2"})
|
||||||
|
@ -267,8 +267,8 @@ software:
|
|||||||
name: UnrealIRCd 6
|
name: UnrealIRCd 6
|
||||||
repository: unrealircd/unrealircd
|
repository: unrealircd/unrealircd
|
||||||
refs:
|
refs:
|
||||||
stable: daa0c11f285c7123ba9fa2966dee2d1a17729f1e # 6.0.2 + a few commits
|
stable: cedd23ae9cdd5985ce16e9869cbdb808479c3fc4 # 6.0.3
|
||||||
release: 29fd2e772a6b4b9107daa4e3c237df454b055810 # 6.0.2
|
release: cedd23ae9cdd5985ce16e9869cbdb808479c3fc4 # 6.0.3
|
||||||
devel: unreal60_dev
|
devel: unreal60_dev
|
||||||
devel_release: null
|
devel_release: null
|
||||||
path: unrealircd
|
path: unrealircd
|
||||||
|
Reference in New Issue
Block a user