2005-02-09 08:07:11 +01:00
|
|
|
###
|
|
|
|
# Copyright (c) 2005, 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.
|
|
|
|
###
|
|
|
|
|
2019-11-11 21:00:48 +01:00
|
|
|
import supybot
|
2005-02-09 08:07:11 +01:00
|
|
|
from supybot.test import *
|
|
|
|
|
|
|
|
class PluginTestCase(PluginTestCase):
|
2010-04-21 22:38:25 +02:00
|
|
|
plugins = ('Plugin', 'Utilities', 'Admin', 'Format')
|
2005-02-18 07:31:26 +01:00
|
|
|
def testPlugin(self):
|
2012-09-06 03:50:42 +02:00
|
|
|
self.assertRegexp('plugin ignore', 'available.*Utilities plugin')
|
|
|
|
self.assertResponse('echo [plugin ignore]', 'Utilities')
|
2019-10-19 20:32:30 +02:00
|
|
|
|
2010-04-21 22:38:25 +02:00
|
|
|
def testPlugins(self):
|
|
|
|
self.assertRegexp('plugins join', '(Format.*Admin|Admin.*Format)')
|
|
|
|
self.assertRegexp('plugins plugin', 'Plugin')
|
2015-12-28 20:09:48 +01:00
|
|
|
self.assertNotRegexp('plugins ignore add', 'Utilities')
|
|
|
|
self.assertNotRegexp('plugins ignore', 'Admin')
|
2005-02-18 07:31:26 +01:00
|
|
|
|
|
|
|
def testHelp(self):
|
|
|
|
self.assertRegexp('plugin help plugin', 'manage their plugins')
|
|
|
|
|
|
|
|
def testAuthor(self):
|
|
|
|
self.assertRegexp('plugin author plugin', 'jemfinch')
|
2019-11-11 21:00:48 +01:00
|
|
|
self.assertRegexp('plugin author plugin', 'maintained by %s' %
|
|
|
|
supybot.authors.limnoria_core.name)
|
2005-02-18 07:31:26 +01:00
|
|
|
|
|
|
|
def testContributors(self):
|
|
|
|
# Test ability to list contributors
|
|
|
|
self.assertNotError('contributors Plugin')
|
2019-10-19 20:32:30 +02:00
|
|
|
|
2005-02-18 07:31:26 +01:00
|
|
|
# Test ability to list contributions
|
2019-10-19 20:32:30 +02:00
|
|
|
# As of 2019-10-19 there is no more distinction between commands and non-commands
|
2019-11-11 21:00:48 +01:00
|
|
|
self.assertRegexp('contributors Plugin skorobeus',
|
|
|
|
'original contributors command')
|
|
|
|
self.assertRegexp('contributors Plugin Kevin Murphy',
|
|
|
|
'original contributors command')
|
|
|
|
self.assertRegexp('contributors Plugin James Lu',
|
|
|
|
'refactored contributors command')
|
2019-11-11 20:53:30 +01:00
|
|
|
|
|
|
|
# Test handling of the plugin author, who is usually not listed in __contributors__
|
2019-11-11 21:00:48 +01:00
|
|
|
self.assertRegexp('contributors Plugin jemfinch',
|
|
|
|
'wrote the Plugin plugin')
|
|
|
|
self.assertRegexp('contributors Plugin Jeremy Fincher',
|
|
|
|
'wrote the Plugin plugin')
|
2019-10-19 20:32:30 +02:00
|
|
|
|
|
|
|
# TODO: test handling of a person with multiple contributions to a command
|
|
|
|
|
2005-02-18 07:31:26 +01:00
|
|
|
# Test handling of invalid plugin
|
|
|
|
self.assertRegexp('contributors InvalidPlugin', 'not a valid plugin')
|
2019-10-19 20:32:30 +02:00
|
|
|
|
|
|
|
# Test handling of unknown person. As of 2019-10-19 it doesn't matter whether
|
|
|
|
# they're listed in supybot.authors or not.
|
2005-02-18 07:31:26 +01:00
|
|
|
self.assertRegexp('contributors Plugin noname',
|
2019-10-19 20:32:30 +02:00
|
|
|
'not listed as a contributor')
|
2005-02-18 07:31:26 +01:00
|
|
|
self.assertRegexp('contributors Plugin bwp',
|
2019-10-19 20:32:30 +02:00
|
|
|
'not listed as a contributor')
|
2005-02-18 07:31:26 +01:00
|
|
|
|
|
|
|
def testContributorsIsCaseInsensitive(self):
|
|
|
|
self.assertNotError('contributors Plugin Skorobeus')
|
|
|
|
self.assertNotError('contributors Plugin sKoRoBeUs')
|
2005-02-09 08:07:11 +01:00
|
|
|
|
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|