Jean-Paul Calderone | 8671c85 | 2011-03-02 19:26:20 -0500 | [diff] [blame] | 1 | # Copyright (C) Jean-Paul Calderone |
| 2 | # Copyright (C) Twisted Matrix Laboratories. |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 3 | # See LICENSE for details. |
| 4 | |
| 5 | """ |
| 6 | Helpers for the OpenSSL test suite, largely copied from |
| 7 | U{Twisted<http://twistedmatrix.com/>}. |
| 8 | """ |
| 9 | |
| 10 | import shutil |
Rick Dean | 47262da | 2009-07-08 16:17:17 -0500 | [diff] [blame] | 11 | import sys |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 12 | import traceback |
| 13 | |
| 14 | from tempfile import mktemp, mkdtemp |
| 15 | from unittest import TestCase |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 16 | |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 17 | import pytest |
| 18 | |
Jean-Paul Calderone | 6462b07 | 2015-03-29 07:03:11 -0400 | [diff] [blame] | 19 | from six import PY3 |
| 20 | |
Jean-Paul Calderone | c86bb7d | 2013-12-29 10:25:59 -0500 | [diff] [blame] | 21 | from OpenSSL._util import exception_from_error_queue |
| 22 | from OpenSSL.crypto import Error |
Jean-Paul Calderone | 88f38b2 | 2009-07-16 16:25:19 -0400 | [diff] [blame] | 23 | |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 24 | |
Hynek Schlawack | f0e6685 | 2015-10-16 20:18:38 +0200 | [diff] [blame^] | 25 | from . import memdbg |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 26 | |
Jean-Paul Calderone | 4f0467a | 2014-01-11 11:58:41 -0500 | [diff] [blame] | 27 | from OpenSSL._util import ffi, lib, byte_string as b |
Jean-Paul Calderone | 9e4eeae | 2010-08-22 21:32:52 -0400 | [diff] [blame] | 28 | |
Jean-Paul Calderone | 210c0f3 | 2015-04-12 09:20:31 -0400 | [diff] [blame] | 29 | |
| 30 | # This is the UTF-8 encoding of the SNOWMAN unicode code point. |
| 31 | NON_ASCII = b("\xe2\x98\x83").decode("utf-8") |
| 32 | |
| 33 | |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 34 | class TestCase(TestCase): |
| 35 | """ |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 36 | :py:class:`TestCase` adds useful testing functionality beyond what is |
| 37 | available from the standard library :py:class:`unittest.TestCase`. |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 38 | """ |
Alex Gaynor | c88f628 | 2015-09-05 15:32:39 -0400 | [diff] [blame] | 39 | |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 40 | def run(self, result): |
Jean-Paul Calderone | 68703ed | 2013-03-04 12:23:44 -0800 | [diff] [blame] | 41 | run = super(TestCase, self).run |
| 42 | if memdbg.heap is None: |
| 43 | return run(result) |
| 44 | |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 45 | # Run the test as usual |
| 46 | before = set(memdbg.heap) |
Jean-Paul Calderone | 68703ed | 2013-03-04 12:23:44 -0800 | [diff] [blame] | 47 | run(result) |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 48 | |
| 49 | # Clean up some long-lived allocations so they won't be reported as |
| 50 | # memory leaks. |
Jean-Paul Calderone | 9227c47 | 2013-12-31 13:47:36 -0500 | [diff] [blame] | 51 | lib.CRYPTO_cleanup_all_ex_data() |
| 52 | lib.ERR_remove_thread_state(ffi.NULL) |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 53 | after = set(memdbg.heap) |
| 54 | |
| 55 | if not after - before: |
| 56 | # No leaks, fast succeed |
| 57 | return |
| 58 | |
| 59 | if result.wasSuccessful(): |
| 60 | # If it passed, run it again with memory debugging |
| 61 | before = set(memdbg.heap) |
Jean-Paul Calderone | 68703ed | 2013-03-04 12:23:44 -0800 | [diff] [blame] | 62 | run(result) |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 63 | |
| 64 | # Clean up some long-lived allocations so they won't be reported as |
| 65 | # memory leaks. |
Jean-Paul Calderone | 3f93d21 | 2014-01-01 12:36:53 -0500 | [diff] [blame] | 66 | lib.CRYPTO_cleanup_all_ex_data() |
| 67 | lib.ERR_remove_thread_state(ffi.NULL) |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 68 | |
| 69 | after = set(memdbg.heap) |
| 70 | |
| 71 | self._reportLeaks(after - before, result) |
Jean-Paul Calderone | f6745b3 | 2013-03-01 15:08:46 -0800 | [diff] [blame] | 72 | |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 73 | def _reportLeaks(self, leaks, result): |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 74 | def format_leak(p): |
Alex Gaynor | cb1db1c | 2015-09-06 09:07:46 -0400 | [diff] [blame] | 75 | """ |
| 76 | c_stack looks something like this (interesting parts indicated |
| 77 | with inserted arrows not part of the data): |
| 78 | |
| 79 | cpython/2.7/python(PyCFunction_Call+0x8b) [0x56265a] |
| 80 | cpython/2.7/python() [0x4d5f52] |
| 81 | cpython/2.7/python(PyEval_EvalFrameEx+0x753b) [0x4d0e1e] |
| 82 | cpython/2.7/python() [0x4d6419] |
| 83 | cpython/2.7/python() [0x4d6129] |
| 84 | cpython/2.7/python(PyEval_EvalFrameEx+0x753b) [0x4d0e1e] |
| 85 | cpython/2.7/python(PyEval_EvalCodeEx+0x1043) [0x4d3726] |
| 86 | cpython/2.7/python() [0x55fd51] |
| 87 | cpython/2.7/python(PyObject_Call+0x7e) [0x420ee6] |
| 88 | cpython/2.7/python(PyEval_CallObjectWithKeywords+0x158) [0x4d56ec] |
| 89 | _cffi_backend.so(+0xe96e) [0x7fe2e38be96e] |
| 90 | libffi.so.6(ffi_closure_unix64_inner+0x1b9) [0x7fe2e36ad819] |
| 91 | libffi.so.6(ffi_closure_unix64+0x46) [0x7fe2e36adb7c] |
| 92 | |
| 93 | |----- end interesting |
| 94 | v |
| 95 | libcrypto.so.1.0.0(CRYPTO_malloc+0x64) [0x7fe2e1cef784] |
| 96 | libcrypto.so.1.0.0(lh_insert+0x16b) [0x7fe2e1d6a24b] |
| 97 | libcrypto.so.1.0.0(+0x61c18) [0x7fe2e1cf0c18] |
| 98 | libcrypto.so.1.0.0(+0x625ec) [0x7fe2e1cf15ec] |
| 99 | libcrypto.so.1.0.0(DSA_new_method+0xe6) [0x7fe2e1d524d6] |
| 100 | libcrypto.so.1.0.0(DSA_generate_parameters+0x3a) [0x7fe2e1d5364a] |
| 101 | ^ |
| 102 | |----- begin interesting |
| 103 | |
| 104 | _cffi__x305d4698xb539baaa.so(+0x1f397) [0x7fe2df84d397] |
| 105 | cpython/2.7/python(PyCFunction_Call+0x8b) [0x56265a] |
| 106 | cpython/2.7/python() [0x4d5f52] |
| 107 | cpython/2.7/python(PyEval_EvalFrameEx+0x753b) [0x4d0e1e] |
| 108 | cpython/2.7/python() [0x4d6419] |
| 109 | ... |
| 110 | |
| 111 | Notice the stack is upside down compared to a Python traceback. |
| 112 | Identify the start and end of interesting bits and stuff it into |
| 113 | the stack we report. |
| 114 | """ |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 115 | stacks = memdbg.heap[p] |
| 116 | # Eventually look at multiple stacks for the realloc() case. For |
| 117 | # now just look at the original allocation location. |
Jean-Paul Calderone | c2e8b41 | 2013-03-02 16:27:55 -0800 | [diff] [blame] | 118 | (size, python_stack, c_stack) = stacks[0] |
Jean-Paul Calderone | f6745b3 | 2013-03-01 15:08:46 -0800 | [diff] [blame] | 119 | |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 120 | stack = traceback.format_list(python_stack)[:-1] |
Jean-Paul Calderone | c2e8b41 | 2013-03-02 16:27:55 -0800 | [diff] [blame] | 121 | saved = list(c_stack) |
| 122 | |
Alex Gaynor | 75690d9 | 2015-09-05 10:14:52 -0400 | [diff] [blame] | 123 | # Figure the first interesting frame will be after a the |
| 124 | # cffi-compiled module |
Jean-Paul Calderone | c2e8b41 | 2013-03-02 16:27:55 -0800 | [diff] [blame] | 125 | while c_stack and '/__pycache__/_cffi__' not in c_stack[-1]: |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 126 | c_stack.pop() |
Jean-Paul Calderone | f6745b3 | 2013-03-01 15:08:46 -0800 | [diff] [blame] | 127 | |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 128 | # Figure the last interesting frame will always be CRYPTO_malloc, |
| 129 | # since that's where we hooked in to things. |
Alex Gaynor | cb1db1c | 2015-09-06 09:07:46 -0400 | [diff] [blame] | 130 | while ( |
| 131 | c_stack and 'CRYPTO_malloc' not in c_stack[0] and |
| 132 | 'CRYPTO_realloc' not in c_stack[0] |
| 133 | ): |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 134 | c_stack.pop(0) |
| 135 | |
Jean-Paul Calderone | c2e8b41 | 2013-03-02 16:27:55 -0800 | [diff] [blame] | 136 | if c_stack: |
| 137 | c_stack.reverse() |
| 138 | else: |
| 139 | c_stack = saved[::-1] |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 140 | stack.extend([frame + "\n" for frame in c_stack]) |
| 141 | |
Jean-Paul Calderone | 2beac53 | 2013-03-03 17:30:36 -0800 | [diff] [blame] | 142 | stack.insert(0, "Leaked (%s) at:\n") |
Jean-Paul Calderone | 68a6f8f | 2013-03-01 17:56:22 -0800 | [diff] [blame] | 143 | return "".join(stack) |
| 144 | |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 145 | if leaks: |
Jean-Paul Calderone | 2beac53 | 2013-03-03 17:30:36 -0800 | [diff] [blame] | 146 | unique_leaks = {} |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 147 | for p in leaks: |
Jean-Paul Calderone | 2beac53 | 2013-03-03 17:30:36 -0800 | [diff] [blame] | 148 | size = memdbg.heap[p][-1][0] |
| 149 | new_leak = format_leak(p) |
| 150 | if new_leak not in unique_leaks: |
| 151 | unique_leaks[new_leak] = [(size, p)] |
| 152 | else: |
| 153 | unique_leaks[new_leak].append((size, p)) |
| 154 | memdbg.free(p) |
| 155 | |
| 156 | for (stack, allocs) in unique_leaks.iteritems(): |
| 157 | allocs_accum = [] |
| 158 | for (size, pointer) in allocs: |
| 159 | |
Jean-Paul Calderone | 9227c47 | 2013-12-31 13:47:36 -0500 | [diff] [blame] | 160 | addr = int(ffi.cast('uintptr_t', pointer)) |
Jean-Paul Calderone | 2beac53 | 2013-03-03 17:30:36 -0800 | [diff] [blame] | 161 | allocs_accum.append("%d@0x%x" % (size, addr)) |
| 162 | allocs_report = ", ".join(sorted(allocs_accum)) |
| 163 | |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 164 | result.addError( |
| 165 | self, |
Jean-Paul Calderone | 2beac53 | 2013-03-03 17:30:36 -0800 | [diff] [blame] | 166 | (None, Exception(stack % (allocs_report,)), None)) |
Jean-Paul Calderone | f6745b3 | 2013-03-01 15:08:46 -0800 | [diff] [blame] | 167 | |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 168 | _tmpdir = None |
| 169 | |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 170 | @property |
| 171 | def tmpdir(self): |
| 172 | """ |
| 173 | On demand create a temporary directory. |
| 174 | """ |
| 175 | if self._tmpdir is not None: |
| 176 | return self._tmpdir |
| 177 | |
| 178 | self._tmpdir = mkdtemp(dir=".") |
| 179 | return self._tmpdir |
| 180 | |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 181 | def tearDown(self): |
| 182 | """ |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 183 | Clean up any files or directories created using |
| 184 | :py:meth:`TestCase.mktemp`. Subclasses must invoke this method if they |
| 185 | override it or the cleanup will not occur. |
Jean-Paul Calderone | 855331d | 2013-03-03 10:21:43 -0800 | [diff] [blame] | 186 | """ |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 187 | if self._tmpdir is not None: |
| 188 | shutil.rmtree(self._tmpdir) |
| 189 | |
Jean-Paul Calderone | 1206daf | 2009-07-16 16:07:42 -0400 | [diff] [blame] | 190 | try: |
Jean-Paul Calderone | c86bb7d | 2013-12-29 10:25:59 -0500 | [diff] [blame] | 191 | exception_from_error_queue(Error) |
Jean-Paul Calderone | 24b6459 | 2010-08-12 10:43:09 -0400 | [diff] [blame] | 192 | except Error: |
| 193 | e = sys.exc_info()[1] |
Jean-Paul Calderone | 1206daf | 2009-07-16 16:07:42 -0400 | [diff] [blame] | 194 | if e.args != ([],): |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 195 | self.fail( |
| 196 | "Left over errors in OpenSSL error queue: " + repr(e) |
| 197 | ) |
Jean-Paul Calderone | 1206daf | 2009-07-16 16:07:42 -0400 | [diff] [blame] | 198 | |
Jean-Paul Calderone | 8fb5318 | 2013-12-30 08:35:49 -0500 | [diff] [blame] | 199 | def assertIsInstance(self, instance, classOrTuple, message=None): |
| 200 | """ |
| 201 | Fail if C{instance} is not an instance of the given class or of |
| 202 | one of the given classes. |
| 203 | |
| 204 | @param instance: the object to test the type (first argument of the |
| 205 | C{isinstance} call). |
| 206 | @type instance: any. |
| 207 | @param classOrTuple: the class or classes to test against (second |
| 208 | argument of the C{isinstance} call). |
| 209 | @type classOrTuple: class, type, or tuple. |
| 210 | |
| 211 | @param message: Custom text to include in the exception text if the |
| 212 | assertion fails. |
| 213 | """ |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 214 | assert isinstance(instance, classOrTuple) |
Jean-Paul Calderone | abfbab6 | 2013-02-09 21:25:02 -0800 | [diff] [blame] | 215 | |
Jean-Paul Calderone | 060a57e | 2011-05-04 18:02:49 -0400 | [diff] [blame] | 216 | def failUnlessIn(self, containee, container, msg=None): |
| 217 | """ |
Alex Gaynor | c88f628 | 2015-09-05 15:32:39 -0400 | [diff] [blame] | 218 | Fail the test if :py:data:`containee` is not found in |
| 219 | :py:data:`container`. |
Jean-Paul Calderone | 060a57e | 2011-05-04 18:02:49 -0400 | [diff] [blame] | 220 | |
Jonathan Ballet | 648875f | 2011-07-16 14:14:58 +0900 | [diff] [blame] | 221 | :param containee: the value that should be in :py:class:`container` |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 222 | :param container: a sequence type, or in the case of a mapping type, |
Jean-Paul Calderone | 060a57e | 2011-05-04 18:02:49 -0400 | [diff] [blame] | 223 | will follow semantics of 'if key in dict.keys()' |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 224 | :param msg: if msg is None, then the failure message will be |
Jean-Paul Calderone | 060a57e | 2011-05-04 18:02:49 -0400 | [diff] [blame] | 225 | '%r not in %r' % (first, second) |
| 226 | """ |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 227 | assert containee in container |
Jean-Paul Calderone | 060a57e | 2011-05-04 18:02:49 -0400 | [diff] [blame] | 228 | assertIn = failUnlessIn |
| 229 | |
Jean-Paul Calderone | 15f3644 | 2014-05-01 07:58:02 -0400 | [diff] [blame] | 230 | def assertNotIn(self, containee, container, msg=None): |
| 231 | """ |
| 232 | Fail the test if C{containee} is found in C{container}. |
| 233 | |
| 234 | @param containee: the value that should not be in C{container} |
| 235 | @param container: a sequence type, or in the case of a mapping type, |
| 236 | will follow semantics of 'if key in dict.keys()' |
| 237 | @param msg: if msg is None, then the failure message will be |
| 238 | '%r in %r' % (first, second) |
| 239 | """ |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 240 | assert containee not in container |
Jean-Paul Calderone | 15f3644 | 2014-05-01 07:58:02 -0400 | [diff] [blame] | 241 | failIfIn = assertNotIn |
| 242 | |
Jean-Paul Calderone | 77b3d08 | 2014-12-12 20:04:35 -0500 | [diff] [blame] | 243 | def assertIs(self, first, second, msg=None): |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 244 | """ |
Jonathan Ballet | 648875f | 2011-07-16 14:14:58 +0900 | [diff] [blame] | 245 | Fail the test if :py:data:`first` is not :py:data:`second`. This is an |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 246 | obect-identity-equality test, not an object equality |
Jonathan Ballet | 648875f | 2011-07-16 14:14:58 +0900 | [diff] [blame] | 247 | (i.e. :py:func:`__eq__`) test. |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 248 | |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 249 | :param msg: if msg is None, then the failure message will be |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 250 | '%r is not %r' % (first, second) |
| 251 | """ |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 252 | assert first is second |
Jean-Paul Calderone | 77b3d08 | 2014-12-12 20:04:35 -0500 | [diff] [blame] | 253 | assertIdentical = failUnlessIdentical = assertIs |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 254 | |
Jean-Paul Calderone | 77b3d08 | 2014-12-12 20:04:35 -0500 | [diff] [blame] | 255 | def assertIsNot(self, first, second, msg=None): |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 256 | """ |
Jonathan Ballet | 648875f | 2011-07-16 14:14:58 +0900 | [diff] [blame] | 257 | Fail the test if :py:data:`first` is :py:data:`second`. This is an |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 258 | obect-identity-equality test, not an object equality |
Jonathan Ballet | 648875f | 2011-07-16 14:14:58 +0900 | [diff] [blame] | 259 | (i.e. :py:func:`__eq__`) test. |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 260 | |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 261 | :param msg: if msg is None, then the failure message will be |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 262 | '%r is %r' % (first, second) |
| 263 | """ |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 264 | assert first is not second |
Jean-Paul Calderone | 77b3d08 | 2014-12-12 20:04:35 -0500 | [diff] [blame] | 265 | assertNotIdentical = failIfIdentical = assertIsNot |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 266 | |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 267 | def failUnlessRaises(self, exception, f, *args, **kwargs): |
| 268 | """ |
Jonathan Ballet | 648875f | 2011-07-16 14:14:58 +0900 | [diff] [blame] | 269 | Fail the test unless calling the function :py:data:`f` with the given |
| 270 | :py:data:`args` and :py:data:`kwargs` raises :py:data:`exception`. The |
| 271 | failure will report the traceback and call stack of the unexpected |
| 272 | exception. |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 273 | |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 274 | :param exception: exception type that is to be expected |
| 275 | :param f: the function to call |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 276 | |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 277 | :return: The raised exception instance, if it is of the given type. |
| 278 | :raise self.failureException: Raised if the function call does |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 279 | not raise an exception or if it raises an exception of a |
| 280 | different type. |
| 281 | """ |
Alex Gaynor | d0e83ad | 2015-09-05 13:19:43 -0400 | [diff] [blame] | 282 | with pytest.raises(exception) as cm: |
| 283 | f(*args, **kwargs) |
| 284 | return cm.value |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 285 | assertRaises = failUnlessRaises |
| 286 | |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 287 | def mktemp(self): |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 288 | """ |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 289 | Return UTF-8-encoded bytes of a path to a tmp file. |
| 290 | |
| 291 | The file will be cleaned up after the test run. |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 292 | """ |
Hynek Schlawack | 4813c0e | 2015-04-16 13:38:01 -0400 | [diff] [blame] | 293 | return mktemp(dir=self.tmpdir).encode("utf-8") |
Jean-Paul Calderone | 0ef63ed | 2009-07-05 13:05:45 -0400 | [diff] [blame] | 294 | |
Jean-Paul Calderone | 6864905 | 2009-07-17 21:14:27 -0400 | [diff] [blame] | 295 | # Other stuff |
| 296 | def assertConsistentType(self, theType, name, *constructionArgs): |
| 297 | """ |
Alex Gaynor | c88f628 | 2015-09-05 15:32:39 -0400 | [diff] [blame] | 298 | Perform various assertions about :py:data:`theType` to ensure that it |
| 299 | is a well-defined type. This is useful for extension types, where it's |
Jean-Paul Calderone | 6864905 | 2009-07-17 21:14:27 -0400 | [diff] [blame] | 300 | pretty easy to do something wacky. If something about the type is |
| 301 | unusual, an exception will be raised. |
| 302 | |
Jonathan Ballet | 78b92a2 | 2011-07-16 08:07:26 +0900 | [diff] [blame] | 303 | :param theType: The type object about which to make assertions. |
| 304 | :param name: A string giving the name of the type. |
Alex Gaynor | c88f628 | 2015-09-05 15:32:39 -0400 | [diff] [blame] | 305 | :param constructionArgs: Positional arguments to use with |
| 306 | :py:data:`theType` to create an instance of it. |
Jean-Paul Calderone | 6864905 | 2009-07-17 21:14:27 -0400 | [diff] [blame] | 307 | """ |
| 308 | self.assertEqual(theType.__name__, name) |
| 309 | self.assertTrue(isinstance(theType, type)) |
| 310 | instance = theType(*constructionArgs) |
| 311 | self.assertIdentical(type(instance), theType) |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 312 | |
| 313 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 314 | class EqualityTestsMixin(object): |
| 315 | """ |
| 316 | A mixin defining tests for the standard implementation of C{==} and C{!=}. |
| 317 | """ |
Alex Gaynor | c88f628 | 2015-09-05 15:32:39 -0400 | [diff] [blame] | 318 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 319 | def anInstance(self): |
| 320 | """ |
| 321 | Return an instance of the class under test. Each call to this method |
| 322 | must return a different object. All objects returned must be equal to |
| 323 | each other. |
| 324 | """ |
| 325 | raise NotImplementedError() |
| 326 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 327 | def anotherInstance(self): |
| 328 | """ |
| 329 | Return an instance of the class under test. Each call to this method |
| 330 | must return a different object. The objects must not be equal to the |
| 331 | objects returned by C{anInstance}. They may or may not be equal to |
| 332 | each other (they will not be compared against each other). |
| 333 | """ |
| 334 | raise NotImplementedError() |
| 335 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 336 | def test_identicalEq(self): |
| 337 | """ |
| 338 | An object compares equal to itself using the C{==} operator. |
| 339 | """ |
| 340 | o = self.anInstance() |
| 341 | self.assertTrue(o == o) |
| 342 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 343 | def test_identicalNe(self): |
| 344 | """ |
| 345 | An object doesn't compare not equal to itself using the C{!=} operator. |
| 346 | """ |
| 347 | o = self.anInstance() |
| 348 | self.assertFalse(o != o) |
| 349 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 350 | def test_sameEq(self): |
| 351 | """ |
| 352 | Two objects that are equal to each other compare equal to each other |
| 353 | using the C{==} operator. |
| 354 | """ |
| 355 | a = self.anInstance() |
| 356 | b = self.anInstance() |
| 357 | self.assertTrue(a == b) |
| 358 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 359 | def test_sameNe(self): |
| 360 | """ |
| 361 | Two objects that are equal to each other do not compare not equal to |
| 362 | each other using the C{!=} operator. |
| 363 | """ |
| 364 | a = self.anInstance() |
| 365 | b = self.anInstance() |
| 366 | self.assertFalse(a != b) |
| 367 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 368 | def test_differentEq(self): |
| 369 | """ |
| 370 | Two objects that are not equal to each other do not compare equal to |
| 371 | each other using the C{==} operator. |
| 372 | """ |
| 373 | a = self.anInstance() |
| 374 | b = self.anotherInstance() |
| 375 | self.assertFalse(a == b) |
| 376 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 377 | def test_differentNe(self): |
| 378 | """ |
| 379 | Two objects that are not equal to each other compare not equal to each |
| 380 | other using the C{!=} operator. |
| 381 | """ |
| 382 | a = self.anInstance() |
| 383 | b = self.anotherInstance() |
| 384 | self.assertTrue(a != b) |
| 385 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 386 | def test_anotherTypeEq(self): |
| 387 | """ |
| 388 | The object does not compare equal to an object of an unrelated type |
| 389 | (which does not implement the comparison) using the C{==} operator. |
| 390 | """ |
| 391 | a = self.anInstance() |
| 392 | b = object() |
| 393 | self.assertFalse(a == b) |
| 394 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 395 | def test_anotherTypeNe(self): |
| 396 | """ |
| 397 | The object compares not equal to an object of an unrelated type (which |
| 398 | does not implement the comparison) using the C{!=} operator. |
| 399 | """ |
| 400 | a = self.anInstance() |
| 401 | b = object() |
| 402 | self.assertTrue(a != b) |
| 403 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 404 | def test_delegatedEq(self): |
| 405 | """ |
| 406 | The result of comparison using C{==} is delegated to the right-hand |
| 407 | operand if it is of an unrelated type. |
| 408 | """ |
| 409 | class Delegate(object): |
| 410 | def __eq__(self, other): |
| 411 | # Do something crazy and obvious. |
| 412 | return [self] |
| 413 | |
| 414 | a = self.anInstance() |
| 415 | b = Delegate() |
| 416 | self.assertEqual(a == b, [b]) |
| 417 | |
Jean-Paul Calderone | 9c7f069 | 2014-04-30 18:17:19 -0400 | [diff] [blame] | 418 | def test_delegateNe(self): |
| 419 | """ |
| 420 | The result of comparison using C{!=} is delegated to the right-hand |
| 421 | operand if it is of an unrelated type. |
| 422 | """ |
| 423 | class Delegate(object): |
| 424 | def __ne__(self, other): |
| 425 | # Do something crazy and obvious. |
| 426 | return [self] |
| 427 | |
| 428 | a = self.anInstance() |
| 429 | b = Delegate() |
| 430 | self.assertEqual(a != b, [b]) |
Jean-Paul Calderone | 6462b07 | 2015-03-29 07:03:11 -0400 | [diff] [blame] | 431 | |
| 432 | |
| 433 | # The type name expected in warnings about using the wrong string type. |
| 434 | if PY3: |
| 435 | WARNING_TYPE_EXPECTED = "str" |
| 436 | else: |
| 437 | WARNING_TYPE_EXPECTED = "unicode" |