mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
channels: Check server casemapping before doing mapping checks
This commit is contained in:
@ -413,12 +413,14 @@ class JoinTestCase(cases.BaseServerTestCase):
|
|||||||
'got this instead: {msg}')
|
'got this instead: {msg}')
|
||||||
|
|
||||||
class testChannelCaseSensitivity(cases.BaseServerTestCase):
|
class testChannelCaseSensitivity(cases.BaseServerTestCase):
|
||||||
def _testChannelsEquivalent(name1, name2):
|
def _testChannelsEquivalent(casemapping, name1, name2):
|
||||||
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812',
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812',
|
||||||
strict=True)
|
strict=True)
|
||||||
def f(self):
|
def f(self):
|
||||||
self.connectClient('foo')
|
self.connectClient('foo')
|
||||||
self.connectClient('bar')
|
self.connectClient('bar')
|
||||||
|
if self.server_support['CASEMAPPING'] != casemapping:
|
||||||
|
raise runner.NotImplementedByController('Casemapping {} not implemented'.format(casemapping))
|
||||||
self.joinClient(1, name1)
|
self.joinClient(1, name1)
|
||||||
self.joinClient(2, name2)
|
self.joinClient(2, name2)
|
||||||
try:
|
try:
|
||||||
@ -431,12 +433,14 @@ class testChannelCaseSensitivity(cases.BaseServerTestCase):
|
|||||||
.format(name1, name2))
|
.format(name1, name2))
|
||||||
f.__name__ = 'testEquivalence__{}__{}'.format(name1, name2)
|
f.__name__ = 'testEquivalence__{}__{}'.format(name1, name2)
|
||||||
return f
|
return f
|
||||||
def _testChannelsNotEquivalent(name1, name2):
|
def _testChannelsNotEquivalent(casemapping, name1, name2):
|
||||||
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812',
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812',
|
||||||
strict=True)
|
strict=True)
|
||||||
def f(self):
|
def f(self):
|
||||||
self.connectClient('foo')
|
self.connectClient('foo')
|
||||||
self.connectClient('bar')
|
self.connectClient('bar')
|
||||||
|
if self.server_support['CASEMAPPING'] != casemapping:
|
||||||
|
raise runner.NotImplementedByController('Casemapping {} not implemented'.format(casemapping))
|
||||||
self.joinClient(1, name1)
|
self.joinClient(1, name1)
|
||||||
self.joinClient(2, name2)
|
self.joinClient(2, name2)
|
||||||
try:
|
try:
|
||||||
@ -452,7 +456,10 @@ class testChannelCaseSensitivity(cases.BaseServerTestCase):
|
|||||||
f.__name__ = 'testEquivalence__{}__{}'.format(name1, name2)
|
f.__name__ = 'testEquivalence__{}__{}'.format(name1, name2)
|
||||||
return f
|
return f
|
||||||
|
|
||||||
testSimpleEquivalent = _testChannelsEquivalent('#Foo', '#foo')
|
testAsciiSimpleEquivalent = _testChannelsEquivalent('ascii', '#Foo', '#foo')
|
||||||
testSimpleNotEquivalent = _testChannelsNotEquivalent('#Foo', '#fooa')
|
testAsciiSimpleNotEquivalent = _testChannelsNotEquivalent('ascii', '#Foo', '#fooa')
|
||||||
testFancyEquivalent = _testChannelsEquivalent('#F]|oo{', '#f}\\oo[')
|
|
||||||
testFancyNotEquivalent = _testChannelsEquivalent('#F}o\\o[', '#f]o|o{')
|
testRfcSimpleEquivalent = _testChannelsEquivalent('rfc1459', '#Foo', '#foo')
|
||||||
|
testRfcSimpleNotEquivalent = _testChannelsNotEquivalent('rfc1459', '#Foo', '#fooa')
|
||||||
|
testRfcFancyEquivalent = _testChannelsEquivalent('rfc1459', '#F]|oo{', '#f}\\oo[')
|
||||||
|
testRfcFancyNotEquivalent = _testChannelsEquivalent('rfc1459', '#F}o\\o[', '#f]o|o{')
|
||||||
|
Reference in New Issue
Block a user