mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-11 04:32:36 +01:00
Filter: catch invalid input for unbinary command.
Signed-off-by: James McCoy <jamessan@users.sourceforge.net>
This commit is contained in:
parent
7feb50685a
commit
84b878b10e
@ -162,8 +162,11 @@ class Filter(callbacks.Plugin):
|
|||||||
Returns the character representation of binary <text>.
|
Returns the character representation of binary <text>.
|
||||||
Assumes ASCII, 8 digits per character.
|
Assumes ASCII, 8 digits per character.
|
||||||
"""
|
"""
|
||||||
|
try:
|
||||||
L = [chr(int(text[i:(i+8)], 2)) for i in xrange(0, len(text), 8)]
|
L = [chr(int(text[i:(i+8)], 2)) for i in xrange(0, len(text), 8)]
|
||||||
irc.reply(''.join(L))
|
irc.reply(''.join(L))
|
||||||
|
except ValueError:
|
||||||
|
irc.errorInvalid('binary string', text)
|
||||||
unbinary = wrap(unbinary, ['text'])
|
unbinary = wrap(unbinary, ['text'])
|
||||||
|
|
||||||
def hexlify(self, irc, msg, args, text):
|
def hexlify(self, irc, msg, args, text):
|
||||||
|
@ -89,6 +89,7 @@ class FilterTest(ChannelPluginTestCase):
|
|||||||
|
|
||||||
def testUnbinary(self):
|
def testUnbinary(self):
|
||||||
self.assertResponse('unbinary 011011010110111101101111', 'moo')
|
self.assertResponse('unbinary 011011010110111101101111', 'moo')
|
||||||
|
self.assertError('unbinary moo')
|
||||||
|
|
||||||
def testRot13(self):
|
def testRot13(self):
|
||||||
for s in map(str, range(1000, 1010)):
|
for s in map(str, range(1000, 1010)):
|
||||||
|
Loading…
Reference in New Issue
Block a user