mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
test incorrect PASS passwords
This commit is contained in:
@ -31,6 +31,16 @@ class PasswordedConnectionRegistrationTestCase(cases.BaseServerTestCase):
|
|||||||
self.assertNotEqual(m.command, '001',
|
self.assertNotEqual(m.command, '001',
|
||||||
msg='Got 001 after NICK+USER but missing PASS')
|
msg='Got 001 after NICK+USER but missing PASS')
|
||||||
|
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
|
def testWrongPassword(self):
|
||||||
|
self.addClient()
|
||||||
|
self.sendLine(1, 'PASS {}'.format(self.password + "garbage"))
|
||||||
|
self.sendLine(1, 'NICK foo')
|
||||||
|
self.sendLine(1, 'USER username * * :Realname')
|
||||||
|
m = self.getRegistrationMessage(1)
|
||||||
|
self.assertNotEqual(m.command, '001',
|
||||||
|
msg='Got 001 after NICK+USER but incorrect PASS')
|
||||||
|
|
||||||
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
def testPassAfterNickuser(self):
|
def testPassAfterNickuser(self):
|
||||||
"""“The password can and must be set before any attempt to register
|
"""“The password can and must be set before any attempt to register
|
||||||
|
Reference in New Issue
Block a user