-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add macro for restoring hywiki-mode to state before ert-test #687
Conversation
7ceaf88
to
fbbbd8a
Compare
`(let ((current-hywiki-mode hywiki-mode)) | ||
(unwind-protect | ||
(progn ,@body) | ||
(hywiki-mode (if current-hywiki-mode 1 0))))) |
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.
If the hywiki mode variable here matches the let variable value, then you should not in oke the hywiki mode function. This prevents multiple runs of the hywiki mode hooks among other things.
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.
Maybe. This should just be a very small optimization since calling hywiki-mode multiple times should not matter? If active or not calling it again should be a no op if already in the wanted state, right?
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.
Again, unless you remove the mode hooks, they can execute any state changing code, so potentially far from a no-op. I wouldn’t assume you control the env the tests are executed in, only what you code in the tests themselves.
Maybe you want to disable any hywiki-mode-hooks during test runs to ensure behavior is always consistent.-- BobOn Mar 18, 2025, at 5:36 AM, Mats Lidell ***@***.***> wrote:
@matsl commented on this pull request.
In test/hywiki-tests.el:
@@ -36,6 +36,24 @@ This is for simulating the command loop."
(command-execute cmd))
(run-hooks 'post-command-hook))
+(defmacro hywiki-tests--preserve-hywiki-mode (&rest body)
+ "Restore hywiki-mode after running BODY."
+ (declare (indent 0) (debug t))
+ `(let ((current-hywiki-mode hywiki-mode))
+ (unwind-protect
+ (progn ***@***.***)
+ (hywiki-mode (if current-hywiki-mode 1 0)))))
Maybe. This should just be a very small optimization since calling hywiki-mode multiple times should not matter? If active or not calling it again should be a no op if already in the wanted state, right?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because your review was requested.Message ID: ***@***.***>
|
Can you elaborate why this would be necessary? |
`(let ((current-hywiki-mode hywiki-mode)) | ||
(unwind-protect | ||
(progn ,@body) | ||
(hywiki-mode (if current-hywiki-mode 1 0))))) |
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.
Again, unless you remove the mode hooks, they can execute any state changing code, so potentially far from a no-op. I wouldn’t assume you control the env the tests are executed in, only what you code in the tests themselves.
I think we should only consider tests run through the make targets or in the CI/CD. In these cases we do control the environment. Does not the '--quick' command line option ensure that? Am I missing something? Test executed in a running Emacs is another issue. We do that as developers when developing code and tests, but the environment is not really possible to control fully. Emacs is a too customizable environment for that. Who knows what packages a user might have loaded etc. I don't think even trying is worth it. |
fbbbd8a
to
24a617e
Compare
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.
Leaving to handle as you like.
Thanks. I'm open for revisiting this later. |
Use if for all tests that manipulate the state of hywiki-mode.
24a617e
to
3772232
Compare
What
Add macro for restoring hywiki-mode to state before ert-test. Use if
for all tests that manipulate the state of hywiki-mode.
Why
The state of hywiki-mode in the current Emacs should not be changed by
running a test case that manipulates hywiki-mode.