mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
enhance case change test (#243)
* enhance case change test * assert that the NICK source is correct
This commit is contained in:
committed by
GitHub
parent
1a48ddb498
commit
62a039498b
@ -42,14 +42,21 @@ class RegressionsTestCase(cases.BaseServerTestCase):
|
||||
self.getMessages(1)
|
||||
self.getMessages(2)
|
||||
|
||||
# case change: both alice and bob should get a successful nick line
|
||||
# 'alice' is claimed, so 'Alice' is reserved and Bob cannot take it:
|
||||
self.sendLine(2, "NICK Alice")
|
||||
ms = self.getMessages(2)
|
||||
self.assertEqual(len(ms), 1)
|
||||
self.assertMessageMatch(ms[0], command=ERR_NICKNAMEINUSE)
|
||||
|
||||
# but alice can change case to 'Alice'; both alice and bob should get
|
||||
# a successful NICK line
|
||||
self.sendLine(1, "NICK Alice")
|
||||
ms = self.getMessages(1)
|
||||
self.assertEqual(len(ms), 1)
|
||||
self.assertMessageMatch(ms[0], command="NICK", params=["Alice"])
|
||||
self.assertMessageMatch(ms[0], nick="alice", command="NICK", params=["Alice"])
|
||||
ms = self.getMessages(2)
|
||||
self.assertEqual(len(ms), 1)
|
||||
self.assertMessageMatch(ms[0], command="NICK", params=["Alice"])
|
||||
self.assertMessageMatch(ms[0], nick="alice", command="NICK", params=["Alice"])
|
||||
|
||||
# no responses, either to the user or to friends, from a no-op nick change
|
||||
self.sendLine(1, "NICK Alice")
|
||||
|
Reference in New Issue
Block a user