can't test on buildslaves that we don't depend on pywin32 #1334
Labels
No Label
0.2.0
0.3.0
0.4.0
0.5.0
0.5.1
0.6.0
0.6.1
0.7.0
0.8.0
0.9.0
1.0.0
1.1.0
1.10.0
1.10.1
1.10.2
1.10a2
1.11.0
1.12.0
1.12.1
1.13.0
1.14.0
1.15.0
1.15.1
1.2.0
1.3.0
1.4.1
1.5.0
1.6.0
1.6.1
1.7.0
1.7.1
1.7β
1.8.0
1.8.1
1.8.2
1.8.3
1.8β
1.9.0
1.9.0-s3branch
1.9.0a1
1.9.0a2
1.9.0b1
1.9.1
1.9.2
1.9.2a1
LeastAuthority.com automation
blocker
cannot reproduce
cloud-branch
code
code-dirnodes
code-encoding
code-frontend
code-frontend-cli
code-frontend-ftp-sftp
code-frontend-magic-folder
code-frontend-web
code-mutable
code-network
code-nodeadmin
code-peerselection
code-storage
contrib
critical
defect
dev-infrastructure
documentation
duplicate
enhancement
fixed
invalid
major
minor
n/a
normal
operational
packaging
somebody else's problem
supercritical
task
trivial
unknown
was already fixed
website
wontfix
worksforme
No Milestone
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Reference: tahoe-lafs/trac-2024-07-25#1334
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#1274 removed Tahoe's direct and indirect dependencies on pywin32.
However, it appears that buildbot depends on pywin32 on Windows, so we can't uninstall it on the Windows buildslaves to automatically test that it isn't needed (and avoid regressions).
can't run buildbots without pywin32 installedto can't run buildslaves without pywin32 installedAfter looking at buildbot's dependencies on pywin32 (including via Twisted, for process control), I doubt this will be fixed any time soon. We'll just have to live with having to run the test suite manually in order to check that we don't depend on pywin32.
Replying to davidsarah:
Oh hang on, maybe it's not necessary that pywin32 not be installed in order for us to check that we don't import it. We can have a test that runs last and does
self.failIfIn("pywin32", sys.modules)
.can't run buildslaves without pywin32 installedto can't test on buildslaves that we don't depend on pywin32Replying to [davidsarah]comment:3:
Unfortunately it wasn't as simple as that. Several of our dependencies (for example, Twisted) will try to import pywin32 modules, even though they tolerate unavailability of those modules. So we have to block loading of pywin32 (and do so fairly early, before we've tried to import any such dependencies) in order to be able to test that we don't need it.
Attachment pywin32-just-say-no.darcs.patch (19164 bytes) added
Prevent pywin32 modules from loading, and test at the end of the test suite that they haven't. refs #1274. fixes #1334'
It's really ugly that pywin32-just-say-no.darcs.patch adds to the complexity of
src/allmydata/*init*.py
, but I couldn't find any other way to do it (in particular, source:src/allmydata/windows/fixups.py is too late because pywin32 modules would already have been loaded by then).I'm not sure if it is worth it to add complexity to source:src/allmydata/init.py in order to test this. We could also test it by having a buildslave with no pywin32 on it, right? Maybe also in concert with a "desert island build" test which goes red if the build system downloads anything.
In general I've recently been trying to find ways to test code without altering the code to add test hooks, although if this is worth it in specific then I don't object.
Replying to zooko:
No, because the part of buildbot that runs on the buildslaves depends on pywin32. The only other way to test this, I think, would be to make pywin32 available to the buildbot code without being installed, and without being available to subprocesses. There are two ways to do that that I can think of:
sys.path
in the startup script for the buildslave;PYTHONPATH
when starting the buildslave (or globally), but then in the buildbot step that runs the Tahoe test suite, remove that entry from thePYTHONPATH
passed to the subprocess.In changeset:6e0607f4e05b159c:
In changeset:91c7cf9007ae5b5d:
I no longer favour the approach used in the patch of blocking loading of pywin32 in
allmydata/*init*.py
. It's too ugly and intrusive to install an import hook just to avoid loading a library that we don't want to have to care about any more.I have suggested to our win32 buildslave operators, Freestorm and Dcoder, the following changes to their set up, that should achieve a similar effect of only allowing pywin32 to be used by the initial buildslave process:
Assume that the Python directory is
C:\Python27
(if not then adjust the paths below). Stop the buildslave, then do:Edit
C:\Python27\Scripts\buildbot
(using an editor that can handle Unix line endings). Add the following lines just after the!#
line:Similarly, in
C:\Python27\Scripts\buildbot_service.py
, after 'import threading
' but before 'import pywintypes
', add:(i.e. the same thing without the '
import os, sys
').The names of the
buildbot
andbuildbot_service.py
scripts might be different depending on the version of Buildbot. (There are some references to a 'buildslave
' script in the docs which wasn't present in my copy, but if it exists in yours then it will need a similar modification.) You may want to back up the old versions of the scripts before editing them.To check that pywin32 can't be imported by code other than buildbot, do:
That should give an
ImportError
. Now restart the buildslave and check that it still works.Freestorm and Dcoder haven't got back to me yet.
For future reference, the "exocet" tool from Allen Short is an importer (which I think means it replaces the thing that currently implements the
import
keyword) which can do things like blacklist modules. Might ease the sort of hack that we're currently deciding not to do to the longsufferingsrc/allmydata/*init*.py
.Replying to zooko:
Well, that's only 6 lines in pywin32-just-say-no.darcs.patch:
If 6 lines is too complicated, then dependency on another tool certainly is!
Not to mention that exocet tries to import modules from pywin32 :-)
I didn't mean we would use exocet solely to avoid those six lines. It may be a thing that we prefer to use in general, if avoiding these six lines turns out to be one of several benefits that it brings. I've opened use exocet instead of the builtin Python module loader: #1443.
#1464 is a generalization of this ticket to other libraries (it also affects Twisted).
I just spotted the
--without-module=
argument to trial, which might be sufficient to fix this.We now do depend on pywin32 (specifically pypiwin32), so this is now a WONTFIX.