56 lines
2.1 KiB
Diff
56 lines
2.1 KiB
Diff
From 05def4bb6e292c3967ef3b219cc720ae28446272 Mon Sep 17 00:00:00 2001
|
|
From: Christoph Reiter <reiter.christoph@gmail.com>
|
|
Date: Sun, 8 Aug 2021 10:19:57 +0200
|
|
Subject: [PATCH 136/N] smoketests: update
|
|
|
|
---
|
|
mingw_smoketests.py | 32 ++++++++++++++++++++++++++++++++
|
|
1 file changed, 32 insertions(+)
|
|
|
|
diff --git a/mingw_smoketests.py b/mingw_smoketests.py
|
|
index 0b99c88..dc26169 100644
|
|
--- a/mingw_smoketests.py
|
|
+++ b/mingw_smoketests.py
|
|
@@ -39,6 +39,38 @@ _UCRT = "clang" in sysconfig.get_platform() or "ucrt" in sysconfig.get_platform(
|
|
|
|
class Tests(unittest.TestCase):
|
|
|
|
+ def test_userdir_path_sep(self):
|
|
+ # Make sure os.path and pathlib use the same path separators
|
|
+ from unittest import mock
|
|
+ from os.path import expanduser
|
|
+ from pathlib import Path
|
|
+
|
|
+ profiles = ["C:\\foo", "C:/foo"]
|
|
+ for profile in profiles:
|
|
+ with mock.patch.dict(os.environ, {"USERPROFILE": profile}):
|
|
+ self.assertEqual(expanduser("~"), os.path.normpath(expanduser("~")))
|
|
+ self.assertEqual(str(Path("~").expanduser()), expanduser("~"))
|
|
+ self.assertEqual(str(Path.home()), expanduser("~"))
|
|
+
|
|
+ def test_sysconfig_schemes(self):
|
|
+ # https://github.com/msys2/MINGW-packages/issues/9319
|
|
+ import sysconfig
|
|
+ from distutils.dist import Distribution
|
|
+ from distutils.command.install import install
|
|
+
|
|
+ names = ['scripts', 'purelib', 'platlib', 'data', 'include']
|
|
+ for scheme in ["nt", "nt_user"]:
|
|
+ for name in names:
|
|
+ c = install(Distribution({"name": "foobar"}))
|
|
+ c.user = (scheme == "nt_user")
|
|
+ c.finalize_options()
|
|
+ if name == "include":
|
|
+ dist_path = os.path.dirname(getattr(c, "install_" + "headers"))
|
|
+ else:
|
|
+ dist_path = getattr(c, "install_" + name)
|
|
+ sys_path = sysconfig.get_path(name, scheme)
|
|
+ self.assertEqual(dist_path, sys_path, (scheme, name))
|
|
+
|
|
def test_ctypes_find_library(self):
|
|
from ctypes.util import find_library
|
|
from ctypes import cdll
|
|
--
|
|
2.32.0
|
|
|