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

Use Test Modules in tests instead of Elixir built-in modules #14383

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

maennchen
Copy link
Member

Prep for #14343

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's please move this one to test/elixir/test/elixir/path_helpers.exs, as it is exclusive to tests file, and we typically keep assorted scripts in path_helpers.exs. :)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now that I think about it, I would not extract it to a separate file, given the coupling and the fact we probably only need to share the write_beam() function?

Also, if you search for write_beam =, you can also see another place that we define a function for testing.


defmodule PathHelpers do
def fixture_path() do
Path.expand("../test/elixir/fixtures", __DIR__)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would be leaking Elixir fixtures to other test suites.... I am not sure we want to do that.

def redirect_std_err_on_win, do: ""
end
end
Code.eval_file("../../scripts/path_helpers.exs", __DIR__)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Code.eval_file("../../scripts/path_helpers.exs", __DIR__)
Code.require_file("../../scripts/path_helpers.exs", __DIR__)

@@ -2,6 +2,8 @@
# SPDX-FileCopyrightText: 2021 The Elixir Team
# SPDX-FileCopyrightText: 2012 Plataformatec

Code.eval_file("../../elixir/scripts/path_helpers.exs", __DIR__)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Code.eval_file("../../elixir/scripts/path_helpers.exs", __DIR__)
Code.require_file("../../elixir/scripts/path_helpers.exs", __DIR__)

@@ -103,3 +105,32 @@ defmodule IEx.Case do
|> String.trim()
end
end

PathHelpers.write_beam(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Create a write_beam specific to IEx and have it already purge and delete the modules for you :)

File.mkdir_p!(unquote(path))
beam_path = Path.join(unquote(path), Atom.to_string(name) <> ".beam")
File.write!(beam_path, bin)
res
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's purge/delete it by default too.

Copy link
Member

@josevalim josevalim left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you @maennchen. Sorry I left the comments a bit everywhere but the summary is to not extract PathHelpers to a different module, let's simply defined it for the IEx suite instead, and let's make it automatically purges and deletes modules, so we don't have to explicitly call it every time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants