############################################################################## # # Copyright (c) 2003 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """General test support. $Id: support.py 25177 2004-06-02 13:17:31Z jim $ """ class VerifyResults(object): """Mix-in for test classes with helpers for checking string data.""" def verifyResult(self, result, check_list, inorder=False): start = 0 for check in check_list: pos = result.find(check, start) self.assert_(pos >= 0, "%r not found in %r" % (check, result[start:])) if inorder: start = pos + len(check) def verifyResultMissing(self, result, check_list): for check in check_list: self.assert_(result.find(check) < 0, "%r unexpectedly found in %r" % (check, result))