mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-04 18:29:21 +01:00
6cae1b5ec4
more deterministic
149 lines
6.7 KiB
Python
149 lines
6.7 KiB
Python
#!/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 *
|
|
|
|
try:
|
|
import sqlite
|
|
except ImportError:
|
|
sqlite = None
|
|
|
|
if sqlite is not None:
|
|
class TestFunDB(PluginTestCase, PluginDocumentation):
|
|
plugins = ('FunDB',)
|
|
|
|
def testAdd(self):
|
|
self.assertError('add l4rt foo')
|
|
self.assertError('add lart foo')
|
|
|
|
def testRemove(self):
|
|
self.assertError('remove l4rt foo')
|
|
self.assertError('remove lart foo')
|
|
|
|
def testLart(self):
|
|
self.assertNotError('add lart jabs $who')
|
|
self.assertRegexp('lart', '^lart \[<id>\]')
|
|
self.assertResponse('lart jemfinch for being dumb',
|
|
'\x01ACTION jabs jemfinch for being dumb (#1)\x01')
|
|
self.assertResponse('lart jemfinch',
|
|
'\x01ACTION jabs jemfinch (#1)\x01')
|
|
self.assertRegexp('num lart', 'currently 1 lart')
|
|
self.assertNotError('add lart shoots $who')
|
|
self.assertRegexp('lart 1', '^lart \[<id>\]')
|
|
self.assertResponse('lart 1 jemfinch',
|
|
'\x01ACTION jabs jemfinch (#1)\x01')
|
|
self.assertResponse('lart 2 jemfinch for being dumb',
|
|
'\x01ACTION shoots jemfinch for being dumb (#2)\x01')
|
|
self.assertNotError('remove lart 1')
|
|
self.assertRegexp('num lart', 'currently 1 lart')
|
|
self.assertResponse('lart jemfinch',
|
|
'\x01ACTION shoots jemfinch (#2)\x01')
|
|
self.assertNotError('remove lart 2')
|
|
self.assertRegexp('num lart', 'currently 0')
|
|
self.assertError('lart jemfinch')
|
|
|
|
def testExcuse(self):
|
|
self.assertNotError('add excuse Power failure')
|
|
self.assertResponse('excuse', 'Power failure (#1)')
|
|
self.assertError('excuse a few random words')
|
|
self.assertRegexp('num excuse', 'currently 1 excuse')
|
|
self.assertNotError('add excuse /pub/lunch')
|
|
self.assertResponse('excuse 1', 'Power failure (#1)')
|
|
self.assertNotError('remove excuse 1')
|
|
self.assertRegexp('num excuse', 'currently 1 excuse')
|
|
self.assertResponse('excuse', '/pub/lunch (#2)')
|
|
self.assertNotError('remove excuse 2')
|
|
self.assertRegexp('num excuse', 'currently 0')
|
|
self.assertError('excuse')
|
|
|
|
def testInsult(self):
|
|
self.assertNotError('add insult Fatty McFatty')
|
|
self.assertResponse('insult jemfinch', 'jemfinch: Fatty McFatty '\
|
|
'(#1)')
|
|
self.assertRegexp('num insult', 'currently 1')
|
|
self.assertNotError('remove insult 1')
|
|
self.assertRegexp('num insult', 'currently 0')
|
|
self.assertError('insult jemfinch')
|
|
|
|
def testPraise(self):
|
|
self.assertNotError('add praise pets $who')
|
|
self.assertRegexp('praise', '^praise \[<id>\]')
|
|
self.assertResponse('praise jemfinch for being him',
|
|
'\x01ACTION pets jemfinch for being him (#1)\x01')
|
|
self.assertResponse('praise jemfinch',
|
|
'\x01ACTION pets jemfinch (#1)\x01')
|
|
self.assertRegexp('num praise', 'currently 1')
|
|
self.assertNotError('add praise gives $who a cookie')
|
|
self.assertRegexp('praise 1', '^praise \[<id>\]')
|
|
self.assertResponse('praise 1 jemfinch',
|
|
'\x01ACTION pets jemfinch (#1)\x01')
|
|
self.assertResponse('praise 2 jemfinch for being him',
|
|
'\x01ACTION gives jemfinch a cookie for being him (#2)\x01')
|
|
self.assertNotError('remove praise 1')
|
|
self.assertRegexp('num praise', 'currently 1')
|
|
self.assertResponse('praise jemfinch',
|
|
'\x01ACTION gives jemfinch a cookie (#2)\x01')
|
|
self.assertNotError('remove praise 2')
|
|
self.assertRegexp('num praise', 'currently 0')
|
|
self.assertError('praise jemfinch')
|
|
|
|
def testInfo(self):
|
|
self.assertNotError('add praise $who')
|
|
self.assertRegexp('info praise 1', 'Created by')
|
|
self.assertNotError('remove praise 1')
|
|
self.assertError('info fake 1')
|
|
|
|
def testGet(self):
|
|
self.assertError('get fake 1')
|
|
self.assertError('get lart foo')
|
|
self.assertNotError('add praise pets $who')
|
|
self.assertResponse('get praise 1', 'pets $who')
|
|
self.assertNotError('remove praise 1')
|
|
self.assertError('get praise 1')
|
|
|
|
def testNum(self):
|
|
self.assertError('num fake')
|
|
self.assertError('num 1')
|
|
self.assertRegexp('num praise', 'currently 0')
|
|
self.assertRegexp('num lart', 'currently 0')
|
|
self.assertRegexp('num excuse', 'currently 0')
|
|
self.assertRegexp('num insult', 'currently 0')
|
|
|
|
def testChange(self):
|
|
self.assertNotError('add praise teaches $who perl')
|
|
self.assertNotError('change praise 1 s/perl/python/')
|
|
self.assertResponse('praise jemfinch', '\x01ACTION teaches'\
|
|
' jemfinch python (#1)\x01')
|
|
self.assertNotError('remove praise 1')
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|