-
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.
pycross: Add patching support to py_wheel_library (#1436)
This patch adds a few arguments to `py_wheel_library` to simulate how `http_archive` accepts patch-related arguments. I also amended the existing test to validate the behaviour at a very high level. References: #1360
- Loading branch information
Showing
6 changed files
with
182 additions
and
4 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
tests/pycross/0001-Add-new-file-for-testing-patch-support.patch
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,17 @@ | ||
From b2ebe6fe67ff48edaf2ae937d24b1f0b67c16f81 Mon Sep 17 00:00:00 2001 | ||
From: Philipp Schrader <[email protected]> | ||
Date: Thu, 28 Sep 2023 09:02:44 -0700 | ||
Subject: [PATCH] Add new file for testing patch support | ||
|
||
--- | ||
site-packages/numpy/file_added_via_patch.txt | 1 + | ||
1 file changed, 1 insertion(+) | ||
create mode 100644 site-packages/numpy/file_added_via_patch.txt | ||
|
||
diff --git a/site-packages/numpy/file_added_via_patch.txt b/site-packages/numpy/file_added_via_patch.txt | ||
new file mode 100644 | ||
index 0000000..9d947a4 | ||
--- /dev/null | ||
+++ b/site-packages/numpy/file_added_via_patch.txt | ||
@@ -0,0 +1 @@ | ||
+Hello from a patch! |
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,38 @@ | ||
# 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. | ||
|
||
import unittest | ||
from pathlib import Path | ||
|
||
from python.runfiles import runfiles | ||
|
||
RUNFILES = runfiles.Create() | ||
|
||
|
||
class TestPyWheelLibrary(unittest.TestCase): | ||
def setUp(self): | ||
self.extraction_dir = Path( | ||
RUNFILES.Rlocation("rules_python/tests/pycross/patched_extracted_wheel_for_testing") | ||
) | ||
self.assertTrue(self.extraction_dir.exists(), self.extraction_dir) | ||
self.assertTrue(self.extraction_dir.is_dir(), self.extraction_dir) | ||
|
||
def test_patched_file_contents(self): | ||
"""Validate that the patch got applied correctly.""" | ||
file = self.extraction_dir / "site-packages/numpy/file_added_via_patch.txt" | ||
self.assertEqual(file.read_text(), "Hello from a patch!\n") | ||
|
||
|
||
if __name__ == "__main__": | ||
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
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