2003-08-25 07:12:01 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2003-08-25 07:12:01 +02:00
|
|
|
# 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-08-25 07:12:01 +02:00
|
|
|
|
2004-03-25 13:19:31 +01:00
|
|
|
class UtilitiesTestCase(PluginTestCase):
|
2003-10-01 13:12:31 +02:00
|
|
|
plugins = ('Utilities', 'Status')
|
2003-08-25 07:12:01 +02:00
|
|
|
def testIgnore(self):
|
2004-08-01 16:38:37 +02:00
|
|
|
self.assertNoResponse('utilities ignore foo bar baz', 1)
|
|
|
|
self.assertError('utilities ignore [re m/foo bar]')
|
2004-04-13 03:49:56 +02:00
|
|
|
|
|
|
|
def testSuccess(self):
|
|
|
|
self.assertNotError('success 1')
|
|
|
|
self.assertError('success [re m/foo bar]')
|
2003-08-25 07:12:01 +02:00
|
|
|
|
2004-04-22 05:39:38 +02:00
|
|
|
def testLast(self):
|
|
|
|
self.assertResponse('utilities last foo bar baz', 'baz')
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2003-08-25 07:12:01 +02:00
|
|
|
def testStrlen(self):
|
|
|
|
self.assertResponse('strlen %s' % ('s'*10), '10')
|
2003-08-31 00:54:11 +02:00
|
|
|
self.assertResponse('strlen a b', '3')
|
2003-08-25 07:12:01 +02:00
|
|
|
|
|
|
|
def testEcho(self):
|
2003-11-07 19:51:49 +01:00
|
|
|
self.assertHelp('echo')
|
2003-08-25 07:12:01 +02:00
|
|
|
self.assertResponse('echo foo', 'foo')
|
2003-12-01 13:39:38 +01:00
|
|
|
m = self.getMsg('status cpu')
|
2003-08-25 07:12:01 +02:00
|
|
|
self.assertResponse('echo "%s"' % m.args[1], m.args[1])
|
|
|
|
|
2004-02-26 16:53:45 +01:00
|
|
|
def testEchoStandardSubstitute(self):
|
|
|
|
self.assertNotRegexp('echo $nick', r'\$')
|
|
|
|
|
2003-08-25 07:12:01 +02:00
|
|
|
def testRe(self):
|
2004-01-01 20:49:26 +01:00
|
|
|
self.assertResponse('re "m/system time/" [status cpu]', 'system time')
|
2003-08-25 07:12:01 +02:00
|
|
|
self.assertResponse('re s/user/luser/g user user', 'luser luser')
|
|
|
|
self.assertResponse('re s/user/luser/ user user', 'luser user')
|
2003-10-17 23:15:48 +02:00
|
|
|
self.assertNotRegexp('re m/foo/ bar', 'has no attribute')
|
2003-10-17 23:24:34 +02:00
|
|
|
self.assertResponse('re m/a\S+y/ "the bot angryman is hairy"','angry')
|
2003-08-25 07:12:01 +02:00
|
|
|
|
2003-11-26 13:39:37 +01:00
|
|
|
def testReNotEmptyString(self):
|
|
|
|
self.assertError('re s//foo/g blah')
|
|
|
|
|
2003-12-01 12:06:17 +01:00
|
|
|
def testReWorksWithJustCaret(self):
|
|
|
|
self.assertResponse('re s/^/foo/ bar', 'foobar')
|
|
|
|
|
2003-11-25 10:13:28 +01:00
|
|
|
def testReNoEscapingUnpackListOfWrongSize(self):
|
|
|
|
self.assertNotRegexp('re foo bar baz', 'unpack list of wrong size')
|
|
|
|
|
2003-11-29 19:57:47 +01:00
|
|
|
def testReBug850931(self):
|
|
|
|
self.assertResponse('re s/\b(\w+)\b/\1./g foo bar baz',
|
|
|
|
'foo. bar. baz.')
|
|
|
|
|
2003-12-01 13:35:07 +01:00
|
|
|
def testNotOverlongRe(self):
|
|
|
|
self.assertError('re [strjoin "" s/./ [eval \'xxx\'*400]] blah blah')
|
|
|
|
|
2003-08-25 07:12:01 +02:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|