2003-09-05 20:47:58 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
|
|
|
# Copyright (c) 2002, Jeremiah Fincher
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
2003-12-02 13:27:45 +01:00
|
|
|
from testsupport import *
|
2003-09-05 20:47:58 +02:00
|
|
|
|
2004-02-18 14:41:47 +01:00
|
|
|
class MiscTestCase(ChannelPluginTestCase):
|
2003-12-12 18:53:16 +01:00
|
|
|
plugins = ('Misc', 'Utilities', 'Gameknot', 'Ctcp', 'Dict', 'User')
|
2003-11-11 12:43:51 +01:00
|
|
|
def testAction(self):
|
|
|
|
self.assertAction('action moos', 'moos')
|
2003-12-10 05:38:44 +01:00
|
|
|
|
|
|
|
def testActionDoesNotAllowEmptyString(self):
|
|
|
|
self.assertError('action')
|
|
|
|
self.assertError('action ""')
|
2003-11-11 12:43:51 +01:00
|
|
|
|
2003-09-10 10:32:20 +02:00
|
|
|
def testReplyWhenNotCommand(self):
|
2003-09-17 21:16:56 +02:00
|
|
|
try:
|
2004-01-18 08:58:26 +01:00
|
|
|
original = str(conf.supybot.reply.whenNotCommand)
|
|
|
|
conf.supybot.reply.whenNotCommand.set('True')
|
2003-09-17 21:16:56 +02:00
|
|
|
self.prefix = 'somethingElse!user@host.domain.tld'
|
|
|
|
self.assertRegexp('foo bar baz', 'not.*command')
|
|
|
|
finally:
|
2004-01-18 08:58:26 +01:00
|
|
|
conf.supybot.reply.whenNotCommand.set(original)
|
2003-09-11 07:31:01 +02:00
|
|
|
|
2004-01-01 20:51:48 +01:00
|
|
|
if network:
|
|
|
|
def testNotReplyWhenRegexpsMatch(self):
|
|
|
|
try:
|
2004-01-18 08:58:26 +01:00
|
|
|
original = str(conf.supybot.reply.whenNotCommand)
|
|
|
|
conf.supybot.reply.whenNotCommand.set('True')
|
2004-01-01 20:51:48 +01:00
|
|
|
self.prefix = 'somethingElse!user@host.domain.tld'
|
|
|
|
self.assertNotError('http://gameknot.com/chess.pl?bd=1019508')
|
|
|
|
finally:
|
2004-01-18 08:58:26 +01:00
|
|
|
conf.supybot.reply.whenNotCommand.set(original)
|
2003-09-12 08:59:41 +02:00
|
|
|
|
|
|
|
def testNotReplyWhenNotCanonicalName(self):
|
2003-09-17 21:16:56 +02:00
|
|
|
try:
|
2004-01-18 08:58:26 +01:00
|
|
|
original = str(conf.supybot.reply.whenNotCommand)
|
|
|
|
conf.supybot.reply.whenNotCommand.set('True')
|
2003-09-17 21:16:56 +02:00
|
|
|
self.prefix = 'somethingElse!user@host.domain.tld'
|
|
|
|
self.assertNotRegexp('STrLeN foobar', 'command')
|
|
|
|
self.assertResponse('StRlEn foobar', '6')
|
|
|
|
finally:
|
2004-01-18 08:58:26 +01:00
|
|
|
conf.supybot.reply.whenNotCommand.set(original)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-09-05 20:47:58 +02:00
|
|
|
def testHelp(self):
|
2003-10-24 13:44:44 +02:00
|
|
|
self.assertHelp('help list')
|
2003-12-10 05:38:44 +01:00
|
|
|
self.assertRegexp('help help', r'^\(\x02help')
|
|
|
|
self.assertRegexp('help misc help', r'^\(\x02misc help')
|
|
|
|
self.assertError('help nonExistentCommand')
|
|
|
|
|
2003-12-12 18:53:16 +01:00
|
|
|
def testHelpDoesAmbiguityWithDefaultPlugins(self):
|
|
|
|
m = self.getMsg('help list') # Misc.list and User.list.
|
|
|
|
self.failIf(m.args[1].startswith('Error'))
|
|
|
|
|
2003-12-10 05:38:44 +01:00
|
|
|
def testHelpStripsPrefixChars(self):
|
2003-10-20 05:55:26 +02:00
|
|
|
try:
|
2004-01-18 08:58:26 +01:00
|
|
|
original = str(conf.supybot.prefixChars)
|
|
|
|
conf.supybot.prefixChars.set('@')
|
2003-10-24 13:44:44 +02:00
|
|
|
self.assertHelp('help @list')
|
2003-10-20 05:55:26 +02:00
|
|
|
finally:
|
2004-01-18 08:58:26 +01:00
|
|
|
conf.supybot.prefixChars.set(original)
|
2003-12-10 05:38:44 +01:00
|
|
|
|
|
|
|
def testHelpIsCaseInsensitive(self):
|
|
|
|
self.assertHelp('help LIST')
|
2003-09-05 20:47:58 +02:00
|
|
|
|
|
|
|
def testList(self):
|
2003-12-10 05:38:44 +01:00
|
|
|
self.assertNotError('list')
|
2003-10-21 08:03:57 +02:00
|
|
|
self.assertNotError('list Misc')
|
2003-12-10 05:38:44 +01:00
|
|
|
|
|
|
|
def testListIsCaseInsensitive(self):
|
2003-10-21 08:03:57 +02:00
|
|
|
self.assertNotError('list misc')
|
2003-12-10 05:38:44 +01:00
|
|
|
|
|
|
|
def testListPrivate(self):
|
2003-09-22 12:22:06 +02:00
|
|
|
# If Ctcp changes to public, these tests will break. So if
|
|
|
|
# the next assert fails, change the plugin we test for public/private
|
|
|
|
# to some other non-public plugin.
|
|
|
|
name = 'Ctcp'
|
|
|
|
self.failIf(self.irc.getCallback(name).public)
|
|
|
|
self.assertNotRegexp('list', name)
|
|
|
|
self.assertRegexp('list --private', name)
|
2003-10-21 08:03:57 +02:00
|
|
|
self.assertNotRegexp('list Owner', '_exec')
|
2003-09-05 20:47:58 +02:00
|
|
|
|
2003-11-25 09:51:27 +01:00
|
|
|
def testListNoIncludeDispatcher(self):
|
|
|
|
self.assertNotRegexp('list Misc', 'misc')
|
|
|
|
|
2003-12-09 22:32:55 +01:00
|
|
|
def testListIncludesDispatcherIfThereIsAnOriginalCommand(self):
|
|
|
|
self.assertRegexp('list Dict', r'\bdict\b')
|
|
|
|
|
2003-09-05 20:47:58 +02:00
|
|
|
def testVersion(self):
|
|
|
|
self.assertNotError('version')
|
|
|
|
|
|
|
|
def testSource(self):
|
|
|
|
self.assertNotError('source')
|
|
|
|
|
|
|
|
def testLogfilesize(self):
|
2003-09-29 06:42:15 +02:00
|
|
|
self.feedMsg('foo bar baz')
|
|
|
|
self.feedMsg('bar baz quux')
|
|
|
|
self.assertNotError('upkeep')
|
2003-09-05 20:47:58 +02:00
|
|
|
self.assertNotError('logfilesize')
|
|
|
|
|
2003-09-07 07:26:18 +02:00
|
|
|
def testPlugin(self):
|
2004-02-13 10:56:34 +01:00
|
|
|
self.assertResponse('plugin plugin', 'Misc')
|
2003-09-07 07:26:18 +02:00
|
|
|
|
|
|
|
def testTell(self):
|
|
|
|
m = self.getMsg('tell foo [plugin tell]')
|
|
|
|
self.failUnless(m.args[0] == 'foo')
|
2003-10-21 08:03:57 +02:00
|
|
|
self.failUnless('Misc' in m.args[1])
|
2003-09-07 07:26:18 +02:00
|
|
|
m = self.getMsg('tell #foo [plugin tell]')
|
|
|
|
self.failUnless(m.args[0] == '#foo')
|
2003-10-21 08:03:57 +02:00
|
|
|
self.failUnless('Misc' in m.args[1])
|
2004-01-15 18:21:06 +01:00
|
|
|
m = self.getMsg('tell me you love me')
|
|
|
|
self.failUnless(m.args[0] == self.nick)
|
2003-09-07 07:26:18 +02:00
|
|
|
|
2004-02-02 00:04:19 +01:00
|
|
|
def testTellDoesNotPropogateAction(self):
|
|
|
|
m = self.getMsg('tell foo [action bar]')
|
|
|
|
self.failIf(ircmsgs.isAction(m))
|
|
|
|
|
2003-09-07 07:26:18 +02:00
|
|
|
def testLast(self):
|
|
|
|
self.feedMsg('foo bar baz')
|
2003-11-12 01:27:34 +01:00
|
|
|
self.assertResponse('last', '<%s> foo bar baz' % self.nick)
|
|
|
|
self.assertRegexp('last', '<%s> @last' % self.nick)
|
|
|
|
self.assertResponse('last --with foo', '<%s> foo bar baz' % self.nick)
|
2003-09-17 10:07:24 +02:00
|
|
|
self.assertRegexp('last --regexp m/\s+/', 'last --with foo')
|
2003-11-12 01:27:34 +01:00
|
|
|
self.assertResponse('last --regexp m/bar/',
|
|
|
|
'<%s> foo bar baz' % self.nick)
|
2003-10-22 10:08:59 +02:00
|
|
|
self.assertResponse('last --from %s' % self.nick.upper(),
|
2003-11-12 01:27:34 +01:00
|
|
|
'<%s> @last --regexp m/bar/' % self.nick)
|
2003-10-24 23:55:34 +02:00
|
|
|
self.assertResponse('last --from %s*' % self.nick[0],
|
2003-11-12 01:27:34 +01:00
|
|
|
'<%s> @last --from %s' %
|
|
|
|
(self.nick, self.nick.upper()))
|
2003-09-05 20:47:58 +02:00
|
|
|
|
2003-09-07 07:33:37 +02:00
|
|
|
def testMore(self):
|
|
|
|
self.assertRegexp('echo %s' % ('abc'*300), 'more')
|
|
|
|
self.assertRegexp('more', 'more')
|
|
|
|
self.assertNotRegexp('more', 'more')
|
2003-12-16 05:12:01 +01:00
|
|
|
|
2004-04-27 19:14:31 +02:00
|
|
|
def testInvalidCommand(self):
|
|
|
|
self.assertResponse('echo []', '[]')
|
|
|
|
|
2003-12-16 05:12:01 +01:00
|
|
|
def testMoreIsCaseInsensitive(self):
|
|
|
|
self.assertNotError('echo %s' % ('abc'*2000))
|
|
|
|
self.assertNotError('more')
|
|
|
|
nick = ircutils.nickFromHostmask(self.prefix)
|
|
|
|
self.assertNotError('more %s' % nick)
|
|
|
|
self.assertNotError('more %s' % nick.upper())
|
|
|
|
self.assertNotError('more %s' % nick.lower())
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-10-03 17:42:11 +02:00
|
|
|
def testPrivate(self):
|
|
|
|
m = self.getMsg('private [list]')
|
|
|
|
self.failIf(ircutils.isChannel(m.args[0]))
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-10-20 12:10:46 +02:00
|
|
|
def testNotice(self):
|
|
|
|
m = self.getMsg('notice [list]')
|
|
|
|
self.assertEqual(m.command, 'NOTICE')
|
2003-09-07 07:33:37 +02:00
|
|
|
|
2004-04-12 01:57:30 +02:00
|
|
|
def testNoticePrivate(self):
|
|
|
|
m = self.assertNotError('notice [private [list]]')
|
|
|
|
self.assertEqual(m.command, 'NOTICE')
|
|
|
|
self.assertEqual(m.args[0], self.nick)
|
|
|
|
m = self.assertNotError('private [notice [list]]')
|
|
|
|
self.assertEqual(m.command, 'NOTICE')
|
|
|
|
self.assertEqual(m.args[0], self.nick)
|
|
|
|
|
2003-10-21 23:33:27 +02:00
|
|
|
def testHostmask(self):
|
|
|
|
self.assertResponse('hostmask', self.prefix)
|
|
|
|
|
2003-10-22 06:32:29 +02:00
|
|
|
def testApropos(self):
|
|
|
|
self.assertNotError('apropos f')
|
2003-10-27 05:59:54 +01:00
|
|
|
self.assertError('apropos asldkfjasdlkfja')
|
2003-11-25 10:32:18 +01:00
|
|
|
|
2003-11-26 19:21:12 +01:00
|
|
|
def testAproposDoesntReturnNonCanonicalNames(self):
|
|
|
|
self.assertNotRegexp('apropos exec', '_exec')
|
|
|
|
|
2003-11-25 10:32:18 +01:00
|
|
|
def testRevision(self):
|
|
|
|
self.assertNotError('revision Misc')
|
2004-01-14 16:50:45 +01:00
|
|
|
self.assertNotError('revision Misc.py')
|
2003-11-25 10:32:18 +01:00
|
|
|
self.assertNotError('revision')
|
2003-12-10 05:38:44 +01:00
|
|
|
|
2004-02-16 04:01:20 +01:00
|
|
|
def testRevisionDoesNotLowerUnnecessarily(self):
|
|
|
|
self.assertNotError('load Math')
|
|
|
|
m1 = self.assertNotError('revision Math')
|
|
|
|
m2 = self.assertNotError('revision math')
|
|
|
|
self.assertEqual(m1, m2)
|
|
|
|
|
2003-12-10 05:38:44 +01:00
|
|
|
def testRevisionIsCaseInsensitive(self):
|
|
|
|
self.assertNotError('revision misc')
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-04 16:19:41 +01:00
|
|
|
def testSeconds(self):
|
|
|
|
self.assertResponse('seconds 1s', '1')
|
|
|
|
self.assertResponse('seconds 10s', '10')
|
|
|
|
self.assertResponse('seconds 1m', '60')
|
|
|
|
self.assertResponse('seconds 1m 1s', '61')
|
|
|
|
self.assertResponse('seconds 1h', '3600')
|
|
|
|
self.assertResponse('seconds 1h 1s', '3601')
|
|
|
|
self.assertResponse('seconds 1d', '86400')
|
|
|
|
self.assertResponse('seconds 1d 1s', '86401')
|
|
|
|
self.assertResponse('seconds 2s', '2')
|
|
|
|
self.assertResponse('seconds 2m', '120')
|
|
|
|
self.assertResponse('seconds 2d 2h 2m 2s', '180122')
|
|
|
|
self.assertResponse('seconds 1s', '1')
|
2004-01-15 18:34:05 +01:00
|
|
|
self.assertResponse('seconds 1y 1s', '31536001')
|
|
|
|
self.assertResponse('seconds 1w 1s', '604801')
|
2004-01-04 16:19:41 +01:00
|
|
|
|
2003-10-22 06:32:29 +02:00
|
|
|
|
2004-02-18 14:41:47 +01:00
|
|
|
class MiscNonChannelTestCase(PluginTestCase):
|
|
|
|
plugins = ('Misc',)
|
|
|
|
def testAction(self):
|
|
|
|
self.prefix = 'something!else@somewhere.else'
|
|
|
|
self.nick = 'something'
|
|
|
|
m = self.assertAction('action foo', 'foo')
|
|
|
|
self.failIf(m.args[0] == self.irc.nick)
|
2003-09-05 20:47:58 +02:00
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|
|
|