mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
4
.github/workflows/test-devel.yml
vendored
4
.github/workflows/test-devel.yml
vendored
@ -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
|
||||
|
4
.github/workflows/test-stable.yml
vendored
4
.github/workflows/test-stable.yml
vendored
@ -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
|
||||
|
@ -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"})
|
||||
|
@ -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")
|
||||
|
Reference in New Issue
Block a user