From 778510e021d4f4124ef41ad909057804b258dc87 Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Wed, 13 Apr 2022 20:25:45 +0200 Subject: [PATCH] Bump Unreal to 6.0.3 and remove ELIST workarounds (#158) Workarounds that are only still needed for Unreal 5 and and Hybrid/Plexus --- .github/workflows/test-stable.yml | 2 +- irctest/controllers/unrealircd.py | 1 + irctest/server_tests/list.py | 121 +++++++++++------------------- workflows.yml | 4 +- 4 files changed, 48 insertions(+), 80 deletions(-) diff --git a/.github/workflows/test-stable.yml b/.github/workflows/test-stable.yml index 52e4088..74e5d7f 100644 --- a/.github/workflows/test-stable.yml +++ b/.github/workflows/test-stable.yml @@ -342,7 +342,7 @@ jobs: uses: actions/checkout@v2 with: path: unrealircd - ref: daa0c11f285c7123ba9fa2966dee2d1a17729f1e + ref: cedd23ae9cdd5985ce16e9869cbdb808479c3fc4 repository: unrealircd/unrealircd - name: Build UnrealIRCd 6 run: | diff --git a/irctest/controllers/unrealircd.py b/irctest/controllers/unrealircd.py index a24bcc0..12dfdbe 100644 --- a/irctest/controllers/unrealircd.py +++ b/irctest/controllers/unrealircd.py @@ -139,6 +139,7 @@ class UnrealircdController(BaseServerController, DirectoryBasedController): supports_sts = False extban_mute_char = "quiet" if installed_version() >= 6 else "q" + software_version = installed_version() def create_config(self) -> None: super().create_config() diff --git a/irctest/server_tests/list.py b/irctest/server_tests/list.py index 56e300f..53d148d 100644 --- a/irctest/server_tests/list.py +++ b/irctest/server_tests/list.py @@ -236,6 +236,17 @@ class FaketimeListTestCase(_BasedListTestCase): @cases.mark_isupport("ELIST") @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): """ " C: Searching based on channel creation time, via the "Cval" @@ -282,51 +293,32 @@ class FaketimeListTestCase(_BasedListTestCase): self._sleep_minutes(1) - if self.controller.software_name in ("UnrealIRCd", "Plexus4", "Hybrid"): - self.sendLine(2, "LIST C<2") - self.assertEqual(self._parseChanList(2), {"#chan1"}) + 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<2") + self.assertEqual(self._parseChanList(2), {"#chan2"}) - self.sendLine(2, "LIST C>0") - 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"}) - 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.sendLine(2, "LIST C<0") + if self.controller.software_name == "InspIRCd": self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"}) 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_specifications("Modern") - @cases.xfailIfSoftware( - ["UnrealIRCd"], "UnrealIRCd advertises ELIST=T but does not implement it" + @cases.xfailIf( + 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): """ @@ -371,46 +363,21 @@ class FaketimeListTestCase(_BasedListTestCase): self._sleep_minutes(1) - if self.controller.software_name in ("UnrealIRCd",): - self.sendLine(1, "LIST T<2") - self.assertEqual(self._parseChanList(1), {"#chan1"}) + 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<2") + self.assertEqual(self._parseChanList(1), {"#chan2"}) - self.sendLine(1, "LIST T>0") - 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"}) - 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.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: - 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"}) diff --git a/workflows.yml b/workflows.yml index 811593c..88c29d6 100644 --- a/workflows.yml +++ b/workflows.yml @@ -267,8 +267,8 @@ software: name: UnrealIRCd 6 repository: unrealircd/unrealircd refs: - stable: daa0c11f285c7123ba9fa2966dee2d1a17729f1e # 6.0.2 + a few commits - release: 29fd2e772a6b4b9107daa4e3c237df454b055810 # 6.0.2 + stable: cedd23ae9cdd5985ce16e9869cbdb808479c3fc4 # 6.0.3 + release: cedd23ae9cdd5985ce16e9869cbdb808479c3fc4 # 6.0.3 devel: unreal60_dev devel_release: null path: unrealircd