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

message tests can be migrated from python to JS #47707

Open
MoLow opened this issue Apr 24, 2023 · 57 comments · Fixed by #49721 or #50421 · May be fixed by #47868 or #50333
Open

message tests can be migrated from python to JS #47707

MoLow opened this issue Apr 24, 2023 · 57 comments · Fixed by #49721 or #50421 · May be fixed by #47868 or #50333
Labels
code-and-learn Issues related to the Code-and-Learn events and PRs submitted during the events. good first issue Issues that are suitable for first-time contributors. test Issues and PRs related to the tests.

Comments

@MoLow
Copy link
Member

MoLow commented Apr 24, 2023

See #47498 for an example of such a migration
pseudo-tty tests can migrate as well, but that will require some more work using something like https://github.com/microsoft/node-pty or similar

@MoLow MoLow added good first issue Issues that are suitable for first-time contributors. code-and-learn Issues related to the Code-and-Learn events and PRs submitted during the events. test Issues and PRs related to the tests. labels Apr 24, 2023
@MoLow
Copy link
Member Author

MoLow commented Apr 24, 2023

@RafaelGSS is this a good candidate for Grace Hopper Open Source Day?

@projectnoa
Copy link

I would like to work on this if is available.

@MoLow
Copy link
Member Author

MoLow commented Apr 26, 2023

@projectnoa no need to ask, this is an issue that many people can work on since there are many tests under tests/message.

@GeoffreyBooth
Copy link
Member

@projectnoa no need to ask, this is an issue that many people can work on since there are many tests under tests/message.

Yes. Please follow the example of #47498, and branch off of that PR’s branch so you get the new helpers that it adds. You might also want to add a comment on this thread letting others know which tests you plan to migrate, so that no one else works on the same ones while you do, duplicating effort.

@projectnoa
Copy link

Great! I'll dig into the project and mention what I'll tackle tomorrow.

@projectnoa
Copy link

Tests I will be working on:
assert_throws_stack.js,
assert_throws_stack.out,
core_line_numbers.js,
core_line_numbers.out,
eval_messages.js,
eval_messages.out,
if-error-has-good-stack.js,
if-error-has-good-stack.out,
internal_assert.js,
internal_assert.out,
internal_assert_fail.js,
internal_assert_fail.out,
max_tick_depth.js,
max_tick_depth.out,
message.status,
nexttick_throw.js,
nexttick_throw.out,
promise_unhandled_warn_with_error.js,
promise_unhandled_warn_with_error.out,
source_map_enclosing_function.js,
source_map_enclosing_function.out,
source_map_reference_error_tabs.js,
source_map_reference_error_tabs.out,
source_map_sourcemapping_url_string.js,
source_map_sourcemapping_url_string.out,
source_map_throw_catch.js,
source_map_throw_catch.out,
source_map_throw_icu.js,
source_map_throw_icu.out,
source_map_throw_set_immediate.js,
source_map_throw_set_immediate.out,
stdin_messages.js,
stdin_messages.out,
test-no-extra-info-on-fatal-exception.js,
test-no-extra-info-on-fatal-exception.out,
testcfg.py

@MoLow
Copy link
Member Author

MoLow commented Apr 28, 2023

@projectnoa we try to avoid cookie licking, so if you have a ready PR just open one or multiple PRs

@mertcanaltin
Copy link
Member

@MoLow I would love to help too

@MoLow
Copy link
Member Author

MoLow commented Apr 28, 2023

@mertcanaltin go for it!

@projectnoa
Copy link

Apologies @MoLow, you were right. I didn't do my due diligence and jumped into the task without understanding the challenge ahead. I still want to do the work and contribute but I need to ask some questions.

To my understanding, there's a set of unit tests in Python that need to be migrated to JS. I'm having trouble finding the Python tests. Can someone point me in the right direction?

These tests will be residing in the test/message directory, correct? Are the message tests targeting a specific module or feature?

What are the .out files in this directory?

Also, the tests files I announced that I would work on are not the target of this operation. I should have paid attention a notice that they were tests already migrated. Apologies about that. I will instead focus on understanding the test workflow and see how I can start migrating a few tests.

I was able to compile and run all current tests successfully, so I'm ready to work as soon as I can understand the test better.

Thanks!

@GeoffreyBooth
Copy link
Member

@projectnoa Once you’ve checked out the node repo and built, run

tools/test.py -J --mode=release message

To run all the message tests. At the moment, now that #47498 has landed there are only 26 left.

These aren’t tests written in Python; they’re tests that are run by the Python script tools/test.py, but in a special way different from all the other tests in the Node codebase. The Python code runs all the .js files within test/message and compares their outputs against the matching .out files in the same folder, using a complicated regex pattern. Whenever the regex comparison fails, the test fails.

We don’t want to have all this logic in Python, so we’ve been migrating the test/message tests to use a new pattern where the regex comparison is done in JavaScript; the #47498 PR created a new helper to do that comparison, and migrated a few dozen tests to use it. The work that remains is to migrate the rest of the message tests, following the example of #47498.

projectnoa added a commit to projectnoa/node that referenced this issue May 5, 2023
@projectnoa projectnoa linked a pull request May 5, 2023 that will close this issue
projectnoa added a commit to projectnoa/node that referenced this issue May 5, 2023
@projectnoa
Copy link

projectnoa commented May 5, 2023

Pull request created. Apologies for the delay.

#47868

I appreciate your input and observations.

@NiharPhansalkar
Copy link
Contributor

NiharPhansalkar commented Jun 11, 2023

Hello, can I try working on this issue if it is available? I am very new to Open Source, so I would like to learn via this good-first-issue.

@NiharPhansalkar
Copy link
Contributor

NiharPhansalkar commented Jun 11, 2023

Hello @MoLow, thank you for responding. I have gone through the messages above and also the issue you have mentioned (#47498), please guide me and let me know if my understanding of the issue is correct?

According to my understanding, you have written the test/common/assertSnapshot.js file (a helper), and now, I have to change files within test/message to use the functions written within the file instead of what they are currently using? (And most of these files in test/message have been changed, now only 26 remain?)

@MoLow
Copy link
Member Author

MoLow commented Jun 11, 2023

@NiharPhansalkar, you are missing one detail, but you understood the essence of the change.
previous PRS migrating these tests moved the tests within test/message into test/fixtures and created new tests within test/parallel to run these fixtures using assertSnapshot

@NiharPhansalkar
Copy link
Contributor

NiharPhansalkar commented Jun 11, 2023

@MoLow Took a look at the PRs in #47498. Correct me if I am wrong.

We will write .snapshot files in the test/fixtures and write tests in test/parallel that when fail, will display these .snapshots?

@MoLow
Copy link
Member Author

MoLow commented Jun 11, 2023

the snapshots are written by assertSnapshot when NODE_REGENERATE_SNAPSHOTS=1

@NiharPhansalkar
Copy link
Contributor

NiharPhansalkar commented Jun 11, 2023

@MoLow I am sorry if I am asking too many questions. From all the PRs I can see, I can see nothing written by anyone in the test/fixtures directory. Only new snapshots are created.
So, I should write tests within test/parallel (replacing those in test/message) which will utilise the helper and create snapshots inside test/fixtures? (snapshots will be automatically created by the assertSnapshot helper)

@MoLow
Copy link
Member Author

MoLow commented Jun 12, 2023

it's ok :)
see #47498 as an example - the fixtures directory contains both snapshots and js files

@NiharPhansalkar
Copy link
Contributor

@MoLow Thank you, will take a look into it!

@NiharPhansalkar
Copy link
Contributor

NiharPhansalkar commented Jun 13, 2023

@MoLow Can I start with the following? (I don't want to start doing something wrong)

I will move the entire .js files from test/message into test/fixtures by creating an aptly named directory. Then make changes in the .js files (eg require changes).

After this step is complete, I will then write a test in test/parallel (eg. a test for assertion type errors).

Am I correct? (Btw, I have not elaborated on the test/parallel part because I still don't quite understand how I have to write a test. I will surely read up the PRs and try to figure that out once I am done with part 1 of moving the files.)

@projectnoa
Copy link

Hello @MoLow, @NiharPhansalkar,

I'm still willing and working on completing this contribution. Can we collaborate to close it together?

@NiharPhansalkar
Copy link
Contributor

@projectnoa Sure! I would love to collaborate on it!
Any way we can keep in touch and coordinate?

@projectnoa
Copy link

@projectnoa Sure! I would love to collaborate on it!
Any way we can keep in touch and coordinate?

Sure, I'll email you some options to connect.

@jahjahLemonade
Copy link
Contributor

jahjahLemonade commented Oct 23, 2023

@MoLow
I submitted a PR

util/
	util-inspect-error-cause.js
	util-inspect-error-cause.out
	util_inspect_error.js
	util_inspect_error.out

@jahjahLemonade
Copy link
Contributor

jahjahLemonade commented Oct 25, 2023

@MoLow @GeoffreyBooth
I'll take on this as well

v8/
	v8_warning.js
	v8_warning.out

@yiyunlei
Copy link
Contributor

I will finish my part recently.

eval/
	eval_messages.js
	eval_messages.out
	stdin_messages.js
	stdin_messages.out

@jahjahLemonade
Copy link
Contributor

I submitted a new PR. I'm still working on correcting my previous PR for util. I should have it done shortly.

v8/
	v8_warning.js
	v8_warning.out

@DylanTet
Copy link
Contributor

Are there still tests that need to be migrated?

@GeoffreyBooth
Copy link
Member

Are there still tests that need to be migrated?

Probably. Look for any .out files still in the repo that don’t have open PRs for them.

@DylanTet
Copy link
Contributor

Awesome thank you @GeoffreyBooth!

@yiyunlei
Copy link
Contributor

I will finish my part recently.

eval/
	eval_messages.js
	eval_messages.out
	stdin_messages.js
	stdin_messages.out

PR

alexfernandez pushed a commit to alexfernandez/node that referenced this issue Nov 1, 2023
Migrate the remaining source map tests in the `test/message` folder
from Python to JS.

Fixes: nodejs#47707

test: migrate message source map tests from Python to JS
PR-URL: nodejs#49238
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
alexfernandez pushed a commit to alexfernandez/node that referenced this issue Nov 1, 2023
Migrate the remaining error tests in the `test/message` folder
from Python to JS.

Fixes: nodejs#47707
PR-URL: nodejs#49721
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
alexfernandez pushed a commit to alexfernandez/node that referenced this issue Nov 1, 2023
PR-URL: nodejs#50421
Fixes: nodejs#47707
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
@tniessen tniessen closed this as completed Nov 4, 2023
@GeoffreyBooth GeoffreyBooth reopened this Nov 4, 2023
targos pushed a commit that referenced this issue Nov 11, 2023
Migrate the remaining error tests in the `test/message` folder
from Python to JS.

Fixes: #47707
PR-URL: #49721
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Chemi Atlow <chemi@atlow.co.il>
targos pushed a commit that referenced this issue Nov 11, 2023
PR-URL: #50421
Fixes: #47707
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
targos pushed a commit that referenced this issue Nov 23, 2023
PR-URL: #50421
Fixes: #47707
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
targos pushed a commit that referenced this issue Nov 27, 2023
Migrate the remaining source map tests in the `test/message` folder
from Python to JS.

Fixes: #47707

test: migrate message source map tests from Python to JS
PR-URL: #49238
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
UlisesGascon pushed a commit that referenced this issue Dec 11, 2023
PR-URL: #50421
Fixes: #47707
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com>
ognjenjevremovic added a commit to ognjenjevremovic/node that referenced this issue Jan 20, 2024
Migrated messages v8 tests from Python to JavaScript. This change is
part of an effort to enhance maintainability and consistency in the
test suite. All relevant test files and dependencies have been updated
accordingly.

Refs: nodejs#47707
ognjenjevremovic added a commit to ognjenjevremovic/node that referenced this issue Jan 20, 2024
Migrated messages v8 tests from Python to JavaScript. This change is
part of an effort to enhance maintainability and consistency in the
test suite. All relevant test files and dependencies have been updated
accordingly.

Refs: nodejs#47707
ognjenjevremovic added a commit to ognjenjevremovic/node that referenced this issue Jan 20, 2024
Migrated messages v8 tests from Python to JavaScript. This change is
part of an effort to enhance maintainability and consistency in the
test suite. All relevant test files and dependencies have been updated
accordingly.

Refs: nodejs#47707
ognjenjevremovic added a commit to ognjenjevremovic/node that referenced this issue Jan 20, 2024
Migrated messages v8 tests from Python to JavaScript. This change is
part of an effort to enhance maintainability and consistency in the
test suite. All relevant test files and dependencies have been updated
accordingly.

Refs: nodejs#47707
sercher added a commit to sercher/graaljs that referenced this issue Apr 25, 2024
Migrate the remaining source map tests in the `test/message` folder
from Python to JS.

Fixes: nodejs/node#47707

test: migrate message source map tests from Python to JS
PR-URL: nodejs/node#49238
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
sercher added a commit to sercher/graaljs that referenced this issue Apr 25, 2024
Migrate the remaining source map tests in the `test/message` folder
from Python to JS.

Fixes: nodejs/node#47707

test: migrate message source map tests from Python to JS
PR-URL: nodejs/node#49238
Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
code-and-learn Issues related to the Code-and-Learn events and PRs submitted during the events. good first issue Issues that are suitable for first-time contributors. test Issues and PRs related to the tests.
Projects
None yet
9 participants