Broken by recent merges
This commit is contained in:
2022-04-13 19:57:16 +02:00
committed by GitHub
parent 83867dad32
commit 1e01cb3286
4 changed files with 15 additions and 8 deletions

View File

@ -751,8 +751,8 @@ jobs:
make -j 4
make install
cp $GITHUB_WORKSPACE/data/nefarious/* $HOME/.local/lib
- name: Install Atheme
run: sudo apt-get install atheme-services
- name: Install system dependencies
run: sudo apt-get install atheme-services faketime
- name: Install irctest dependencies
run: |-
python -m pip install --upgrade pip

View File

@ -911,8 +911,8 @@ jobs:
make -j 4
make install
cp $GITHUB_WORKSPACE/data/nefarious/* $HOME/.local/lib
- name: Install Atheme
run: sudo apt-get install atheme-services
- name: Install system dependencies
run: sudo apt-get install atheme-services faketime
- name: Install irctest dependencies
run: |-
python -m pip install --upgrade pip

View File

@ -7,9 +7,6 @@ The LIST command (`RFC 1459
import time
from irctest import cases
from irctest import cases, runner
from irctest.numerics import RPL_LIST, RPL_LISTEND, RPL_LISTSTART
@ -300,7 +297,12 @@ class FaketimeListTestCase(_BasedListTestCase):
self.sendLine(2, "LIST C>10")
self.assertEqual(self._parseChanList(2), {"#chan1", "#chan2"})
elif self.controller.software_name in ("Solanum", "Charybdis", "InspIRCd"):
elif self.controller.software_name in (
"Solanum",
"Charybdis",
"InspIRCd",
"Nefarious",
):
self.sendLine(2, "LIST C>2")
self.assertEqual(self._parseChanList(2), {"#chan1"})
@ -323,6 +325,9 @@ class FaketimeListTestCase(_BasedListTestCase):
@cases.mark_isupport("ELIST")
@cases.mark_specifications("Modern")
@cases.xfailIfSoftware(
["UnrealIRCd"], "UnrealIRCd advertises ELIST=T but does not implement it"
)
def testListTopicTime(self):
"""
"T: Searching based on topic time, via the "T<val" and "T>val"
@ -387,6 +392,7 @@ class FaketimeListTestCase(_BasedListTestCase):
"InspIRCd",
"Plexus4",
"Hybrid",
"Nefarious",
):
self.sendLine(1, "LIST T>2")
self.assertEqual(self._parseChanList(1), {"#chan1"})

View File

@ -9,6 +9,7 @@ from irctest import cases, runner
from irctest.numerics import RPL_ENDOFNAMES, RPL_NAMREPLY
from irctest.patma import ANYSTR, StrRe
class NamesTestCase(cases.BaseServerTestCase):
def _testNames(self, symbol):
self.connectClient("nick1")