-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filebeat pytest improvements #30103
Merged
matschaffer
merged 6 commits into
elastic:master
from
matschaffer:filebeat-pytest-improvements
Feb 1, 2022
Merged
Filebeat pytest improvements #30103
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
033aec0
Include the test_file as wait_until name
matschaffer 35fb543
Support TESTING_FILEBEAT_FILEPATTERN to test a single ingest file
matschaffer 6065ac4
Include full event on "not documented" case
matschaffer cd55578
Add changelog entry
matschaffer 6ba47b2
Merge remote-tracking branch 'upstream/master' into filebeat-pytest-i…
matschaffer 94130de
Lint fix
matschaffer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ph @cmacknz General problem we have with these environment variables is that everyone that worked on the test suite knows about these, everyone else has to find them in the code base ... We should find a better place (not related to this PR).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agree
I think we should rethink how and why we introduce variables in the first place. The problem today is there are multiple ways to run tests that support or require different side effects.
I strongly think the test cli should give me all the required information for options without looking in the documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Definitely agreed.
Not sure if pytest offers something like this directly.
mage pythonIntegTest
has inline help, but does a lot of extra work (15min for my laptop).I guess maybe one option would be a lighter mage target with these options covered in the inline help.
In working on the tests I also noticed some similarity with metricbeat
testdata
integration tests. For example:beats/metricbeat/module/couchbase/bucket/bucket_test.go
Line 36 in e6839ab
If we did these filebeat module tests as regular golang test cases, stuff like
TESTING_FILEBEAT_FILEPATTERN
would just bego test -run (pattern)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Having
quicker mage
task is an option.I would like to remove all python integration tests and use a single language.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel that. 🧡