mirror of https://github.com/pypa/hatch.git
132 lines
3.8 KiB
Python
132 lines
3.8 KiB
Python
import os
|
|
from hashlib import sha256
|
|
|
|
from hatch.config.constants import ConfigEnvVars
|
|
from hatch.project.core import Project
|
|
from hatchling.utils.constants import DEFAULT_CONFIG_FILE
|
|
|
|
|
|
def test_incompatible_environment(hatch, temp_dir, helpers, build_env_config):
|
|
project_name = 'My.App'
|
|
|
|
with temp_dir.as_cwd():
|
|
result = hatch('new', project_name)
|
|
assert result.exit_code == 0, result.output
|
|
|
|
path = temp_dir / 'my-app'
|
|
data_path = temp_dir / 'data'
|
|
data_path.mkdir()
|
|
|
|
project = Project(path)
|
|
config = dict(project.raw_config)
|
|
config['build-system']['requires'].append('foo')
|
|
config['project']['dynamic'].append('dependencies')
|
|
project.save_config(config)
|
|
helpers.update_project_environment(project, 'hatch-build', {'python': '9000', **build_env_config})
|
|
|
|
with path.as_cwd(env_vars={ConfigEnvVars.DATA: str(data_path)}):
|
|
result = hatch('dep', 'hash')
|
|
|
|
assert result.exit_code == 1, result.output
|
|
assert result.output == helpers.dedent(
|
|
"""
|
|
Environment `hatch-build` is incompatible: cannot locate Python: 9000
|
|
"""
|
|
)
|
|
|
|
|
|
def test_all(hatch, helpers, temp_dir):
|
|
project_name = 'My.App'
|
|
|
|
with temp_dir.as_cwd():
|
|
result = hatch('new', project_name)
|
|
|
|
assert result.exit_code == 0, result.output
|
|
|
|
project_path = temp_dir / 'my-app'
|
|
|
|
project = Project(project_path)
|
|
config = dict(project.raw_config)
|
|
config['project']['dependencies'] = ['Foo', 'bar[ A, b]']
|
|
project.save_config(config)
|
|
helpers.update_project_environment(project, 'default', {'dependencies': ['bAZ >= 0']})
|
|
expected_hash = sha256(b'bar[a,b]baz>=0foo').hexdigest()
|
|
|
|
with project_path.as_cwd():
|
|
result = hatch('dep', 'hash')
|
|
|
|
assert result.exit_code == 0, result.output
|
|
assert result.output == helpers.dedent(
|
|
f"""
|
|
{expected_hash}
|
|
"""
|
|
)
|
|
|
|
|
|
def test_project_only(hatch, helpers, temp_dir):
|
|
project_name = 'My.App'
|
|
|
|
with temp_dir.as_cwd():
|
|
result = hatch('new', project_name)
|
|
|
|
assert result.exit_code == 0, result.output
|
|
|
|
project_path = temp_dir / 'my-app'
|
|
|
|
project = Project(project_path)
|
|
config = dict(project.raw_config)
|
|
config['project']['dependencies'] = ['Foo', 'bar[ A, b]']
|
|
project.save_config(config)
|
|
helpers.update_project_environment(project, 'default', {'dependencies': ['bAZ >= 0']})
|
|
expected_hash = sha256(b'bar[a,b]foo').hexdigest()
|
|
|
|
with project_path.as_cwd():
|
|
result = hatch('dep', 'hash', '-p')
|
|
|
|
assert result.exit_code == 0, result.output
|
|
assert result.output == helpers.dedent(
|
|
f"""
|
|
{expected_hash}
|
|
"""
|
|
)
|
|
|
|
|
|
def test_plugin_dependencies_unmet(hatch, helpers, temp_dir, mock_plugin_installation):
|
|
project_name = 'My.App'
|
|
|
|
with temp_dir.as_cwd():
|
|
result = hatch('new', project_name)
|
|
|
|
assert result.exit_code == 0, result.output
|
|
|
|
project_path = temp_dir / 'my-app'
|
|
|
|
dependency = os.urandom(16).hex()
|
|
(project_path / DEFAULT_CONFIG_FILE).write_text(
|
|
helpers.dedent(
|
|
f"""
|
|
[env]
|
|
requires = ["{dependency}"]
|
|
"""
|
|
)
|
|
)
|
|
|
|
project = Project(project_path)
|
|
config = dict(project.raw_config)
|
|
config['project']['dependencies'] = ['Foo', 'bar[ A, b]']
|
|
project.save_config(config)
|
|
helpers.update_project_environment(project, 'default', {'dependencies': ['bAZ >= 0']})
|
|
expected_hash = sha256(b'bar[a,b]foo').hexdigest()
|
|
|
|
with project_path.as_cwd():
|
|
result = hatch('dep', 'hash', '-p')
|
|
|
|
assert result.exit_code == 0, result.output
|
|
assert result.output == helpers.dedent(
|
|
f"""
|
|
Syncing environment plugin requirements
|
|
{expected_hash}
|
|
"""
|
|
)
|
|
helpers.assert_plugin_installation(mock_plugin_installation, [dependency])
|