summaryrefslogtreecommitdiff
path: root/setuptools/tests/namespaces.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-12-19 18:55:41 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-12-19 18:55:41 -0500
commitc44b668424abd77a33bf5e5061b102ddbfbf6cd8 (patch)
tree9994b7cde86cc6070fe6c94132a252a5bc59caf0 /setuptools/tests/namespaces.py
parent460b59f0e68dba17e2465e8dd421bbc14b994d1f (diff)
parent93562cb376a8666fe8672c7c070c4002554ddbf1 (diff)
downloadpython-setuptools-git-c44b668424abd77a33bf5e5061b102ddbfbf6cd8.tar.gz
Merge distutils into main.
Diffstat (limited to 'setuptools/tests/namespaces.py')
-rw-r--r--setuptools/tests/namespaces.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/setuptools/tests/namespaces.py b/setuptools/tests/namespaces.py
new file mode 100644
index 00000000..245cf8ea
--- /dev/null
+++ b/setuptools/tests/namespaces.py
@@ -0,0 +1,40 @@
+import textwrap
+
+
+def build_namespace_package(tmpdir, name):
+ src_dir = tmpdir / name
+ src_dir.mkdir()
+ setup_py = src_dir / 'setup.py'
+ namespace, sep, rest = name.partition('.')
+ script = textwrap.dedent("""
+ import setuptools
+ setuptools.setup(
+ name={name!r},
+ version="1.0",
+ namespace_packages=[{namespace!r}],
+ packages=[{namespace!r}],
+ )
+ """).format(**locals())
+ setup_py.write_text(script, encoding='utf-8')
+ ns_pkg_dir = src_dir / namespace
+ ns_pkg_dir.mkdir()
+ pkg_init = ns_pkg_dir / '__init__.py'
+ tmpl = '__import__("pkg_resources").declare_namespace({namespace!r})'
+ decl = tmpl.format(**locals())
+ pkg_init.write_text(decl, encoding='utf-8')
+ pkg_mod = ns_pkg_dir / (rest + '.py')
+ some_functionality = 'name = {rest!r}'.format(**locals())
+ pkg_mod.write_text(some_functionality, encoding='utf-8')
+ return src_dir
+
+
+def make_site_dir(target):
+ """
+ Add a sitecustomize.py module in target to cause
+ target to be added to site dirs such that .pth files
+ are processed there.
+ """
+ sc = target / 'sitecustomize.py'
+ target_str = str(target)
+ tmpl = '__import__("site").addsitedir({target_str!r})'
+ sc.write_text(tmpl.format(**locals()), encoding='utf-8')