Skip to content

Commit

Permalink
[Beats][pytest] Asserting if filebeat logs include errors (elastic#20999
Browse files Browse the repository at this point in the history
)

First iteration on tackling this issue, allowing to assert on errors in filebeat, since any test will fail afterwards anyway, and the logs should not include errors. This could be anything from Elasticsearch not being available to pipeline failing to install.

(cherry picked from commit 4dd8061)
  • Loading branch information
P1llus authored and marc-gr committed Oct 6, 2020
1 parent d1306da commit 0422263
Showing 1 changed file with 32 additions and 16 deletions.
48 changes: 32 additions & 16 deletions filebeat/tests/system/test_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,22 +139,29 @@ def run_on_file(self, module, fileset, test_file, cfgfile):
cmd.append("{module}.{fileset}.var.format=json".format(module=module, fileset=fileset))

output_path = os.path.join(self.working_dir)
output = open(os.path.join(output_path, "output.log"), "ab")
output.write(bytes(" ".join(cmd) + "\n", "utf-8"))

# Use a fixed timezone so results don't vary depending on the environment
# Don't use UTC to avoid hiding that non-UTC timezones are not being converted as needed,
# this can happen because UTC uses to be the default timezone in date parsers when no other
# timezone is specified.
local_env = os.environ.copy()
local_env["TZ"] = 'Etc/GMT+2'

subprocess.Popen(cmd,
env=local_env,
stdin=None,
stdout=output,
stderr=subprocess.STDOUT,
bufsize=0).wait()
# Runs inside a with block to ensure file is closed afterwards
with open(os.path.join(output_path, "output.log"), "ab") as output:
output.write(bytes(" ".join(cmd) + "\n", "utf-8"))

# Use a fixed timezone so results don't vary depending on the environment
# Don't use UTC to avoid hiding that non-UTC timezones are not being converted as needed,
# this can happen because UTC uses to be the default timezone in date parsers when no other
# timezone is specified.
local_env = os.environ.copy()
local_env["TZ"] = 'Etc/GMT+2'

subprocess.Popen(cmd,
env=local_env,
stdin=None,
stdout=output,
stderr=subprocess.STDOUT,
bufsize=0).wait()

# List of errors to check in filebeat output logs
errors = ["Error loading pipeline for fileset"]
# Checks if the output of filebeat includes errors
contains_error, error_line = file_contains(os.path.join(output_path, "output.log"), errors)
assert contains_error is False, "Error found in log:{}".format(error_line)

# Make sure index exists
self.wait_until(lambda: self.es.indices.exists(self.index_name))
Expand Down Expand Up @@ -313,5 +320,14 @@ def delete_key(obj, key):
del obj[key]


def file_contains(filepath, strings):
with open(filepath, 'r') as file:
for line in file:
for string in strings:
if string in line:
return True, line
return False, None


def pretty_json(obj):
return json.dumps(obj, indent=2, separators=(',', ': '))

0 comments on commit 0422263

Please sign in to comment.