Enable completely offline st2-rule-tester#6208
Merged
nzlosh merged 3 commits intoStackStorm:masterfrom Oct 3, 2024
Merged
Conversation
a03856f to
cc2ca22
Compare
Contributor
Author
|
I tested to make sure that w/o |
cc2ca22 to
977baaf
Compare
guzzijones
approved these changes
Sep 12, 2024
nzlosh
approved these changes
Oct 3, 2024
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
To enable offline testing of StackStorm rules (i.e. in a CI pipeline) this PR allows
st2-rule-testerto run w/o a MongoDB connection (which was the only external requirement the script required)st2-rule-testeronly requires a connection to Mongo if you use therule-refand/ortrigger-instance-idflags - as they reference entries in the MongoDB. If you only want to provideruleandtrigger-instanceyamlfiles (for example in CI testing pipeline ofrulesw/in apack) then the Mongo connection is never required.This PR adds an
--offlineflag, which if provided, skips the setting up of the mongo connection - otherwise (and by default) the connection is still setup.There's also a check that if the
--offlineflag is provide that neitherrule-refand/ortrigger-instance-idflags are provided - and if so exits with an error informing the user they can't be used in conjunction with the--offlineflag.This enables the following usecase https://stackstorm-community.slack.com/archives/C066APT88/p1716561254326499