Closed Bug 1585702 Opened 5 years ago Closed 5 years ago

[mozprocess] "ValueError: embedded null character" on Windows with Python 3

Categories

(Testing :: Mozbase, defect, P2)

Version 3
Unspecified
Windows
defect

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: ahal, Assigned: ahal)

References

Details

Attachments

(3 files)

This happens due to a regression in Python itself:
https://bugs.python.org/issue32745

This gets raised by LPCWSTR here:
https://searchfox.org/mozilla-central/source/testing/mozbase/mozprocess/mozprocess/winprocess.py#167

However according to the winapi docs the format needs to be:

key=value\0

So in other words, CreateProcess is expecting null characters, but ctypes' LPCWSTR now prohibits them. I haven't found a workaround yet.

See Also: → 1585565

Turns out we had already discovered this issue and the tests are all skipped on Python 3 under Windows because of it:
https://searchfox.org/mozilla-central/source/testing/mozbase/mozprocess/tests/manifest.ini#3

Pushed by ahalberstadt@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/6050b9e662ed [mozprocess] Temporarily disable 'env' default on Windows with Python 3, r=gbrown
Keywords: leave-open

This works around a bug in Python:
https://bugs.python.org/issue32745

Null characters aren't allowed in 'c_wchar_p' types anymore, but we can get around
the issue by allocating a buffer in memory and casting it after the fact. This was
discovered via trial and error and I'm not really sure why it works.. But it does.

This also enables the tests under Python 3 on Windows (which thankfully all
seem to pass).

Assignee: nobody → ahal
Status: NEW → ASSIGNED
Pushed by ahalberstadt@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/9ea7f7d17686 [mozprocess] Fix "Embedded null character" error in Windows with Python 3, r=gbrown https://hg.mozilla.org/integration/autoland/rev/e4085fae0f8b [lint] Remove temporary hacks now that 'null character' issue is fixed, r=gbrown
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
Keywords: leave-open
Resolution: --- → FIXED
See Also: → 1604901
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: