2003-10-01 13:12:06 +02:00
|
|
|
#!/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.
|
|
|
|
###
|
|
|
|
|
2003-12-02 13:27:45 +01:00
|
|
|
from testsupport import *
|
2003-10-01 13:12:06 +02:00
|
|
|
|
2003-10-05 22:05:53 +02:00
|
|
|
import os
|
|
|
|
|
2003-10-01 13:12:06 +02:00
|
|
|
class PythonTestCase(PluginTestCase, PluginDocumentation):
|
|
|
|
plugins = ('Python',)
|
|
|
|
def testPydoc(self):
|
|
|
|
self.assertError('pydoc foobar')
|
|
|
|
self.assertError('pydoc assert')
|
|
|
|
self.assertNotError('pydoc str')
|
2003-11-04 07:26:24 +01:00
|
|
|
self.assertNotError('pydoc copy')
|
2003-10-20 08:43:59 +02:00
|
|
|
self.assertNotError('pydoc list.reverse')
|
2003-10-05 22:05:53 +02:00
|
|
|
if os.name == 'posix':
|
|
|
|
self.assertNotRegexp('pydoc crypt.crypt', 'NameError')
|
|
|
|
self.assertNotError('pydoc crypt.crypt')
|
2003-10-05 23:37:29 +02:00
|
|
|
# .so modules don't have an __file__ in Windows.
|
|
|
|
self.assertNotError('pydoc math.sin')
|
2003-10-01 13:12:06 +02:00
|
|
|
self.assertNotError('pydoc string.translate')
|
|
|
|
self.assertNotError('pydoc fnmatch.fnmatch')
|
|
|
|
self.assertNotError('pydoc socket.socket')
|
2003-10-21 00:37:33 +02:00
|
|
|
self.assertNotError('pydoc logging.Logger')
|
2003-10-21 05:22:29 +02:00
|
|
|
self.assertNotRegexp('pydoc str.replace', r"^'")
|
2003-10-22 05:55:03 +02:00
|
|
|
self.assertNotError('pydoc os.path.expanduser')
|
2003-11-13 18:56:51 +01:00
|
|
|
self.assertNotRegexp('pydoc math.hypot', r'\)\.R')
|
2003-11-17 07:00:56 +01:00
|
|
|
self.assertNotRegexp('pydoc threading.Thread', 'NoneType')
|
2003-10-01 13:12:06 +02:00
|
|
|
|
|
|
|
def testZen(self):
|
|
|
|
self.assertNotError('zen')
|
2003-11-02 19:55:08 +01:00
|
|
|
|
2004-01-01 20:51:48 +01:00
|
|
|
if network:
|
|
|
|
def testAspnRecipes(self):
|
|
|
|
self.assertNotError('python config aspn-snarfer on')
|
|
|
|
self.assertRegexp('http://aspn.activestate.com/ASPN/Cookbook/Python/'
|
|
|
|
'Recipe/230113',
|
|
|
|
'Implementation of sets using sorted lists')
|
2003-11-17 07:29:13 +01:00
|
|
|
|
2004-01-01 20:51:48 +01:00
|
|
|
def testConfig(self):
|
|
|
|
self.assertNotError('python config aspn-snarfer off')
|
|
|
|
self.assertNoResponse('http://aspn.activestate.com/ASPN/Cookbook/'
|
|
|
|
'Python/Recipe/230113')
|
|
|
|
self.assertNotError('python config aspn-snarfer on')
|
|
|
|
self.assertNotError('http://aspn.activestate.com/ASPN/Cookbook/'
|
|
|
|
'Python/Recipe/230113')
|
2003-10-01 13:12:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
|
|
|
|