Skip to content

Commit d552ce3

Browse files
committed
Improve passing of CLI args in pyp2conf (closes #56)
1 parent c762cc3 commit d552ce3

File tree

2 files changed

+30
-41
lines changed

2 files changed

+30
-41
lines changed

pyp2spec/pyp2conf.py

+10-18
Original file line numberDiff line numberDiff line change
@@ -99,20 +99,19 @@ def create_package_from_source(
9999

100100

101101
def create_config_contents(
102-
package: str,
103-
version: str | None = None,
104-
session: Session | None = None,
105-
compliant: bool = False,
106-
python_alt_version: str | None = None,
107-
automode: bool = False,
108-
compat: str | None = None,
102+
options: dict[str, Any],
103+
session: Session | None = None
109104
) -> dict:
110-
"""Use `package` and provided kwargs to create the whole config contents.
105+
"""Use `package` and provided options to create the whole config contents.
111106
Return pkg_info dictionary.
112107
"""
113108

109+
package = options.get("package")
110+
version = options.get("version")
111+
compat = options.get("compat")
114112
pkg_info = create_package_from_source(package, version, compat, session)
115113

114+
python_alt_version = options.get("python_alt_version")
116115
pkg_info.python_name = prepend_name_with_python(pkg_info.pypi_name, python_alt_version)
117116

118117
if compat is not None:
@@ -128,7 +127,7 @@ def create_config_contents(
128127
if pkg_info.license is None:
129128
warn("WARNING: No valid license found. Inspect the project manually to find the license")
130129
else:
131-
if compliant:
130+
if options.get("fedora_compliant"):
132131
is_compliant, results = check_compliance(pkg_info.license, session=session)
133132
if not is_compliant:
134133
warn(f"The license '{pkg_info.license}' is not compliant with Fedora")
@@ -144,7 +143,7 @@ def create_config_contents(
144143
inform(f"Assuming build for Python: {python_alt_version}")
145144
pkg_info.python_alt_version = python_alt_version
146145

147-
if automode:
146+
if options.get("automode"):
148147
pkg_info.automode = True
149148

150149
pkg_dict = asdict(pkg_info)
@@ -170,14 +169,7 @@ def save_config(contents: dict, output: str | None = None) -> str:
170169
def create_config(options: dict) -> str:
171170
"""Create and save config file."""
172171

173-
contents = create_config_contents(
174-
options["package"],
175-
version=options["version"],
176-
compliant=options["fedora_compliant"],
177-
python_alt_version=options["python_alt_version"],
178-
automode=options["automode"],
179-
compat=options["compat"]
180-
)
172+
contents = create_config_contents(options)
181173
return save_config(contents, options["config_output"])
182174

183175

tests/test_pyp2conf.py

+20-23
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def test_non_existent_package(betamax_session):
1717
with pytest.raises(PackageNotFoundError):
1818
create_config_contents(
19-
package="definitely-nonexisting-package-name",
19+
{"package": "definitely-nonexisting-package-name"},
2020
session=betamax_session)
2121

2222

@@ -29,8 +29,8 @@ def test_non_existent_package(betamax_session):
2929
def test_automatically_generated_config_is_valid(betamax_parametrized_session, package, version):
3030
"""Run the config rendering in fully automated mode and compare the results"""
3131
config = create_config_contents(
32-
package=package,
33-
version=version,
32+
{"package": package,
33+
"version": version},
3434
session=betamax_parametrized_session,
3535
)
3636

@@ -50,9 +50,9 @@ def test_automatically_generated_config_with_alt_python_is_valid(
5050
):
5151
"""Run the config rendering in fully automated mode and compare the results"""
5252
config = create_config_contents(
53-
package=package,
54-
version=version,
55-
python_alt_version=alt_python,
53+
{"package": package,
54+
"version": version,
55+
"python_alt_version": alt_python},
5656
session=betamax_parametrized_session,
5757
)
5858

@@ -72,9 +72,9 @@ def test_automatically_generated_compat_config_is_valid(
7272
betamax_parametrized_session, package, compat, version
7373
):
7474
config = create_config_contents(
75-
package=package,
76-
version=version,
77-
compat=compat,
75+
{"package": package,
76+
"version": version,
77+
"compat": compat},
7878
session=betamax_parametrized_session,
7979
)
8080

@@ -89,46 +89,43 @@ def test_config_with_customization_is_valid(betamax_session):
8989
This also tests the compliance with Fedora Legal data by making
9090
a request to the remote resource.
9191
"""
92-
package = "aionotion"
9392
config = create_config_contents(
94-
package=package,
95-
version="2.0.3",
96-
automode=True,
97-
compliant=True,
93+
{"package": "aionotion",
94+
"version": "2.0.3",
95+
"automode": True,
96+
"compliant": True},
9897
session=betamax_session,
9998
)
10099

101-
with open(f"tests/test_configs/customized_{package}.conf", "rb") as config_file:
100+
with open(f"tests/test_configs/customized_aionotion.conf", "rb") as config_file:
102101
loaded_contents = tomllib.load(config_file)
103102

104103
assert config == loaded_contents
105104

106105

107106
def test_archful_package(betamax_session):
108107
"""Generate config for numpy which is archful"""
109-
package = "numpy"
110108
config = create_config_contents(
111-
package=package,
112-
version="1.25.2",
113-
automode=True,
109+
{"package": "numpy",
110+
"version": "1.25.2",
111+
"automode": True},
114112
session=betamax_session,
115113
)
116114

117-
with open(f"tests/test_configs/default_python-{package}.conf", "rb") as config_file:
115+
with open(f"tests/test_configs/default_python-numpy.conf", "rb") as config_file:
118116
loaded_contents = tomllib.load(config_file)
119117

120118
assert config["archful"] == loaded_contents["archful"]
121119
assert config == loaded_contents
122120

123121

124122
def test_package_with_extras(betamax_session):
125-
package = "sphinx"
126123
config = create_config_contents(
127-
package=package,
124+
{"package": "sphinx"},
128125
session=betamax_session,
129126
)
130127

131-
with open(f"tests/test_configs/customized_python-{package}.conf", "rb") as config_file:
128+
with open(f"tests/test_configs/customized_python-sphinx.conf", "rb") as config_file:
132129
loaded_contents = tomllib.load(config_file)
133130

134131
assert config["extras"] == loaded_contents["extras"]

0 commit comments

Comments
 (0)