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.
|
|
|
|
###
|
|
|
|
|
|
|
|
from test import *
|
|
|
|
|
2003-11-02 17:45:38 +01:00
|
|
|
import sets
|
|
|
|
|
|
|
|
import irclib
|
2003-10-27 21:21:02 +01:00
|
|
|
import plugins
|
|
|
|
|
|
|
|
class ToggleDictionaryTestCase(unittest.TestCase):
|
|
|
|
def test(self):
|
|
|
|
t = plugins.ToggleDictionary({'foo': True})
|
2003-10-29 01:05:34 +01:00
|
|
|
## self.assertEqual(t['foo'], True)
|
|
|
|
## self.assertEqual(t['#baz']['foo'], True)
|
2003-10-27 21:21:02 +01:00
|
|
|
self.assertEqual(t.get('foo'), True)
|
|
|
|
self.assertEqual(t.get('foo', '#baz'), True)
|
2003-11-04 17:14:11 +01:00
|
|
|
t.toggle('foo', value=False)
|
|
|
|
self.assertEqual(t.get('foo', '#baz'), True)
|
2003-10-27 21:21:02 +01:00
|
|
|
t.toggle('foo', value=False, channel='#baz')
|
|
|
|
self.assertEqual(t.get('foo', '#baz'), False)
|
|
|
|
t.toggle('foo', channel='#baz')
|
|
|
|
self.assertEqual(t.get('foo', '#baz'), True)
|
|
|
|
t.toggle('foo', channel='#baz')
|
|
|
|
self.assertEqual(t.get('foo', '#baz'), False)
|
2003-10-29 00:14:49 +01:00
|
|
|
#self.assertRaises(TypeError, t.toggle, 'foo', value='lak')
|
2003-10-27 21:21:02 +01:00
|
|
|
|
2003-10-30 03:38:11 +01:00
|
|
|
def testCanonicalization(self):
|
|
|
|
t = plugins.ToggleDictionary({'foo': True})
|
|
|
|
self.assertEqual(t.get('foo'), True)
|
|
|
|
self.assertEqual(t.get('fOO'), True)
|
|
|
|
self.assertEqual(t.get('Foo'), True)
|
|
|
|
self.assertEqual(t.get('-fo-o'), True)
|
|
|
|
t = plugins.ToggleDictionary({'FOO': True})
|
|
|
|
self.assertEqual(t.get('foo'), True)
|
|
|
|
self.assertEqual(t.get('fOO'), True)
|
|
|
|
self.assertEqual(t.get('Foo'), True)
|
|
|
|
self.assertEqual(t.get('-fo-o'), True)
|
|
|
|
t = plugins.ToggleDictionary({'f-o-o': True})
|
|
|
|
self.assertEqual(t.get('foo'), True)
|
|
|
|
self.assertEqual(t.get('fOO'), True)
|
|
|
|
self.assertEqual(t.get('Foo'), True)
|
|
|
|
self.assertEqual(t.get('-fo-o'), True)
|
|
|
|
|
2003-10-27 21:21:02 +01:00
|
|
|
def test__init__(self):
|
|
|
|
self.assertRaises(TypeError, plugins.ToggleDictionary.__init__)
|
2003-10-28 01:52:27 +01:00
|
|
|
self.assertRaises(ValueError, plugins.ToggleDictionary, {})
|
2003-10-27 21:21:02 +01:00
|
|
|
|
|
|
|
def testToggle(self):
|
|
|
|
t = plugins.ToggleDictionary({'foo': True})
|
|
|
|
self.assertRaises(KeyError, t.toggle, 'bar')
|
2003-10-29 00:14:49 +01:00
|
|
|
self.assertRaises(KeyError, t.toggle, 'bar', value=False)
|
2003-10-27 21:21:02 +01:00
|
|
|
|
2003-10-27 21:24:23 +01:00
|
|
|
def testToString(self):
|
2003-10-28 01:52:27 +01:00
|
|
|
t = plugins.ToggleDictionary({'foo': True, 'bar': False})
|
|
|
|
self.assertEqual(t.toString(), '(bar: Off; foo: On)')
|
|
|
|
t.toggle('foo', channel='#foo')
|
|
|
|
self.assertEqual(t.toString(), '(bar: Off; foo: On)')
|
|
|
|
self.assertEqual(t.toString(channel='#foo'),
|
|
|
|
'(bar: Off; foo: Off)')
|
2003-10-27 21:21:02 +01:00
|
|
|
t.toggle('bar', value=True)
|
2003-10-28 01:52:27 +01:00
|
|
|
self.assertEqual(t.toString(), '(bar: On; foo: On)')
|
2003-10-27 21:24:23 +01:00
|
|
|
self.assertEqual(t.toString(channel='#foo'),
|
2003-10-28 01:52:27 +01:00
|
|
|
'(bar: Off; foo: Off)')
|
2003-11-02 17:45:38 +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
|
|
|
|
2003-11-02 17:45:38 +01:00
|
|
|
class FunctionsTestCase(unittest.TestCase):
|
|
|
|
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')
|
|
|
|
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)
|
|
|
|
self.assert_(plugins.standardSubstitute(self.irc, msg, '$randomdate'))
|
2003-11-04 04:52:50 +01:00
|
|
|
q = plugins.standardSubstitute(self.irc, msg, '$randomdate\t$randomdate')
|
|
|
|
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-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])
|
|
|
|
|
|
|
|
|
2003-11-02 17:45:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-10-27 21:24:23 +01:00
|
|
|
|