2003-10-18 15:14:57 +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-10-18 15:14:57 +02:00
|
|
|
|
2003-10-28 06:49:31 +01:00
|
|
|
class TopicTestCase(ChannelPluginTestCase, PluginDocumentation):
|
|
|
|
plugins = ('Topic',)
|
|
|
|
def testTopicRemove(self):
|
|
|
|
self.assertError('topic remove 1')
|
|
|
|
_ = self.getMsg('topic add foo')
|
|
|
|
_ = self.getMsg('topic add bar')
|
|
|
|
_ = self.getMsg('topic add baz')
|
|
|
|
self.assertError('topic remove 0')
|
|
|
|
self.assertNotError('topic remove 3')
|
|
|
|
self.assertNotError('topic remove 2')
|
|
|
|
self.assertNotError('topic remove 1')
|
|
|
|
self.assertError('topic remove 1')
|
|
|
|
|
|
|
|
def testTopicGet(self):
|
|
|
|
self.assertError('topic get 1')
|
|
|
|
_ = self.getMsg('topic add foo')
|
|
|
|
_ = self.getMsg('topic add bar')
|
|
|
|
_ = self.getMsg('topic add baz')
|
|
|
|
self.assertRegexp('topic get 1', '^foo')
|
2003-11-21 13:35:24 +01:00
|
|
|
self.assertNotRegexp('topic get 1', self.nick)
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertRegexp('topic get 2', '^bar')
|
2003-11-21 13:35:24 +01:00
|
|
|
self.assertNotRegexp('topic get 2', self.nick)
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertRegexp('topic get 3', '^baz')
|
2003-11-21 13:35:24 +01:00
|
|
|
self.assertNotRegexp('topic get 3', self.nick)
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertError('topic get 0')
|
|
|
|
|
|
|
|
def testTopicAdd(self):
|
|
|
|
m = self.getMsg('topic add foo')
|
2003-10-18 15:14:57 +02:00
|
|
|
self.assertEqual(m.command, 'TOPIC')
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertEqual(m.args[0], self.channel)
|
2003-10-18 15:14:57 +02:00
|
|
|
self.assertEqual(m.args[1], 'foo (test)')
|
2003-10-28 06:49:31 +01:00
|
|
|
m = self.getMsg('topic add bar')
|
2003-10-18 15:14:57 +02:00
|
|
|
self.assertEqual(m.command, 'TOPIC')
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertEqual(m.args[0], self.channel)
|
2003-10-18 15:14:57 +02:00
|
|
|
|
2003-10-28 06:49:31 +01:00
|
|
|
def testTopicChange(self):
|
|
|
|
_ = self.getMsg('topic add foo')
|
|
|
|
_ = self.getMsg('topic add bar')
|
|
|
|
_ = self.getMsg('topic add baz')
|
|
|
|
self.assertRegexp('topic change -1 s/baz/biff/',
|
2003-10-18 15:14:57 +02:00
|
|
|
r'foo.*bar.*biff')
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertRegexp('topic change 2 s/bar/baz/',
|
2003-10-18 15:14:57 +02:00
|
|
|
r'foo.*baz.*biff')
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertRegexp('topic change 1 s/foo/bar/',
|
2003-10-18 15:14:57 +02:00
|
|
|
r'bar.*baz.*biff')
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertRegexp('topic change -2 s/baz/bazz/',
|
2003-10-18 15:14:57 +02:00
|
|
|
r'bar.*bazz.*biff')
|
2003-10-28 06:49:31 +01:00
|
|
|
self.assertError('topic change 0 s/baz/biff/')
|
2003-10-18 15:14:57 +02:00
|
|
|
|
2003-12-02 17:26:08 +01:00
|
|
|
def testConfig(self):
|
2004-01-26 20:17:59 +01:00
|
|
|
try:
|
|
|
|
conf.supybot.plugins.Topic.separator.setValue(' <==> ')
|
|
|
|
_ = self.getMsg('topic add foo')
|
|
|
|
m = self.getMsg('topic add bar')
|
|
|
|
self.failUnless('<==>' in m.args[1])
|
|
|
|
finally:
|
|
|
|
default = conf.supybot.plugins.Topic.separator.default
|
|
|
|
conf.supybot.plugins.Topic.separator.setValue(default)
|
2003-12-02 17:26:08 +01:00
|
|
|
|
2003-12-09 15:05:32 +01:00
|
|
|
def testReorder(self):
|
|
|
|
_ = self.getMsg('topic add foo')
|
|
|
|
_ = self.getMsg('topic add bar')
|
|
|
|
_ = self.getMsg('topic add baz')
|
|
|
|
self.assertRegexp('topic reorder 2 1 3', r'bar.*foo.*baz')
|
|
|
|
self.assertRegexp('topic reorder 3 -2 1', r'baz.*foo.*bar')
|
|
|
|
self.assertError('topic reorder 0 1 2')
|
2003-12-09 16:26:05 +01:00
|
|
|
self.assertError('topic reorder 1 -2 2')
|
2003-12-09 15:38:37 +01:00
|
|
|
self.assertError('topic reorder 1 2')
|
|
|
|
self.assertError('topic reorder 2 3 4')
|
|
|
|
self.assertError('topic reorder 1 2 2')
|
|
|
|
self.assertError('topic reorder 1 1 2 3')
|
2003-12-09 16:57:19 +01:00
|
|
|
_ = self.getMsg('topic remove 1')
|
|
|
|
_ = self.getMsg('topic remove 1')
|
|
|
|
self.assertError('topic reorder 1')
|
|
|
|
_ = self.getMsg('topic remove 1')
|
|
|
|
self.assertError('topic reorder 0')
|
2003-10-18 15:14:57 +02:00
|
|
|
|
2003-12-12 16:41:33 +01:00
|
|
|
def testList(self):
|
|
|
|
_ = self.getMsg('topic add foo')
|
|
|
|
self.assertResponse('topic list', '1: foo')
|
|
|
|
_ = self.getMsg('topic add bar')
|
|
|
|
self.assertResponse('topic list', '1: foo and 2: bar')
|
|
|
|
_ = self.getMsg('topic add baz')
|
|
|
|
self.assertResponse('topic list', '1: foo, 2: bar, and 3: baz')
|
|
|
|
|
|
|
|
|
2003-10-18 15:14:57 +02:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|
|
|