mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-20 13:37:28 +02:00
test_node: get_mem_rss fixups
This commit is contained in:
parent
11e1ac3ae0
commit
fa9ed38d57
1 changed files with 7 additions and 10 deletions
|
|
@ -118,22 +118,19 @@ class TestNode():
|
||||||
def get_mem_rss(self):
|
def get_mem_rss(self):
|
||||||
"""Get the memory usage (RSS) per `ps`.
|
"""Get the memory usage (RSS) per `ps`.
|
||||||
|
|
||||||
If process is stopped or `ps` is unavailable, return None.
|
Returns None if `ps` is unavailable.
|
||||||
"""
|
"""
|
||||||
if not (self.running and self.process):
|
assert self.running
|
||||||
self.log.warning("Couldn't get memory usage; process isn't running.")
|
|
||||||
return None
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
return int(subprocess.check_output(
|
return int(subprocess.check_output(
|
||||||
"ps h -o rss {}".format(self.process.pid),
|
["ps", "h", "-o", "rss", "{}".format(self.process.pid)],
|
||||||
shell=True, stderr=subprocess.DEVNULL).strip())
|
stderr=subprocess.DEVNULL).split()[-1])
|
||||||
|
|
||||||
# Catching `Exception` broadly to avoid failing on platforms where ps
|
# Avoid failing on platforms where ps isn't installed.
|
||||||
# isn't installed or doesn't work as expected, e.g. OpenBSD.
|
|
||||||
#
|
#
|
||||||
# We could later use something like `psutils` to work across platforms.
|
# We could later use something like `psutils` to work across platforms.
|
||||||
except Exception:
|
except (FileNotFoundError, subprocess.SubprocessError):
|
||||||
self.log.exception("Unable to get memory usage")
|
self.log.exception("Unable to get memory usage")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
@ -308,7 +305,7 @@ class TestNode():
|
||||||
self.log.warning("Unable to detect memory usage (RSS) - skipping memory check.")
|
self.log.warning("Unable to detect memory usage (RSS) - skipping memory check.")
|
||||||
return
|
return
|
||||||
|
|
||||||
perc_increase_memory_usage = 1 - (float(before_memory_usage) / after_memory_usage)
|
perc_increase_memory_usage = (after_memory_usage / before_memory_usage) - 1
|
||||||
|
|
||||||
if perc_increase_memory_usage > perc_increase_allowed:
|
if perc_increase_memory_usage > perc_increase_allowed:
|
||||||
self._raise_assertion_error(
|
self._raise_assertion_error(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue