2015-07-04 03:07:47 +02:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
sys.path += [os.getcwd(), os.path.join(os.getcwd(), 'protocols')]
|
|
|
|
import unittest
|
2015-07-08 22:35:20 +02:00
|
|
|
from collections import defaultdict
|
2015-07-04 03:07:47 +02:00
|
|
|
|
|
|
|
import inspircd
|
2015-07-08 03:30:42 +02:00
|
|
|
import classes
|
2015-07-04 08:32:41 +02:00
|
|
|
import utils
|
2015-07-18 07:52:55 +02:00
|
|
|
import coreplugin
|
2015-07-04 03:07:47 +02:00
|
|
|
|
2015-07-08 03:30:42 +02:00
|
|
|
class TestProtoInspIRCd(unittest.TestCase):
|
2015-07-04 03:07:47 +02:00
|
|
|
def setUp(self):
|
2015-07-10 03:42:38 +02:00
|
|
|
self.irc = classes.FakeIRC('unittest', inspircd, classes.testconf)
|
2015-07-04 08:32:41 +02:00
|
|
|
self.proto = self.irc.proto
|
2015-07-04 03:07:47 +02:00
|
|
|
self.sdata = self.irc.serverdata
|
2015-07-04 08:32:41 +02:00
|
|
|
# This is to initialize ourself as an internal PseudoServer, so we can spawn clients
|
|
|
|
self.proto.connect(self.irc)
|
|
|
|
self.u = self.irc.pseudoclient.uid
|
2015-07-08 22:35:20 +02:00
|
|
|
self.maxDiff = None
|
|
|
|
utils.command_hooks = defaultdict(list)
|
2015-07-04 08:32:41 +02:00
|
|
|
|
2015-07-08 22:35:20 +02:00
|
|
|
def testConnect(self):
|
2015-07-04 03:07:47 +02:00
|
|
|
initial_messages = self.irc.takeMsgs()
|
|
|
|
commands = self.irc.takeCommands(initial_messages)
|
|
|
|
|
|
|
|
# SERVER pylink.unittest abcd 0 9PY :PyLink Service
|
|
|
|
serverline = 'SERVER %s %s 0 %s :PyLink Service' % (
|
|
|
|
self.sdata['hostname'], self.sdata['sendpass'], self.sdata['sid'])
|
|
|
|
self.assertIn(serverline, initial_messages)
|
|
|
|
self.assertIn('BURST', commands)
|
|
|
|
self.assertIn('ENDBURST', commands)
|
|
|
|
# Is it creating our lovely PyLink PseudoClient?
|
|
|
|
self.assertIn('UID', commands)
|
|
|
|
self.assertIn('FJOIN', commands)
|
|
|
|
|
2015-07-04 21:34:33 +02:00
|
|
|
def testCheckRecvpass(self):
|
2015-07-04 03:07:47 +02:00
|
|
|
# Correct recvpass here.
|
|
|
|
self.irc.run('SERVER somehow.someday abcd 0 0AL :Somehow Server - McMurdo Station, Antarctica')
|
|
|
|
# Incorrect recvpass here; should raise ProtocolError.
|
2015-07-08 03:30:42 +02:00
|
|
|
self.assertRaises(classes.ProtocolError, self.irc.run, 'SERVER somehow.someday BADPASS 0 0AL :Somehow Server - McMurdo Station, Antarctica')
|
2015-07-04 03:07:47 +02:00
|
|
|
|
2015-07-04 08:32:41 +02:00
|
|
|
def testSpawnClient(self):
|
|
|
|
u = self.proto.spawnClient(self.irc, 'testuser3', 'moo', 'hello.world').uid
|
|
|
|
# Check the server index and the user index
|
|
|
|
self.assertIn(u, self.irc.servers[self.irc.sid].users)
|
|
|
|
self.assertIn(u, self.irc.users)
|
|
|
|
# Raise ValueError when trying to spawn a client on a server that's not ours
|
|
|
|
self.assertRaises(ValueError, self.proto.spawnClient, self.irc, 'abcd', 'user', 'dummy.user.net', server='44A')
|
2015-07-08 03:30:42 +02:00
|
|
|
# Unfilled args should get placeholder fields and not error.
|
|
|
|
self.proto.spawnClient(self.irc, 'testuser4')
|
2015-07-04 08:32:41 +02:00
|
|
|
|
|
|
|
def testJoinClient(self):
|
|
|
|
u = self.u
|
|
|
|
self.proto.joinClient(self.irc, u, '#Channel')
|
|
|
|
self.assertIn(u, self.irc.channels['#channel'].users)
|
|
|
|
# Non-existant user.
|
|
|
|
self.assertRaises(LookupError, self.proto.joinClient, self.irc, '9PYZZZZZZ', '#test')
|
|
|
|
|
|
|
|
def testPartClient(self):
|
|
|
|
u = self.u
|
|
|
|
self.proto.joinClient(self.irc, u, '#channel')
|
|
|
|
self.proto.partClient(self.irc, u, '#channel')
|
|
|
|
self.assertNotIn(u, self.irc.channels['#channel'].users)
|
|
|
|
|
|
|
|
def testQuitClient(self):
|
|
|
|
u = self.proto.spawnClient(self.irc, 'testuser3', 'moo', 'hello.world').uid
|
|
|
|
self.proto.joinClient(self.irc, u, '#channel')
|
|
|
|
self.assertRaises(LookupError, self.proto.quitClient, self.irc, '9PYZZZZZZ', 'quit reason')
|
|
|
|
self.proto.quitClient(self.irc, u, 'quit reason')
|
|
|
|
self.assertNotIn(u, self.irc.channels['#channel'].users)
|
|
|
|
self.assertNotIn(u, self.irc.users)
|
|
|
|
self.assertNotIn(u, self.irc.servers[self.irc.sid].users)
|
|
|
|
|
2015-07-04 08:48:28 +02:00
|
|
|
def testKickClient(self):
|
|
|
|
target = self.proto.spawnClient(self.irc, 'soccerball', 'soccerball', 'abcd').uid
|
|
|
|
self.proto.joinClient(self.irc, target, '#pylink')
|
|
|
|
self.assertIn(self.u, self.irc.channels['#pylink'].users)
|
|
|
|
self.assertIn(target, self.irc.channels['#pylink'].users)
|
|
|
|
self.proto.kickClient(self.irc, self.u, '#pylink', target, 'Pow!')
|
|
|
|
self.assertNotIn(target, self.irc.channels['#pylink'].users)
|
|
|
|
|
|
|
|
def testNickClient(self):
|
|
|
|
self.proto.nickClient(self.irc, self.u, 'NotPyLink')
|
|
|
|
self.assertEqual('NotPyLink', self.irc.users[self.u].nick)
|
|
|
|
|
2015-07-09 03:23:32 +02:00
|
|
|
def testModeClient(self):
|
|
|
|
testuser = self.proto.spawnClient(self.irc, 'testcakes')
|
|
|
|
self.irc.takeMsgs()
|
|
|
|
self.proto.modeClient(self.irc, self.u, testuser.uid, [('+i', None), ('+w', None)])
|
|
|
|
self.assertEqual({('i', None), ('w', None)}, testuser.modes)
|
|
|
|
|
|
|
|
self.proto.modeClient(self.irc, self.u, '#pylink', [('+s', None), ('+l', '30')])
|
|
|
|
self.assertEqual({('s', None), ('l', '30')}, self.irc.channels['#pylink'].modes)
|
|
|
|
|
|
|
|
cmds = self.irc.takeCommands(self.irc.takeMsgs())
|
|
|
|
self.assertEqual(cmds, ['MODE', 'FMODE'])
|
|
|
|
|
2015-07-04 20:57:21 +02:00
|
|
|
def testSpawnServer(self):
|
|
|
|
# Incorrect SID length
|
|
|
|
self.assertRaises(Exception, self.proto.spawnServer, self.irc, 'subserver.pylink', '34Q0')
|
|
|
|
self.proto.spawnServer(self.irc, 'subserver.pylink', '34Q')
|
|
|
|
# Duplicate server name
|
|
|
|
self.assertRaises(Exception, self.proto.spawnServer, self.irc, 'Subserver.PyLink', '34Z')
|
|
|
|
# Duplicate SID
|
|
|
|
self.assertRaises(Exception, self.proto.spawnServer, self.irc, 'another.Subserver.PyLink', '34Q')
|
|
|
|
self.assertIn('34Q', self.irc.servers)
|
|
|
|
# Are we bursting properly?
|
|
|
|
self.assertIn(':34Q ENDBURST', self.irc.takeMsgs())
|
|
|
|
|
|
|
|
def testSpawnClientOnServer(self):
|
|
|
|
self.proto.spawnServer(self.irc, 'subserver.pylink', '34Q')
|
|
|
|
u = self.proto.spawnClient(self.irc, 'person1', 'person', 'users.overdrive.pw', server='34Q')
|
|
|
|
# We're spawning clients on the right server, hopefully...
|
|
|
|
self.assertIn(u.uid, self.irc.servers['34Q'].users)
|
|
|
|
self.assertNotIn(u.uid, self.irc.servers[self.irc.sid].users)
|
|
|
|
|
|
|
|
def testSquit(self):
|
|
|
|
# Spawn a messy network map, just because!
|
|
|
|
self.proto.spawnServer(self.irc, 'level1.pylink', '34P')
|
|
|
|
self.proto.spawnServer(self.irc, 'level2.pylink', '34Q', uplink='34P')
|
|
|
|
self.proto.spawnServer(self.irc, 'level3.pylink', '34Z', uplink='34Q')
|
|
|
|
self.proto.spawnServer(self.irc, 'level4.pylink', '34Y', uplink='34Z')
|
|
|
|
self.assertEqual(self.irc.servers['34Y'].uplink, '34Z')
|
|
|
|
s4u = self.proto.spawnClient(self.irc, 'person1', 'person', 'users.overdrive.pw', server='34Y').uid
|
|
|
|
s3u = self.proto.spawnClient(self.irc, 'person2', 'person', 'users.overdrive.pw', server='34Z').uid
|
|
|
|
self.proto.joinClient(self.irc, s3u, '#pylink')
|
|
|
|
self.proto.joinClient(self.irc, s4u, '#pylink')
|
2015-07-08 03:30:42 +02:00
|
|
|
self.irc.run(':34Z SQUIT 34Y :random squit messsage')
|
2015-07-04 20:57:21 +02:00
|
|
|
self.assertNotIn(s4u, self.irc.users)
|
|
|
|
self.assertNotIn('34Y', self.irc.servers)
|
|
|
|
# Netsplits are obviously recursive, so all these should be removed.
|
|
|
|
self.proto.handle_squit(self.irc, '9PY', 'SQUIT', ['34P'])
|
|
|
|
self.assertNotIn(s3u, self.irc.users)
|
|
|
|
self.assertNotIn('34P', self.irc.servers)
|
|
|
|
self.assertNotIn('34Q', self.irc.servers)
|
|
|
|
self.assertNotIn('34Z', self.irc.servers)
|
|
|
|
|
|
|
|
def testRSquit(self):
|
|
|
|
u = self.proto.spawnClient(self.irc, 'person1', 'person', 'users.overdrive.pw')
|
|
|
|
u.identified = 'admin'
|
|
|
|
self.proto.spawnServer(self.irc, 'level1.pylink', '34P')
|
|
|
|
self.irc.run(':%s RSQUIT level1.pylink :some reason' % self.u)
|
|
|
|
# No SQUIT yet, since the 'PyLink' client isn't identified
|
|
|
|
self.assertNotIn('SQUIT', self.irc.takeCommands(self.irc.takeMsgs()))
|
|
|
|
# The one we just spawned however, is.
|
|
|
|
self.irc.run(':%s RSQUIT level1.pylink :some reason' % u.uid)
|
|
|
|
self.assertIn('SQUIT', self.irc.takeCommands(self.irc.takeMsgs()))
|
|
|
|
self.assertNotIn('34P', self.irc.servers)
|
|
|
|
|
2015-07-04 21:34:33 +02:00
|
|
|
def testHandleServer(self):
|
|
|
|
self.irc.run('SERVER whatever.net abcd 0 10X :something')
|
|
|
|
self.assertIn('10X', self.irc.servers)
|
|
|
|
self.assertEqual('whatever.net', self.irc.servers['10X'].name)
|
|
|
|
self.irc.run(':10X SERVER test.server * 1 0AL :testing raw message syntax')
|
|
|
|
self.assertIn('0AL', self.irc.servers)
|
|
|
|
self.assertEqual('test.server', self.irc.servers['0AL'].name)
|
|
|
|
|
|
|
|
def testHandleUID(self):
|
|
|
|
self.irc.run('SERVER whatever.net abcd 0 10X :something')
|
|
|
|
self.irc.run(':10X UID 10XAAAAAB 1429934638 GL 0::1 hidden-7j810p.9mdf.lrek.0000.0000.IP gl 0::1 1429934638 +Wioswx +ACGKNOQXacfgklnoqvx :realname')
|
|
|
|
self.assertIn('10XAAAAAB', self.irc.servers['10X'].users)
|
|
|
|
self.assertIn('10XAAAAAB', self.irc.users)
|
|
|
|
u = self.irc.users['10XAAAAAB']
|
|
|
|
self.assertEqual('GL', u.nick)
|
|
|
|
|
|
|
|
def testHandleKill(self):
|
|
|
|
self.irc.takeMsgs() # Ignore the initial connect messages
|
2015-07-08 05:59:35 +02:00
|
|
|
utils.add_hook(self.irc.dummyhook, 'KILL')
|
2015-07-06 04:19:49 +02:00
|
|
|
olduid = self.irc.pseudoclient.uid
|
|
|
|
self.irc.run(':{u} KILL {u} :killed'.format(u=olduid))
|
2015-07-04 21:34:33 +02:00
|
|
|
msgs = self.irc.takeMsgs()
|
|
|
|
commands = self.irc.takeCommands(msgs)
|
2015-07-08 05:59:35 +02:00
|
|
|
hookdata = self.irc.takeHooks()[0]
|
2015-07-08 22:35:20 +02:00
|
|
|
del hookdata['ts']
|
2015-07-08 05:59:35 +02:00
|
|
|
self.assertEqual({'target': olduid, 'text': 'killed'}, hookdata)
|
2015-07-04 21:34:33 +02:00
|
|
|
# Make sure we're respawning our PseudoClient when its killed
|
|
|
|
self.assertIn('UID', commands)
|
|
|
|
self.assertIn('FJOIN', commands)
|
2015-07-06 04:19:49 +02:00
|
|
|
# Also make sure that we're updating the irc.pseudoclient field
|
|
|
|
self.assertNotEqual(self.irc.pseudoclient.uid, olduid)
|
2015-07-04 21:34:33 +02:00
|
|
|
|
|
|
|
def testHandleKick(self):
|
|
|
|
self.irc.takeMsgs() # Ignore the initial connect messages
|
2015-07-08 05:59:35 +02:00
|
|
|
utils.add_hook(self.irc.dummyhook, 'KICK')
|
2015-07-06 04:19:49 +02:00
|
|
|
self.irc.run(':{u} KICK #pylink {u} :kicked'.format(u=self.irc.pseudoclient.uid))
|
2015-07-08 05:59:35 +02:00
|
|
|
hookdata = self.irc.takeHooks()[0]
|
2015-07-08 22:35:20 +02:00
|
|
|
del hookdata['ts']
|
2015-07-08 05:59:35 +02:00
|
|
|
self.assertEqual({'target': self.u, 'text': 'kicked', 'channel': '#pylink'}, hookdata)
|
|
|
|
|
2015-07-04 21:34:33 +02:00
|
|
|
# Ditto above
|
|
|
|
msgs = self.irc.takeMsgs()
|
|
|
|
commands = self.irc.takeCommands(msgs)
|
|
|
|
self.assertIn('FJOIN', commands)
|
|
|
|
|
2015-07-06 04:19:49 +02:00
|
|
|
def testHandleFjoinUsers(self):
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790411 + :,10XAAAAAA ,10XAAAAAB')
|
2015-07-06 04:19:49 +02:00
|
|
|
self.assertEqual({'10XAAAAAA', '10XAAAAAB'}, self.irc.channels['#chat'].users)
|
|
|
|
# self.assertIn('10XAAAAAB', self.irc.channels['#chat'].users)
|
|
|
|
# Sequential FJOINs must NOT remove existing users
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790412 + :,10XAAAAAC')
|
2015-07-06 04:19:49 +02:00
|
|
|
# Join list can be empty too, in the case of permanent channels with 0 users.
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790413 +nt :')
|
2015-07-06 04:19:49 +02:00
|
|
|
|
|
|
|
def testHandleFjoinModes(self):
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790411 +nt :,10XAAAAAA ,10XAAAAAB')
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertEqual({('n', None), ('t', None)}, self.irc.channels['#chat'].modes)
|
2015-07-06 04:19:49 +02:00
|
|
|
# Sequential FJOINs must NOT remove existing modes
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790412 + :,10XAAAAAC')
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertEqual({('n', None), ('t', None)}, self.irc.channels['#chat'].modes)
|
2015-07-06 04:19:49 +02:00
|
|
|
|
|
|
|
def testHandleFjoinModesWithArgs(self):
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790414 +nlks 10 t0psekrit :,10XAAAAAA ,10XAAAAAB')
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertEqual({('n', None), ('s', None), ('l', '10'), ('k', 't0psekrit')},
|
2015-07-06 04:19:49 +02:00
|
|
|
self.irc.channels['#chat'].modes)
|
|
|
|
|
|
|
|
def testHandleFjoinPrefixes(self):
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #Chat 1423790418 +nt :ov,10XAAAAAA v,10XAAAAAB ,10XAAAAAC')
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertEqual({('n', None), ('t', None)}, self.irc.channels['#chat'].modes)
|
2015-07-06 04:19:49 +02:00
|
|
|
self.assertEqual({'10XAAAAAA', '10XAAAAAB', '10XAAAAAC'}, self.irc.channels['#chat'].users)
|
|
|
|
self.assertIn('10XAAAAAA', self.irc.channels['#chat'].prefixmodes['ops'])
|
|
|
|
self.assertEqual({'10XAAAAAA', '10XAAAAAB'}, self.irc.channels['#chat'].prefixmodes['voices'])
|
|
|
|
|
2015-07-08 05:59:35 +02:00
|
|
|
def testHandleFjoinHook(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'JOIN')
|
|
|
|
self.irc.run(':10X FJOIN #PyLink 1423790418 +ls 10 :ov,10XAAAAAA v,10XAAAAAB ,10XAAAAAC')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
expected = {'modes': [('+l', '10'), ('+s', None)],
|
|
|
|
'channel': '#pylink',
|
2015-07-08 22:35:20 +02:00
|
|
|
'users': ['10XAAAAAA', '10XAAAAAB', '10XAAAAAC'],
|
|
|
|
'ts': 1423790418}
|
2015-07-08 05:59:35 +02:00
|
|
|
self.assertEqual(expected, hookdata)
|
|
|
|
|
2015-07-06 04:19:49 +02:00
|
|
|
def testHandleFmode(self):
|
2015-07-08 05:59:35 +02:00
|
|
|
self.irc.run(':10X FJOIN #pylink 1423790411 +n :o,10XAAAAAA ,10XAAAAAB')
|
2015-07-08 22:35:20 +02:00
|
|
|
utils.add_hook(self.irc.dummyhook, 'MODE')
|
2015-07-06 04:19:49 +02:00
|
|
|
self.irc.run(':70M FMODE #pylink 1423790412 +ikl herebedragons 100')
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertEqual({('i', None), ('k', 'herebedragons'), ('l', '100'), ('n', None)}, self.irc.channels['#pylink'].modes)
|
2015-07-06 04:19:49 +02:00
|
|
|
self.irc.run(':70M FMODE #pylink 1423790413 -ilk+m herebedragons')
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertEqual({('m', None), ('n', None)}, self.irc.channels['#pylink'].modes)
|
2015-07-08 22:35:20 +02:00
|
|
|
|
|
|
|
hookdata = self.irc.takeHooks()
|
|
|
|
expected = [{'target': '#pylink', 'modes': [('+i', None), ('+k', 'herebedragons'), ('+l', '100')], 'ts': 1423790412},
|
|
|
|
{'target': '#pylink', 'modes': [('-i', None), ('-l', None), ('-k', 'herebedragons'), ('+m', None)], 'ts': 1423790413}]
|
|
|
|
self.assertEqual(expected, hookdata)
|
2015-07-06 04:19:49 +02:00
|
|
|
|
|
|
|
def testHandleFmodeWithPrefixes(self):
|
|
|
|
self.irc.run(':70M FJOIN #pylink 1423790411 +n :o,10XAAAAAA ,10XAAAAAB')
|
2015-07-08 22:35:20 +02:00
|
|
|
utils.add_hook(self.irc.dummyhook, 'MODE')
|
2015-07-06 04:19:49 +02:00
|
|
|
# Prefix modes are stored separately, so they should never show up in .modes
|
2015-07-06 08:00:14 +02:00
|
|
|
self.assertNotIn(('o', '10XAAAAAA'), self.irc.channels['#pylink'].modes)
|
2015-07-06 04:19:49 +02:00
|
|
|
self.assertEqual({'10XAAAAAA'}, self.irc.channels['#pylink'].prefixmodes['ops'])
|
|
|
|
self.irc.run(':70M FMODE #pylink 1423790412 +lot 50 %s' % self.u)
|
|
|
|
self.assertIn(self.u, self.irc.channels['#pylink'].prefixmodes['ops'])
|
2015-07-06 08:00:14 +02:00
|
|
|
modes = {('l', '50'), ('n', None), ('t', None)}
|
2015-07-06 04:19:49 +02:00
|
|
|
self.assertEqual(modes, self.irc.channels['#pylink'].modes)
|
|
|
|
self.irc.run(':70M FMODE #pylink 1423790413 -o %s' % self.u)
|
|
|
|
self.assertEqual(modes, self.irc.channels['#pylink'].modes)
|
|
|
|
self.assertNotIn(self.u, self.irc.channels['#pylink'].prefixmodes['ops'])
|
2015-07-08 22:35:20 +02:00
|
|
|
# Test hooks
|
|
|
|
hookdata = self.irc.takeHooks()
|
|
|
|
expected = [{'target': '#pylink', 'modes': [('+l', '50'), ('+o', '9PYAAAAAA'), ('+t', None)], 'ts': 1423790412},
|
|
|
|
{'target': '#pylink', 'modes': [('-o', '9PYAAAAAA')], 'ts': 1423790413}]
|
|
|
|
self.assertEqual(expected, hookdata)
|
2015-07-06 08:15:17 +02:00
|
|
|
|
|
|
|
def testFmodeRemovesOldParams(self):
|
2015-07-08 22:35:20 +02:00
|
|
|
utils.add_hook(self.irc.dummyhook, 'MODE')
|
2015-07-06 08:15:17 +02:00
|
|
|
self.irc.run(':70M FMODE #pylink 1423790412 +l 50')
|
|
|
|
self.assertEqual({('l', '50')}, self.irc.channels['#pylink'].modes)
|
|
|
|
self.irc.run(':70M FMODE #pylink 1423790412 +l 30')
|
|
|
|
self.assertEqual({('l', '30')}, self.irc.channels['#pylink'].modes)
|
2015-07-08 22:35:20 +02:00
|
|
|
hookdata = self.irc.takeHooks()
|
|
|
|
expected = [{'target': '#pylink', 'modes': [('+l', '50')], 'ts': 1423790412},
|
|
|
|
{'target': '#pylink', 'modes': [('+l', '30')], 'ts': 1423790412}]
|
|
|
|
self.assertEqual(expected, hookdata)
|
2015-07-06 08:15:17 +02:00
|
|
|
|
2015-07-08 03:30:42 +02:00
|
|
|
def testFjoinResetsTS(self):
|
|
|
|
curr_ts = self.irc.channels['#pylink'].ts
|
|
|
|
self.irc.run(':70M FJOIN #pylink 5 + :')
|
|
|
|
self.assertEqual(self.irc.channels['#pylink'].ts, 5)
|
|
|
|
|
|
|
|
def testHandleFTopic(self):
|
|
|
|
self.irc.run(':70M FTOPIC #pylink 1434510754 GLo|o|!GLolol@escape.the.dreamland.ca :Some channel topic')
|
|
|
|
self.assertEqual(self.irc.channels['#pylink'].topic, 'Some channel topic')
|
|
|
|
|
|
|
|
def testHandleTopic(self):
|
|
|
|
self.irc.connect()
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'TOPIC')
|
|
|
|
self.irc.run(':9PYAAAAAA TOPIC #PyLink :test')
|
|
|
|
self.assertEqual(self.irc.channels['#pylink'].topic, 'test')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
# Setter is a nick here, not an UID - this is to be consistent
|
|
|
|
# with FTOPIC above, which sends the nick/prefix of the topic setter.
|
|
|
|
self.assertTrue(utils.isNick(hookdata.get('setter')))
|
|
|
|
self.assertEqual(type(hookdata['ts']), int)
|
|
|
|
self.assertEqual(hookdata['topic'], 'test')
|
|
|
|
self.assertEqual(hookdata['channel'], '#pylink')
|
|
|
|
|
2015-07-08 05:59:35 +02:00
|
|
|
def testMsgHooks(self):
|
|
|
|
for m in ('NOTICE', 'PRIVMSG'):
|
|
|
|
utils.add_hook(self.irc.dummyhook, m)
|
|
|
|
self.irc.run(':70MAAAAAA %s #dev :afasfsa' % m)
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
2015-07-08 22:35:20 +02:00
|
|
|
del hookdata['ts']
|
2015-07-08 05:59:35 +02:00
|
|
|
self.assertEqual({'target': '#dev', 'text': 'afasfsa'}, hookdata)
|
|
|
|
|
|
|
|
def testHandlePart(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'PART')
|
|
|
|
self.irc.run(':9PYAAAAAA PART #pylink')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
2015-07-08 22:35:20 +02:00
|
|
|
del hookdata['ts']
|
2015-07-08 05:59:35 +02:00
|
|
|
self.assertEqual({'channel': '#pylink', 'text': ''}, hookdata)
|
|
|
|
|
2015-07-08 22:35:20 +02:00
|
|
|
def testUIDHook(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'UID')
|
|
|
|
# Create the server so we won't KeyError on processing UID
|
|
|
|
self.irc.run('SERVER whatever. abcd 0 10X :Whatever Server - Hellas Planitia, Mars')
|
|
|
|
self.irc.run(':10X UID 10XAAAAAB 1429934638 GL 0::1 '
|
|
|
|
'hidden-7j810p.9mdf.lrek.0000.0000.IP gl 0::1 1429934638 '
|
|
|
|
'+Wioswx +ACGKNOQXacfgklnoqvx :realname')
|
|
|
|
expected = {'uid': '10XAAAAAB', 'ts': '1429934638', 'nick': 'GL',
|
|
|
|
'realhost': '0::1', 'ident': 'gl', 'ip': '0::1',
|
|
|
|
'host': 'hidden-7j810p.9mdf.lrek.0000.0000.IP'}
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
self.assertEqual(hookdata, expected)
|
|
|
|
|
|
|
|
def testHandleQuit(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'QUIT')
|
|
|
|
self.irc.run('SERVER whatever. abcd 0 10X :Whatever Server - Hellas Planitia, Mars')
|
|
|
|
self.irc.run(':10X UID 10XAAAAAB 1429934638 GL 0::1 '
|
|
|
|
'hidden-7j810p.9mdf.lrek.0000.0000.IP gl 0::1 1429934638 '
|
|
|
|
'+Wioswx +ACGKNOQXacfgklnoqvx :realname')
|
|
|
|
self.irc.run(':10XAAAAAB QUIT :Quit: quit message goes here')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
del hookdata['ts']
|
|
|
|
self.assertEqual(hookdata, {'text': 'Quit: quit message goes here'})
|
|
|
|
self.assertNotIn('10XAAAAAB', self.irc.users)
|
|
|
|
self.assertNotIn('10XAAAAAB', self.irc.servers['10X'].users)
|
|
|
|
|
2015-07-08 22:56:28 +02:00
|
|
|
def testHandleServer(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'SERVER')
|
|
|
|
self.irc.run(':00A SERVER test.server * 1 00C :testing raw message syntax')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
del hookdata['ts']
|
|
|
|
self.assertEqual(hookdata, {'name': 'test.server', 'sid': '00C',
|
|
|
|
'text': 'testing raw message syntax'})
|
|
|
|
self.assertIn('00C', self.irc.servers)
|
|
|
|
|
|
|
|
def testHandleNick(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'NICK')
|
|
|
|
self.irc.run(':9PYAAAAAA NICK PyLink-devel 1434744242')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
expected = {'newnick': 'PyLink-devel', 'oldnick': 'PyLink', 'ts': 1434744242}
|
|
|
|
self.assertEqual(hookdata, expected)
|
|
|
|
self.assertEqual('PyLink-devel', self.irc.users['9PYAAAAAA'].nick)
|
|
|
|
|
|
|
|
def testHandleSave(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'SAVE')
|
|
|
|
self.irc.run(':9PYAAAAAA NICK Derp_ 1433728673')
|
|
|
|
self.irc.run(':70M SAVE 9PYAAAAAA 1433728673')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
self.assertEqual(hookdata, {'target': '9PYAAAAAA', 'ts': 1433728673})
|
|
|
|
self.assertEqual('9PYAAAAAA', self.irc.users['9PYAAAAAA'].nick)
|
|
|
|
|
|
|
|
def testInviteHook(self):
|
|
|
|
utils.add_hook(self.irc.dummyhook, 'INVITE')
|
|
|
|
self.irc.run(':10XAAAAAA INVITE 9PYAAAAAA #blah 0')
|
|
|
|
hookdata = self.irc.takeHooks()[0]
|
|
|
|
del hookdata['ts']
|
|
|
|
self.assertEqual(hookdata, {'target': '9PYAAAAAA', 'channel': '#blah'})
|
2015-07-09 03:03:08 +02:00
|
|
|
|
|
|
|
def testHandleOpertype(self):
|
|
|
|
self.irc.run('SERVER whatever. abcd 0 10X :Whatever Server - Hellas Planitia, Mars')
|
|
|
|
self.irc.run(':10X UID 10XAAAAAB 1429934638 GL 0::1 '
|
|
|
|
'hidden-7j810p.9mdf.lrek.0000.0000.IP gl 0::1 1429934638 '
|
|
|
|
'+Wioswx +ACGKNOQXacfgklnoqvx :realname')
|
|
|
|
self.irc.run(':10XAAAAAB OPERTYPE Network_Owner')
|
|
|
|
self.assertIn(('o', None), self.irc.users['10XAAAAAB'].modes)
|
|
|
|
|
2015-07-04 03:07:47 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|