2003-10-27 21:21:02 +01: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-10-27 21:21:02 +01:00
|
|
|
|
2003-11-02 17:45:38 +01:00
|
|
|
import sets
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.irclib as irclib
|
|
|
|
import supybot.plugins as plugins
|
2003-10-27 21:21:02 +01:00
|
|
|
|
2003-11-02 19:23:04 +01:00
|
|
|
class holder:
|
2003-11-05 05:57:13 +01:00
|
|
|
users = sets.Set(map(str, range(1000)))
|
2003-11-02 19:23:04 +01:00
|
|
|
|
2004-02-16 05:12:35 +01:00
|
|
|
class FunctionsTestCase(SupyTestCase):
|
2003-11-02 17:45:38 +01:00
|
|
|
class irc:
|
|
|
|
class state:
|
2003-11-02 19:23:04 +01:00
|
|
|
channels = {'#foo': holder()}
|
2003-11-02 17:45:38 +01:00
|
|
|
nick = 'foobar'
|
|
|
|
def testStandardSubstitute(self):
|
|
|
|
msg = ircmsgs.privmsg('#foo', 'filler', prefix='biff!quux@xyzzy')
|
2003-12-04 01:07:16 +01:00
|
|
|
s = plugins.standardSubstitute(self.irc, msg, '$rand')
|
|
|
|
try:
|
|
|
|
int(s)
|
|
|
|
except ValueError:
|
|
|
|
self.fail('$rand wasn\'t an int.')
|
2003-11-02 17:45:38 +01:00
|
|
|
s = plugins.standardSubstitute(self.irc, msg, '$randomInt')
|
|
|
|
try:
|
|
|
|
int(s)
|
|
|
|
except ValueError:
|
2003-11-04 04:52:50 +01:00
|
|
|
self.fail('$randomint wasn\'t an int.')
|
2003-11-02 17:45:38 +01:00
|
|
|
self.assertEqual(plugins.standardSubstitute(self.irc, msg, '$botnick'),
|
|
|
|
self.irc.nick)
|
|
|
|
self.assertEqual(plugins.standardSubstitute(self.irc, msg, '$who'),
|
|
|
|
msg.nick)
|
2004-08-21 05:00:09 +02:00
|
|
|
self.assertEqual(plugins.standardSubstitute(self.irc, msg, '$WHO'),
|
|
|
|
msg.nick, 'stand. sub. not case-insensitive.')
|
2003-11-13 19:38:52 +01:00
|
|
|
self.assertEqual(plugins.standardSubstitute(self.irc, msg, '$nick'),
|
|
|
|
msg.nick)
|
2003-11-02 17:45:38 +01:00
|
|
|
self.assert_(plugins.standardSubstitute(self.irc, msg, '$randomdate'))
|
2003-11-08 08:47:12 +01:00
|
|
|
q = plugins.standardSubstitute(self.irc,msg,'$randomdate\t$randomdate')
|
2003-11-04 04:52:50 +01:00
|
|
|
dl = q.split('\t')
|
|
|
|
if dl[0] == dl[1]:
|
|
|
|
self.fail ('Two $randomdates in the same string were the same')
|
|
|
|
q = plugins.standardSubstitute(self.irc, msg, '$randomint\t$randomint')
|
|
|
|
dl = q.split('\t')
|
|
|
|
if dl[0] == dl[1]:
|
|
|
|
self.fail ('Two $randomints in the same string were the same')
|
2003-11-02 17:45:38 +01:00
|
|
|
self.assert_(plugins.standardSubstitute(self.irc, msg, '$today'))
|
|
|
|
self.assert_(plugins.standardSubstitute(self.irc, msg, '$now'))
|
2003-12-04 01:07:16 +01:00
|
|
|
n = plugins.standardSubstitute(self.irc, msg, '$randnick')
|
|
|
|
self.failUnless(n in self.irc.state.channels['#foo'].users)
|
2003-11-02 19:23:04 +01:00
|
|
|
n = plugins.standardSubstitute(self.irc, msg, '$randomnick')
|
|
|
|
self.failUnless(n in self.irc.state.channels['#foo'].users)
|
2003-11-05 05:57:13 +01:00
|
|
|
n = plugins.standardSubstitute(self.irc, msg, '$randomnick '*100)
|
|
|
|
L = n.split()
|
|
|
|
self.failIf(all(L[0].__eq__, L), 'all $randomnicks were the same')
|
|
|
|
c = plugins.standardSubstitute(self.irc, msg, '$channel')
|
|
|
|
self.assertEqual(c, msg.args[0])
|
2004-07-21 21:36:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|