Skip to content

Commit 036fd59

Browse files
committed
Add test which unsets RUNFILES env vars
1 parent 45fc9ee commit 036fd59

File tree

3 files changed

+80
-0
lines changed

3 files changed

+80
-0
lines changed

tests/runfiles/BUILD.bazel

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
load("@bazel_skylib//rules:build_test.bzl", "build_test")
22
load("@rules_python//python:py_test.bzl", "py_test")
33
load("@rules_python//python/private:bzlmod_enabled.bzl", "BZLMOD_ENABLED") # buildifier: disable=bzl-visibility
4+
load("//tests/support:sh_py_run_test.bzl", "sh_py_run_test")
45

56
py_test(
67
name = "runfiles_test",
@@ -11,6 +12,14 @@ py_test(
1112
deps = ["//python/runfiles"],
1213
)
1314

15+
sh_py_run_test(
16+
name = "run_binary_with_runfiles_test",
17+
build_python_zip = "no",
18+
py_src = "bin_with_runfiles_test.py",
19+
sh_src = "run_binary_with_runfiles_test.sh",
20+
deps = ["//python/runfiles"],
21+
)
22+
1423
build_test(
1524
name = "publishing",
1625
targets = [
+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Copyright 2018 The Bazel Authors. All rights reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
import os
16+
import unittest
17+
18+
from python.runfiles import runfiles
19+
20+
21+
class RunfilesTest(unittest.TestCase):
22+
"""Unit tests for `rules_python.python.runfiles.Runfiles`."""
23+
24+
def testCreatesDirectoryBasedRunfiles(self) -> None:
25+
r = runfiles.Create()
26+
repo = r.CurrentRepository() or "_main"
27+
bin_location = r.Rlocation(os.path.join(repo,"tests/runfiles/bin_with_runfiles_test.py"))
28+
self.maxDiff = None
29+
self.assertEqual(bin_location, __file__)
30+
31+
if __name__ == "__main__":
32+
unittest.main()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Copyright 2024 The Bazel Authors. All rights reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
# --- begin runfiles.bash initialization v3 ---
16+
# Copy-pasted from the Bazel Bash runfiles library v3.
17+
set -uo pipefail; set +e; f=bazel_tools/tools/bash/runfiles/runfiles.bash
18+
source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \
19+
source "$(grep -sm1 "^$f " "${RUNFILES_MANIFEST_FILE:-/dev/null}" | cut -f2- -d' ')" 2>/dev/null || \
20+
source "$0.runfiles/$f" 2>/dev/null || \
21+
source "$(grep -sm1 "^$f " "$0.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \
22+
source "$(grep -sm1 "^$f " "$0.exe.runfiles_manifest" | cut -f2- -d' ')" 2>/dev/null || \
23+
{ echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e
24+
# --- end runfiles.bash initialization v3 ---
25+
set +e
26+
27+
bin=$(rlocation $BIN_RLOCATION)
28+
if [[ -z "$bin" ]]; then
29+
echo "Unable to locate test binary: $BIN_RLOCATION"
30+
exit 1
31+
fi
32+
33+
# Test invocation without RUNFILES environment variables set
34+
unset RUNFILES_MANIFEST_FILE
35+
unset RUNFILES_DIR
36+
37+
# Fail if tests fail
38+
set -e
39+
${bin}

0 commit comments

Comments
 (0)