2005-02-01 13:09:12 +01:00
|
|
|
###
|
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2009-11-29 03:21:00 +01:00
|
|
|
# Copyright (c) 2008-2009, James Vega
|
2005-02-01 13:09:12 +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 supybot.test import *
|
|
|
|
|
|
|
|
class GoogleTestCase(ChannelPluginTestCase):
|
|
|
|
plugins = ('Google',)
|
|
|
|
if network:
|
2006-01-11 14:48:46 +01:00
|
|
|
def testCalcHandlesMultiplicationSymbol(self):
|
|
|
|
self.assertNotRegexp('google calc seconds in a century', r'215')
|
|
|
|
|
2005-02-01 13:09:12 +01:00
|
|
|
def testCalc(self):
|
|
|
|
self.assertNotRegexp('google calc e^(i*pi)+1', r'didn\'t')
|
2010-06-03 00:36:27 +02:00
|
|
|
self.assertNotRegexp('google calc 1 usd in gbp', r'didn\'t')
|
2005-02-01 13:09:12 +01:00
|
|
|
|
|
|
|
def testHtmlHandled(self):
|
|
|
|
self.assertNotRegexp('google calc '
|
|
|
|
'the speed of light '
|
|
|
|
'in microns / fortnight', '<sup>')
|
|
|
|
self.assertNotRegexp('google calc '
|
|
|
|
'the speed of light '
|
|
|
|
'in microns / fortnight', '×')
|
|
|
|
|
2008-08-15 01:20:06 +02:00
|
|
|
def testSearch(self):
|
|
|
|
self.assertNotError('google foo')
|
2008-10-17 23:27:58 +02:00
|
|
|
self.assertRegexp('google dupa', r'dupa')
|
|
|
|
# Unicode check
|
|
|
|
self.assertNotError('google ae')
|
2008-08-15 01:20:06 +02:00
|
|
|
|
|
|
|
def testFight(self):
|
|
|
|
self.assertRegexp('fight supybot moobot', r'.*supybot.*: \d+')
|
2009-11-29 03:21:00 +01:00
|
|
|
self.assertNotError('fight ... !')
|
2008-08-15 01:20:06 +02:00
|
|
|
|
|
|
|
def testTranslate(self):
|
|
|
|
self.assertRegexp('translate en es hello world', 'mundo')
|
2010-04-04 05:31:13 +02:00
|
|
|
self.assertRegexp('translate auto en ciao', 'Italian.*hello')
|
2010-04-11 23:37:09 +02:00
|
|
|
self.assertError('translate en to auto stuff')
|
2008-08-15 01:20:06 +02:00
|
|
|
|
2005-02-01 13:09:12 +01:00
|
|
|
def testCalcDoesNotHaveExtraSpaces(self):
|
|
|
|
self.assertNotRegexp('google calc 1000^2', r'\s+,\s+')
|
|
|
|
|
2006-02-11 16:52:51 +01:00
|
|
|
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:
|