/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
_distutils
/
tests
/
/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_distutils/tests
mkdir
upload
Name
Size
Mode
Actions
compat/
-
0755
rm
__pycache__/
-
0755
rm
support.py
4099
0644
edit
dl
rm
test_archive_util.py
11441
0644
edit
dl
rm
test_bdist.py
1396
0644
edit
dl
rm
test_bdist_dumb.py
2247
0644
edit
dl
rm
test_bdist_rpm.py
3932
0644
edit
dl
rm
test_build.py
1742
0644
edit
dl
rm
test_build_clib.py
4331
0644
edit
dl
rm
test_build_ext.py
22545
0644
edit
dl
rm
test_build_py.py
6882
0644
edit
dl
rm
test_build_scripts.py
2880
0644
edit
dl
rm
test_check.py
6226
0644
edit
dl
rm
test_clean.py
1240
0644
edit
dl
rm
test_cmd.py
3254
0644
edit
dl
rm
test_config_cmd.py
2664
0644
edit
dl
rm
test_core.py
3829
0644
edit
dl
rm
test_dir_util.py
4500
0644
edit
dl
rm
test_dist.py
18793
0644
edit
dl
rm
test_extension.py
3670
0644
edit
dl
rm
test_filelist.py
10766
0644
edit
dl
rm
test_file_util.py
3522
0644
edit
dl
rm
test_install.py
8618
0644
edit
dl
rm
test_install_data.py
2464
0644
edit
dl
rm
test_install_headers.py
936
0644
edit
dl
rm
test_install_lib.py
3612
0644
edit
dl
rm
test_install_scripts.py
1600
0644
edit
dl
rm
test_log.py
323
0644
edit
dl
rm
test_modified.py
4221
0644
edit
dl
rm
test_sdist.py
15062
0644
edit
dl
rm
test_spawn.py
4803
0644
edit
dl
rm
test_sysconfig.py
11986
0644
edit
dl
rm
test_text_file.py
3460
0644
edit
dl
rm
test_util.py
7988
0644
edit
dl
rm
test_version.py
2750
0644
edit
dl
rm
test_versionpredicate.py
0
0644
edit
dl
rm
unix_compat.py
386
0644
edit
dl
rm
__init__.py
1485
0644
edit
dl
rm
Edit:
/opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_distutils/tests/test_cmd.py
(3254B)
"""Tests for distutils.cmd.""" import os from distutils import debug from distutils.cmd import Command from distutils.dist import Distribution from distutils.errors import DistutilsOptionError import pytest class MyCmd(Command): def initialize_options(self): pass @pytest.fixture def cmd(request): return MyCmd(Distribution()) class TestCommand: def test_ensure_string_list(self, cmd): cmd.not_string_list = ['one', 2, 'three'] cmd.yes_string_list = ['one', 'two', 'three'] cmd.not_string_list2 = object() cmd.yes_string_list2 = 'ok' cmd.ensure_string_list('yes_string_list') cmd.ensure_string_list('yes_string_list2') with pytest.raises(DistutilsOptionError): cmd.ensure_string_list('not_string_list') with pytest.raises(DistutilsOptionError): cmd.ensure_string_list('not_string_list2') cmd.option1 = 'ok,dok' cmd.ensure_string_list('option1') assert cmd.option1 == ['ok', 'dok'] cmd.option2 = ['xxx', 'www'] cmd.ensure_string_list('option2') cmd.option3 = ['ok', 2] with pytest.raises(DistutilsOptionError): cmd.ensure_string_list('option3') def test_make_file(self, cmd): # making sure it raises when infiles is not a string or a list/tuple with pytest.raises(TypeError): cmd.make_file(infiles=True, outfile='', func='func', args=()) # making sure execute gets called properly def _execute(func, args, exec_msg, level): assert exec_msg == 'generating out from in' cmd.force = True cmd.execute = _execute cmd.make_file(infiles='in', outfile='out', func='func', args=()) def test_dump_options(self, cmd): msgs = [] def _announce(msg, level): msgs.append(msg) cmd.announce = _announce cmd.option1 = 1 cmd.option2 = 1 cmd.user_options = [('option1', '', ''), ('option2', '', '')] cmd.dump_options() wanted = ["command options for 'MyCmd':", ' option1 = 1', ' option2 = 1'] assert msgs == wanted def test_ensure_string(self, cmd): cmd.option1 = 'ok' cmd.ensure_string('option1') cmd.option2 = None cmd.ensure_string('option2', 'xxx') assert hasattr(cmd, 'option2') cmd.option3 = 1 with pytest.raises(DistutilsOptionError): cmd.ensure_string('option3') def test_ensure_filename(self, cmd): cmd.option1 = __file__ cmd.ensure_filename('option1') cmd.option2 = 'xxx' with pytest.raises(DistutilsOptionError): cmd.ensure_filename('option2') def test_ensure_dirname(self, cmd): cmd.option1 = os.path.dirname(__file__) or os.curdir cmd.ensure_dirname('option1') cmd.option2 = 'xxx' with pytest.raises(DistutilsOptionError): cmd.ensure_dirname('option2') def test_debug_print(self, cmd, capsys, monkeypatch): cmd.debug_print('xxx') assert capsys.readouterr().out == '' monkeypatch.setattr(debug, 'DEBUG', True) cmd.debug_print('xxx') assert capsys.readouterr().out == 'xxx\n'
Save
cmd:
run