2004-01-27 21:06:28 +01:00
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2004-01-27 21:06:28 +01: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.
|
|
|
|
###
|
|
|
|
|
|
|
|
from testsupport import *
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.ircdb as ircdb
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
class WordStatsTestCase(ChannelPluginTestCase):
|
|
|
|
plugins = ('WordStats', 'User', 'Utilities')
|
|
|
|
def setUp(self):
|
|
|
|
ChannelPluginTestCase.setUp(self)
|
|
|
|
self.prefix = 'foo!bar@baz'
|
|
|
|
self.nick = 'foo'
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.irc.nick,
|
|
|
|
'register foo bar',
|
|
|
|
prefix=self.prefix))
|
|
|
|
_ = self.irc.takeMsg()
|
|
|
|
ircdb.users.getUser(self.nick).addCapability(self.channel + '.op')
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
def testWordStatsNoArgs(self):
|
|
|
|
self.assertResponse('wordstats', 'I am not currently keeping any '
|
|
|
|
'word stats.')
|
|
|
|
self.assertNotError('add lol')
|
|
|
|
self.assertResponse('wordstats',
|
|
|
|
'I am currently keeping stats for lol.')
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
def testWordStatsUser(self):
|
|
|
|
self.assertNotError('add lol')
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo', r'[\'"]lol[\'"]: 2')
|
2004-04-14 12:13:53 +02:00
|
|
|
self.assertNotError('add moo')
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'moo',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo', r'lol[\'"]: 2 and [\'"]moo[\'"]: 2')
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
def testWordStatsWord(self):
|
|
|
|
userPrefix1 = 'moo!bar@baz'; userNick1 = 'moo'
|
|
|
|
userPrefix2 = 'boo!bar@baz'; userNick2 = 'boo'
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.irc.nick,
|
|
|
|
'register %s bar' % userNick1,
|
|
|
|
prefix=userPrefix1))
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.irc.nick,
|
|
|
|
'register %s bar' % userNick2,
|
|
|
|
prefix=userPrefix2))
|
|
|
|
_ = self.irc.takeMsg()
|
|
|
|
_ = self.irc.takeMsg()
|
|
|
|
self.assertNotError('add lol')
|
|
|
|
self.assertRegexp('wordstats lol', 'foo: 1')
|
|
|
|
for i in range(5):
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol',
|
2004-01-27 21:06:28 +01:00
|
|
|
prefix=userPrefix1))
|
2004-04-14 12:13:53 +02:00
|
|
|
self.assertRegexp('wordstats lol',
|
2004-12-17 06:18:21 +01:00
|
|
|
r'2.*%s: 5.*foo: 2' % userNick1)
|
2004-04-14 12:13:53 +02:00
|
|
|
for i in range(10):
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol',
|
2004-01-27 21:06:28 +01:00
|
|
|
prefix=userPrefix2))
|
2004-04-14 12:13:53 +02:00
|
|
|
self.assertRegexp('wordstats lol',
|
2004-12-17 06:18:21 +01:00
|
|
|
r'3.*%s: 10.*%s: 5.*foo: 3' %
|
2004-04-14 12:13:53 +02:00
|
|
|
(userNick2, userNick1))
|
|
|
|
# Check for the extra-swanky stuff too
|
|
|
|
# (note: to do so we must make sure they don't appear in the list,
|
|
|
|
# so we'll tweak the config)
|
|
|
|
try:
|
|
|
|
orig = conf.supybot.plugins.WordStats.rankingDisplay()
|
|
|
|
conf.supybot.plugins.WordStats.rankingDisplay.setValue(2)
|
2004-01-27 21:06:28 +01:00
|
|
|
self.assertRegexp('wordstats lol',
|
2004-12-17 06:18:21 +01:00
|
|
|
r'total.*19 [\'"]lol[\'"]s.*%s: 10.*%s: 5.*'
|
|
|
|
r'ranked 3 out of 3 [\'"]lol[\'"]ers' % \
|
2004-01-27 21:06:28 +01:00
|
|
|
(userNick2, userNick1))
|
2004-04-14 12:13:53 +02:00
|
|
|
finally:
|
|
|
|
conf.supybot.plugins.WordStats.rankingDisplay.setValue(orig)
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
def testWordStatsUserWord(self):
|
|
|
|
self.assertNotError('add lol')
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo lol',
|
|
|
|
r'foo has said [\'"]lol[\'"] 1 time.')
|
2004-04-14 12:13:53 +02:00
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo lol',
|
|
|
|
r'foo has said [\'"]lol[\'"] 3 times.')
|
2004-04-14 12:13:53 +02:00
|
|
|
# Now check for case-insensitivity
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'LOL',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo lol',
|
|
|
|
r'foo has said [\'"]lol[\'"] 5 times.')
|
2004-04-14 12:13:53 +02:00
|
|
|
# Check and make sure actions get nabbed too
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo lol',
|
|
|
|
r'foo has said [\'"]lol[\'"] 7 times.')
|
2004-04-14 12:13:53 +02:00
|
|
|
# Check and make sure it handles two words in one message
|
|
|
|
self.assertNotError('add heh')
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol heh',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo lol',
|
|
|
|
r'foo has said [\'"]lol[\'"] 9 times.')
|
|
|
|
self.assertRegexp('wordstats foo heh',
|
|
|
|
r'foo has said [\'"]heh[\'"] 2 times.')
|
2004-04-14 12:13:53 +02:00
|
|
|
# It should ignore punctuation around words
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel,'lol, I said "heh"',
|
|
|
|
prefix=self.prefix))
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats foo lol',
|
|
|
|
r'foo has said [\'"]lol[\'"] 11 times.')
|
|
|
|
self.assertRegexp('wordstats foo heh',
|
|
|
|
r'foo has said [\'"]heh[\'"] 4 times.')
|
2004-03-14 07:43:03 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
def testAddword(self):
|
|
|
|
self.assertError('add lol!')
|
|
|
|
self.assertNotError('add lolz0r')
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats lolz0r', r'1 [\'"]lolz0r[\'"] seen')
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-04-14 12:13:53 +02:00
|
|
|
def testRemoveword(self):
|
2004-12-10 04:38:49 +01:00
|
|
|
# Using a word that's also the name of a user isn't smart since that
|
|
|
|
# exercises different behavior
|
|
|
|
#self.assertError('wordstats remove foo')
|
|
|
|
self.assertError('wordstats remove blarg')
|
|
|
|
self.assertNotError('wordstats add blarg')
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats blarg', r'1 [\'"]blarg[\'"] seen')
|
|
|
|
self.assertRegexp('wordstats blarg', r'2 [\'"]blarg[\'"]s seen')
|
2004-12-10 04:38:49 +01:00
|
|
|
self.assertNotError('wordstats remove blarg')
|
|
|
|
self.assertRegexp('wordstats blarg', r'doesn\'t look like a word I')
|
2004-04-14 12:13:53 +02:00
|
|
|
# Verify that we aren't keeping results from before
|
2004-12-10 04:38:49 +01:00
|
|
|
self.assertNotError('add blarg')
|
2004-12-17 06:18:21 +01:00
|
|
|
self.assertRegexp('wordstats blarg', r'1 [\'"]blarg[\'"] seen')
|
2004-04-14 12:13:53 +02:00
|
|
|
|
|
|
|
def testWordStatsRankingDisplay(self):
|
|
|
|
self.assertNotError('add lol')
|
|
|
|
try:
|
|
|
|
orig = conf.supybot.plugins.WordStats.rankingDisplay()
|
|
|
|
conf.supybot.plugins.WordStats.rankingDisplay.setValue(5)
|
|
|
|
# Create 10 users and have them each send a different number of
|
|
|
|
# 'lol's to the channel
|
|
|
|
users = []
|
|
|
|
for i in range(10):
|
|
|
|
users.append(('foo%s!bar@baz' % i, 'foo%s' % i))
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.irc.nick,
|
|
|
|
'register %s bar' % \
|
|
|
|
users[i][1],
|
|
|
|
prefix=users[i][0]))
|
|
|
|
_ = self.irc.takeMsg()
|
|
|
|
for i in range(10):
|
|
|
|
for j in range(i):
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lol',
|
2004-01-27 21:06:28 +01:00
|
|
|
prefix=users[i][0]))
|
2004-04-14 12:13:53 +02:00
|
|
|
# Make sure it shows the top 5
|
|
|
|
self.assertRegexp('wordstats lol',
|
2004-12-17 06:18:21 +01:00
|
|
|
r'Top 5 [\'"]lol[\'"]ers.*foo9: 9.*foo8: 8.*'
|
|
|
|
r'foo7: 7.*foo6: 6.*foo5: 5')
|
2004-04-14 12:13:53 +02:00
|
|
|
finally:
|
|
|
|
conf.supybot.plugins.WordStats.rankingDisplay.setValue(orig)
|
|
|
|
|
|
|
|
def testWordStatsIgnoreQueries(self):
|
|
|
|
try:
|
|
|
|
original = conf.supybot.plugins.WordStats.ignoreQueries()
|
|
|
|
conf.supybot.plugins.WordStats.ignoreQueries.setValue(True)
|
|
|
|
self.assertNotError('add lol')
|
|
|
|
self.assertNotRegexp('wordstats lol', 'foo')
|
|
|
|
self.assertNotRegexp('wordstats lol', 'foo')
|
|
|
|
self.assertNotRegexp('wordstats lol', 'foo')
|
|
|
|
self.assertNotError('echo lol')
|
|
|
|
self.assertRegexp('wordstats lol', 'foo: 1')
|
|
|
|
self.assertRegexp('wordstats lol', 'foo: 1')
|
|
|
|
self.assertRegexp('wordstats lol', 'foo: 1')
|
|
|
|
finally:
|
|
|
|
conf.supybot.plugins.WordStats.ignoreQueries.setValue(original)
|
2004-01-27 21:06:28 +01:00
|
|
|
|
2004-12-18 05:06:53 +01:00
|
|
|
def testWordStatsCaseInsensitive(self):
|
|
|
|
self.assertNotError('add lol')
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'lOL',
|
|
|
|
prefix=self.prefix))
|
|
|
|
self.assertRegexp('wordstats foo', r'[\'"]lol[\'"]: 2')
|
|
|
|
self.assertNotError('add MOO')
|
|
|
|
self.irc.feedMsg(ircmsgs.privmsg(self.channel, 'mOo',
|
|
|
|
prefix=self.prefix))
|
|
|
|
self.assertRegexp('wordstats foo',
|
|
|
|
r'(lol|MOO)[\'"]: 2 and [\'"](lol|MOO)[\'"]: 2')
|
|
|
|
|
2004-01-27 21:06:28 +01:00
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|
|
|