-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #660 from jean-roland/ft_memory_leak_test
Add memory leak test
- Loading branch information
Showing
4 changed files
with
216 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
import argparse | ||
import os | ||
from signal import SIGINT | ||
import subprocess | ||
import sys | ||
import time | ||
import re | ||
|
||
# Specify the directory for the binaries | ||
DIR_EXAMPLES = "build/examples" | ||
|
||
NO_LEAK_OUTPUT = "All heap blocks were freed -- no leaks are possible" | ||
|
||
|
||
def failure_mode(fail_cmd): | ||
test_status = 0 | ||
# Start binary | ||
print("Start binary") | ||
z_pub_command = f"stdbuf -oL -eL valgrind ./{DIR_EXAMPLES}/" + fail_cmd | ||
z_pub_process = subprocess.Popen( | ||
z_pub_command, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True | ||
) | ||
# Wait for process to finish | ||
z_pub_process.wait() | ||
# Check output | ||
print("Check output") | ||
z_pub_output = z_pub_process.stderr.read() | ||
if NO_LEAK_OUTPUT in z_pub_output: | ||
print("Failure mode output valid") | ||
else: | ||
print("Failure mode output invalid:") | ||
print(f"Received: \"{z_pub_output}\"") | ||
test_status = 1 | ||
# Return value | ||
return test_status | ||
|
||
|
||
def pub_and_sub(pub_cmd, sub_cmd): | ||
test_status = 0 | ||
|
||
print("Start subscriber") | ||
# Start z_sub in the background | ||
z_sub_command = f"stdbuf -oL -eL valgrind ./{DIR_EXAMPLES}/" + sub_cmd | ||
|
||
z_sub_process = subprocess.Popen( | ||
z_sub_command, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True | ||
) | ||
# Introduce a delay to ensure z_sub starts | ||
time.sleep(2) | ||
|
||
print("Start publisher") | ||
# Start z_pub | ||
z_pub_command = f"stdbuf -oL -eL valgrind ./{DIR_EXAMPLES}/" + pub_cmd | ||
z_pub_process = subprocess.Popen( | ||
z_pub_command, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True | ||
) | ||
# Wait for z_pub to finish | ||
z_pub_process.wait() | ||
|
||
print("Stop subscriber") | ||
time.sleep(2) | ||
if z_sub_process.poll() is None: | ||
# send SIGINT to group | ||
z_sub_process_gid = os.getpgid(z_sub_process.pid) | ||
os.killpg(z_sub_process_gid, SIGINT) | ||
|
||
# Wait for z_sub to finish | ||
z_sub_process.wait() | ||
|
||
print("Check outputs") | ||
# Check output of z_pub | ||
z_pub_output = z_pub_process.stderr.read() | ||
if NO_LEAK_OUTPUT in z_pub_output: | ||
print("z_pub output valid") | ||
else: | ||
print("z_pub output invalid:") | ||
print(f"Received: \"{z_pub_output}\"") | ||
test_status = 1 | ||
|
||
# Check output of z_sub | ||
z_sub_output = z_sub_process.stderr.read() | ||
if NO_LEAK_OUTPUT in z_sub_output: | ||
print("z_sub output valid") | ||
else: | ||
print("z_sub output invalid:") | ||
print(f"Received: \"{z_sub_output}\"") | ||
test_status = 1 | ||
# Return value | ||
return test_status | ||
|
||
|
||
def query_and_queryable(query_cmd, queryable_cmd): | ||
test_status = 0 | ||
print("Start queryable") | ||
# Start z_queryable in the background | ||
z_queryable_command = f"stdbuf -oL -eL valgrind ./{DIR_EXAMPLES}/" + queryable_cmd | ||
z_queryable_process = subprocess.Popen( | ||
z_queryable_command, | ||
shell=True, | ||
stdin=subprocess.PIPE, | ||
stdout=subprocess.PIPE, | ||
stderr=subprocess.PIPE, | ||
text=True, | ||
) | ||
|
||
# Introduce a delay to ensure z_queryable starts | ||
time.sleep(2) | ||
|
||
print("Start query") | ||
# Start z_query | ||
z_query_command = f"stdbuf -oL -eL valgrind ./{DIR_EXAMPLES}/" + query_cmd | ||
z_query_process = subprocess.Popen( | ||
z_query_command, | ||
shell=True, | ||
stdin=subprocess.PIPE, | ||
stdout=subprocess.PIPE, | ||
stderr=subprocess.PIPE, | ||
text=True, | ||
) | ||
# Wait for z_query to finish | ||
z_query_process.wait() | ||
|
||
print("Stop queryable") | ||
time.sleep(2) | ||
if z_queryable_process.poll() is None: | ||
# send SIGINT to group | ||
z_quaryable_process_gid = os.getpgid(z_queryable_process.pid) | ||
os.killpg(z_quaryable_process_gid, SIGINT) | ||
|
||
# Wait for z_queryable to finish | ||
z_queryable_process.wait() | ||
|
||
print("Check outputs") | ||
# Check output of z_query | ||
z_query_output = z_query_process.stderr.read() | ||
if NO_LEAK_OUTPUT in z_query_output: | ||
print("z_query output valid") | ||
else: | ||
print("z_query output invalid:") | ||
print(f'Received: "{z_query_output}"') | ||
test_status = 1 | ||
|
||
# Check output of z_queryable | ||
z_queryable_output = z_queryable_process.stderr.read() | ||
if NO_LEAK_OUTPUT in z_queryable_output: | ||
print("z_queryable output valid") | ||
else: | ||
print("z_queryable output invalid:") | ||
print(f'Received: "{z_queryable_output}"') | ||
test_status = 1 | ||
# Return status | ||
return test_status | ||
|
||
|
||
if __name__ == "__main__": | ||
EXIT_STATUS = 0 | ||
|
||
# Test failure mode | ||
print("*** Failure mode ***") | ||
if failure_mode(f'z_pub -m peer') == 1: | ||
EXIT_STATUS = 1 | ||
# Test pub and sub examples | ||
print("*** Pub & sub test ***") | ||
if pub_and_sub(f'z_pub -n 1', f'z_sub -n 1') == 1: | ||
EXIT_STATUS = 1 | ||
print("*** Pub & sub attachment test ***") | ||
if pub_and_sub(f'z_pub_attachment -n 1', f'z_sub_attachment -n 1') == 1: | ||
EXIT_STATUS = 1 | ||
# Test query and queryable examples | ||
print("*** Query & queryable test ***") | ||
if query_and_queryable(f'z_get', f'z_queryable -n 1') == 1: | ||
EXIT_STATUS = 1 | ||
print("*** Query & queryable attachment test ***") | ||
if query_and_queryable(f'z_get_attachment -v Something', f'z_queryable_attachment -n 1') == 1: | ||
EXIT_STATUS = 1 | ||
# Exit | ||
sys.exit(EXIT_STATUS) |