Skip to content
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

Merged
merged 1 commit into from
Mar 23, 2025

Conversation

matsl
Copy link
Collaborator

@matsl matsl commented Mar 17, 2025

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.

@matsl matsl force-pushed the preserv-hywiki-mode-after-ert-test-case branch 3 times, most recently from 7ceaf88 to fbbbd8a Compare March 17, 2025 22:25
@matsl matsl requested a review from rswgnu March 17, 2025 22:27
`(let ((current-hywiki-mode hywiki-mode))
(unwind-protect
(progn ,@body)
(hywiki-mode (if current-hywiki-mode 1 0)))))
Copy link
Owner

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.

Copy link
Collaborator Author

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?

Copy link
Owner

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.

@rswgnu
Copy link
Owner

rswgnu commented Mar 18, 2025 via email

@matsl
Copy link
Collaborator Author

matsl commented Mar 18, 2025

Maybe you want to disable any hywiki-mode-hooks during test runs to ensure behavior is always consistent.

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)))))
Copy link
Owner

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.

@matsl
Copy link
Collaborator Author

matsl commented Mar 19, 2025

I wouldn’t assume you control the env the tests are executed in

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.

@matsl matsl force-pushed the preserv-hywiki-mode-after-ert-test-case branch from fbbbd8a to 24a617e Compare March 19, 2025 16:02
Copy link
Owner

@rswgnu rswgnu left a 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.

@matsl
Copy link
Collaborator Author

matsl commented Mar 23, 2025

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.
@matsl matsl force-pushed the preserv-hywiki-mode-after-ert-test-case branch from 24a617e to 3772232 Compare March 23, 2025 14:49
@matsl matsl merged commit 513cefc into master Mar 23, 2025
4 checks passed
@matsl matsl deleted the preserv-hywiki-mode-after-ert-test-case branch March 23, 2025 14:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants