[skip-ci] WIP

This commit is contained in:
Ferran Jovell 2025-02-16 16:59:33 +01:00
parent 67537e5660
commit 5c70bd4d45
No known key found for this signature in database
GPG key ID: FA9B3458F68001AB
2 changed files with 31 additions and 30 deletions

View file

@ -88,8 +88,9 @@ def install_environment(
cmd_output_b(*cmd)
with in_env(prefix, version):
breakpoint()
install = (
'bun', 'install', '--no-progress', '--silent', '--no-save',
'bun', 'install', '--no-progress', '--silent', *additional_dependencies
)
lang_base.setup_cmd(prefix, install)

View file

@ -11,7 +11,7 @@ import pytest
import pre_commit.constants as C
from pre_commit import envcontext
from pre_commit import parse_shebang
from pre_commit.languages import node
from pre_commit.languages import bun
from pre_commit.prefix import Prefix
from pre_commit.store import _make_local_repo
from pre_commit.util import cmd_output
@ -19,7 +19,7 @@ from testing.language_helpers import run_language
from testing.util import xfailif_windows
ACTUAL_GET_DEFAULT_VERSION = node.get_default_version.__wrapped__
ACTUAL_GET_DEFAULT_VERSION = bun.get_default_version.__wrapped__
@pytest.fixture
@ -41,13 +41,13 @@ def find_exe_mck():
@pytest.mark.usefixtures('is_linux')
def test_sets_system_when_node_and_npm_are_available(find_exe_mck):
def test_sets_system_when_bun_and_npm_are_available(find_exe_mck):
find_exe_mck.return_value = '/path/to/exe'
assert ACTUAL_GET_DEFAULT_VERSION() == 'system'
@pytest.mark.usefixtures('is_linux')
def test_uses_default_when_node_and_npm_are_not_available(find_exe_mck):
def test_uses_default_when_bun_and_npm_are_not_available(find_exe_mck):
find_exe_mck.return_value = None
assert ACTUAL_GET_DEFAULT_VERSION() == C.DEFAULT
@ -59,19 +59,19 @@ def test_sets_default_on_windows(find_exe_mck):
@xfailif_windows # pragma: win32 no cover
def test_healthy_system_node(tmpdir):
def test_healthy_system_bun(tmpdir):
tmpdir.join('package.json').write('{"name": "t", "version": "1.0.0"}')
prefix = Prefix(str(tmpdir))
node.install_environment(prefix, 'system', ())
assert node.health_check(prefix, 'system') is None
bun.install_environment(prefix, 'system', ())
assert bun.health_check(prefix, 'system') is None
@xfailif_windows # pragma: win32 no cover
def test_unhealthy_if_system_node_goes_missing(tmpdir):
def test_unhealthy_if_system_bun_goes_missing(tmpdir):
bin_dir = tmpdir.join('bin').ensure_dir()
node_bin = bin_dir.join('node')
node_bin.mksymlinkto(shutil.which('node'))
bun_bin = bin_dir.join('bun')
bun_bin.mksymlinkto(shutil.which('bun'))
prefix_dir = tmpdir.join('prefix').ensure_dir()
prefix_dir.join('package.json').write('{"name": "t", "version": "1.0.0"}')
@ -79,18 +79,18 @@ def test_unhealthy_if_system_node_goes_missing(tmpdir):
path = ('PATH', (str(bin_dir), os.pathsep, envcontext.Var('PATH')))
with envcontext.envcontext((path,)):
prefix = Prefix(str(prefix_dir))
node.install_environment(prefix, 'system', ())
assert node.health_check(prefix, 'system') is None
bun.install_environment(prefix, 'system', ())
assert bun.health_check(prefix, 'system') is None
node_bin.remove()
ret = node.health_check(prefix, 'system')
assert ret == '`node --version` returned 127'
bun_bin.remove()
ret = bun.health_check(prefix, 'system')
assert ret == '`bun --version` returned 127'
@xfailif_windows # pragma: win32 no cover
def test_installs_without_links_outside_env(tmpdir):
tmpdir.join('bin/main.js').ensure().write(
'#!/usr/bin/env node\n'
'#!/usr/bin/env bun\n'
'_ = require("lodash"); console.log("success!")\n',
)
tmpdir.join('package.json').write(
@ -103,50 +103,50 @@ def test_installs_without_links_outside_env(tmpdir):
)
prefix = Prefix(str(tmpdir))
node.install_environment(prefix, 'system', ())
assert node.health_check(prefix, 'system') is None
bun.install_environment(prefix, 'system', ())
assert bun.health_check(prefix, 'system') is None
# this directory shouldn't exist, make sure we succeed without it existing
cmd_output('rm', '-rf', str(tmpdir.join('node_modules')))
with node.in_env(prefix, 'system'):
with bun.in_env(prefix, 'system'):
assert cmd_output('foo')[1] == 'success!\n'
def _make_hello_world(tmp_path):
package_json = '''\
{"name": "t", "version": "0.0.1", "bin": {"node-hello": "./bin/main.js"}}
{"name": "t", "version": "0.0.1", "bin": {"bun-hello": "./bin/main.js"}}
'''
tmp_path.joinpath('package.json').write_text(package_json)
bin_dir = tmp_path.joinpath('bin')
bin_dir.mkdir()
bin_dir.joinpath('main.js').write_text(
'#!/usr/bin/env node\n'
'#!/usr/bin/env bun\n'
'console.log("Hello World");\n',
)
def test_node_hook_system(tmp_path):
def test_bun_hook_system(tmp_path):
_make_hello_world(tmp_path)
ret = run_language(tmp_path, node, 'node-hello')
ret = run_language(tmp_path, bun, 'bun-hello')
assert ret == (0, b'Hello World\n')
def test_node_with_user_config_set(tmp_path):
def test_bun_with_user_config_set(tmp_path):
cfg = tmp_path.joinpath('cfg')
cfg.write_text('cache=/dne\n')
with envcontext.envcontext((('NPM_CONFIG_USERCONFIG', str(cfg)),)):
test_node_hook_system(tmp_path)
test_bun_hook_system(tmp_path)
@pytest.mark.parametrize('version', (C.DEFAULT, '18.14.0'))
def test_node_hook_versions(tmp_path, version):
def test_bun_hook_versions(tmp_path, version):
_make_hello_world(tmp_path)
ret = run_language(tmp_path, node, 'node-hello', version=version)
ret = run_language(tmp_path, bun, 'bun-hello', version=version)
assert ret == (0, b'Hello World\n')
def test_node_additional_deps(tmp_path):
def test_bun_additional_deps(tmp_path):
_make_local_repo(str(tmp_path))
ret, out = run_language(tmp_path, node, 'npm ls -g', deps=('lodash',))
ret, out = run_language(tmp_path, bun, 'bun pm ls', deps=('lodash',))
assert b' lodash@' in out