diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-03-15 19:51:31 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-03-15 19:51:31 -0400 |
commit | 41e8842d4219fe96a464b0b834f18980bae6e7db (patch) | |
tree | 7072260130d9a18e8f1b82f6bff5a987a79fcea6 /tests/hazmat | |
parent | 5b8914a0524d4dc3539265f8ccf9909d053787b7 (diff) | |
download | cryptography-41e8842d4219fe96a464b0b834f18980bae6e7db.tar.gz cryptography-41e8842d4219fe96a464b0b834f18980bae6e7db.tar.bz2 cryptography-41e8842d4219fe96a464b0b834f18980bae6e7db.zip |
Improvements to the memleak tests (#3457)
* Improvements to the memleak tests
* Support passing args
* Do more initialization before looking for at the heap
* Don't use default_backend for something OpenSSL specific
Diffstat (limited to 'tests/hazmat')
-rw-r--r-- | tests/hazmat/backends/test_openssl_memleak.py | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/tests/hazmat/backends/test_openssl_memleak.py b/tests/hazmat/backends/test_openssl_memleak.py index 90216493..8df54774 100644 --- a/tests/hazmat/backends/test_openssl_memleak.py +++ b/tests/hazmat/backends/test_openssl_memleak.py @@ -16,10 +16,12 @@ from cryptography.hazmat.bindings.openssl.binding import Binding MEMORY_LEAK_SCRIPT = """ -def main(): +import sys + + +def main(argv): import gc import json - import sys from cryptography.hazmat.bindings._openssl import ffi, lib @@ -33,7 +35,8 @@ def main(): @ffi.callback("void *(void *, size_t, const char *, int)") def realloc(ptr, size, path, line): - del heap[ptr] + if ptr != ffi.NULL: + del heap[ptr] new_ptr = lib.Cryptography_realloc_wrapper(ptr, size, path, line) heap[new_ptr] = (size, path, line) return new_ptr @@ -48,12 +51,11 @@ def main(): assert result == 1 # Trigger a bunch of initialization stuff. - from cryptography.hazmat.bindings.openssl.binding import Binding - Binding() + import cryptography.hazmat.backends.openssl start_heap = set(heap) - func() + func(*argv[1:]) gc.collect() gc.collect() gc.collect() @@ -75,24 +77,27 @@ def main(): (int(ffi.cast("size_t", ptr)), { "size": heap[ptr][0], "path": ffi.string(heap[ptr][1]).decode(), - "line": heap[ptr][2] + "line": heap[ptr][2], }) for ptr in remaining ))) sys.stdout.flush() sys.exit(255) -main() +main(sys.argv) """ -def assert_no_memory_leaks(s): +def assert_no_memory_leaks(s, argv=[]): env = os.environ.copy() env["PYTHONPATH"] = os.pathsep.join(sys.path) + argv = [ + sys.executable, "-c", "{0}\n\n{1}".format(s, MEMORY_LEAK_SCRIPT) + ] + argv # Shell out to a fresh Python process because OpenSSL does not allow you to # install new memory hooks after the first malloc/free occurs. proc = subprocess.Popen( - [sys.executable, "-c", "{0}\n\n{1}".format(s, MEMORY_LEAK_SCRIPT)], + argv, env=env, stdout=subprocess.PIPE, stderr=subprocess.PIPE, |