-
Notifications
You must be signed in to change notification settings - Fork 543
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: correctly obtain relative path required for the venv created by …
…`--bootstrap_impl=script` (#2439) Computing the relative path from the venv interpreter to the underlying interpreter was incorrectly using the actual interpreter's directory depth, not the venv interpreter's directory depth, when computing the distance from the venv interpreter to the runfiles root. The net effect is the correct relative path would only be computed for binaries with the same directory depth as the actual interpreter (e.g. 2). This went undetected in CI because the tests for this logic just happen to have the same directory depth as the actual interpreter used. To fix, compute the relative path to the runfiles root using the venv interpreter directory. Also added a test in a more nested directory to test this case. Along the way: * Change relative path computation to compute a minimum relative path. * Fix the internals to pass a runfiles-root relative path, not main-repo relative path, for the actual interpreter, as intended. Fixes #2169 --------- Co-authored-by: Richard Levasseur <[email protected]> Co-authored-by: Richard Levasseur <[email protected]> Co-authored-by: Ignas Anikevicius <[email protected]>
- Loading branch information
1 parent
4ee7e25
commit 438b12e
Showing
6 changed files
with
191 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility | ||
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test") | ||
|
||
_SUPPORTS_BOOTSTRAP_SCRIPT = select({ | ||
"@platforms//os:windows": ["@platforms//:incompatible"], | ||
"//conditions:default": [], | ||
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"] | ||
|
||
py_reconfig_test( | ||
name = "nested_dir_test", | ||
srcs = ["nested_dir_test.py"], | ||
bootstrap_impl = "script", | ||
main = "nested_dir_test.py", | ||
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT, | ||
) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Copyright 2024 The Bazel Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
"""Test that the binary being a different directory depth than the underlying interpreter works.""" | ||
|
||
import unittest | ||
|
||
|
||
class RunsTest(unittest.TestCase): | ||
def test_runs(self): | ||
pass | ||
|
||
|
||
unittest.main() |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# Copyright 2023 The Bazel Authors. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
"Unit tests for relative_path computation" | ||
|
||
load("@rules_testing//lib:test_suite.bzl", "test_suite") | ||
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility | ||
|
||
_tests = [] | ||
|
||
def _relative_path_test(env): | ||
# Basic test cases | ||
|
||
env.expect.that_str( | ||
relative_path( | ||
from_ = "a/b", | ||
to = "c/d", | ||
), | ||
).equals("../../c/d") | ||
|
||
env.expect.that_str( | ||
relative_path( | ||
from_ = "a/b/c", | ||
to = "a/d", | ||
), | ||
).equals("../../d") | ||
env.expect.that_str( | ||
relative_path( | ||
from_ = "a/b/c", | ||
to = "a/b/c/d/e", | ||
), | ||
).equals("d/e") | ||
|
||
# Real examples | ||
|
||
# external py_binary uses external python runtime | ||
env.expect.that_str( | ||
relative_path( | ||
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin", | ||
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
), | ||
).equals( | ||
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
) | ||
|
||
# internal py_binary uses external python runtime | ||
env.expect.that_str( | ||
relative_path( | ||
from_ = "_main/test/version_default.venv/bin", | ||
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
), | ||
).equals( | ||
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
) | ||
|
||
# external py_binary uses internal python runtime | ||
env.expect.that_str( | ||
relative_path( | ||
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin", | ||
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
), | ||
).equals( | ||
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
) | ||
|
||
# internal py_binary uses internal python runtime | ||
env.expect.that_str( | ||
relative_path( | ||
from_ = "_main/scratch/main.venv/bin", | ||
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
), | ||
).equals( | ||
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3", | ||
) | ||
|
||
_tests.append(_relative_path_test) | ||
|
||
def relative_path_test_suite(*, name): | ||
test_suite(name = name, basic_tests = _tests) |