Merge pull request 'cli: use nix_shell also in ssh.py' (#25) from zerotier into main
Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/25
This commit is contained in:
@@ -1 +1,2 @@
|
||||
use nix
|
||||
# Because we depend on nixpkgs sources, uploading to builders takes a long time
|
||||
use flake .#clan --builders ''
|
||||
|
||||
@@ -1,10 +1,9 @@
|
||||
import os
|
||||
|
||||
CLAN_NIXPKGS = os.environ.get("CLAN_NIXPKGS")
|
||||
|
||||
|
||||
def nix_shell(packages: list[str], cmd: list[str]) -> list[str]:
|
||||
nixpkgs = os.environ.get("CLAN_NIXPKGS")
|
||||
# in unittest we will have all binaries provided
|
||||
if CLAN_NIXPKGS is None:
|
||||
if nixpkgs is None:
|
||||
return cmd
|
||||
return ["nix", "shell", "-f", CLAN_NIXPKGS] + packages + ["-c"] + cmd
|
||||
return ["nix", "shell", "-f", nixpkgs] + packages + ["-c"] + cmd
|
||||
|
||||
@@ -3,6 +3,8 @@ import json
|
||||
import subprocess
|
||||
from typing import Optional
|
||||
|
||||
from .nix import nix_shell
|
||||
|
||||
|
||||
def ssh(
|
||||
host: str,
|
||||
@@ -10,15 +12,10 @@ def ssh(
|
||||
password: Optional[str] = None,
|
||||
ssh_args: list[str] = [],
|
||||
) -> None:
|
||||
nix_shell_args = []
|
||||
packages = ["tor", "openssh"]
|
||||
password_args = []
|
||||
if password:
|
||||
nix_shell_args = [
|
||||
"nix",
|
||||
"shell",
|
||||
"nixpkgs#sshpass",
|
||||
"-c",
|
||||
]
|
||||
packages.append("sshpass")
|
||||
password_args = [
|
||||
"sshpass",
|
||||
"-p",
|
||||
@@ -32,23 +29,22 @@ def ssh(
|
||||
"StrictHostKeyChecking=no",
|
||||
f"{user}@{host}",
|
||||
]
|
||||
cmd = nix_shell_args + ["torify"] + password_args + _ssh_args
|
||||
cmd = nix_shell(packages, ["torify"] + password_args + _ssh_args)
|
||||
subprocess.run(cmd)
|
||||
|
||||
|
||||
def qrcode_scan(pictureFile: str) -> str:
|
||||
return (
|
||||
subprocess.run(
|
||||
nix_shell(
|
||||
["zbar"],
|
||||
[
|
||||
"nix",
|
||||
"shell",
|
||||
"nixpkgs#zbar",
|
||||
"-c",
|
||||
"zbarimg",
|
||||
"--quiet",
|
||||
"--raw",
|
||||
pictureFile,
|
||||
],
|
||||
),
|
||||
stdout=subprocess.PIPE,
|
||||
check=True,
|
||||
)
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{ pkgs ? import <nixpkgs> { }
|
||||
, lib ? pkgs.lib
|
||||
, python3 ? pkgs.python3
|
||||
, ruff ? pkgs.ruff
|
||||
, runCommand ? pkgs.runCommand
|
||||
, installShellFiles ? pkgs.installShellFiles
|
||||
, zerotierone ? pkgs.zerotierone
|
||||
, bubblewrap ? pkgs.bubblewrap
|
||||
{ pkgs
|
||||
, lib
|
||||
, python3
|
||||
, ruff
|
||||
, runCommand
|
||||
, installShellFiles
|
||||
, zerotierone
|
||||
, bubblewrap
|
||||
}:
|
||||
let
|
||||
pyproject = builtins.fromTOML (builtins.readFile ./pyproject.toml);
|
||||
|
||||
@@ -4,9 +4,11 @@
|
||||
pyproject = builtins.fromTOML (builtins.readFile ./pyproject.toml);
|
||||
name = pyproject.project.name;
|
||||
package = pkgs.callPackage ./default.nix { };
|
||||
shell = pkgs.callPackage ./shell.nix { };
|
||||
in
|
||||
{
|
||||
packages.${name} = package;
|
||||
devShells.${name} = shell;
|
||||
packages.default = package;
|
||||
checks = package.tests;
|
||||
};
|
||||
|
||||
@@ -1,13 +1,7 @@
|
||||
{ pkgs ? import <nixpkgs> { }
|
||||
,
|
||||
}:
|
||||
{ pkgs }:
|
||||
let
|
||||
lib = pkgs.lib;
|
||||
python3 = pkgs.python3;
|
||||
package = import ./default.nix {
|
||||
inherit lib python3;
|
||||
};
|
||||
pythonWithDeps = python3.withPackages (
|
||||
package = pkgs.callPackage ./default.nix { };
|
||||
pythonWithDeps = pkgs.python3.withPackages (
|
||||
ps:
|
||||
package.propagatedBuildInputs
|
||||
++ package.devDependencies
|
||||
@@ -18,7 +12,8 @@ let
|
||||
checkScript = pkgs.writeScriptBin "check" ''
|
||||
nix build -f . tests -L "$@"
|
||||
'';
|
||||
devShell = pkgs.mkShell {
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = [
|
||||
pkgs.ruff
|
||||
pythonWithDeps
|
||||
@@ -51,6 +46,4 @@ let
|
||||
register-python-argcomplete --shell fish clan > $tmp_path/share/fish/vendor_completions.d/clan.fish
|
||||
register-python-argcomplete --shell bash clan > $tmp_path/share/bash-completion/completions/clan
|
||||
'';
|
||||
};
|
||||
in
|
||||
devShell
|
||||
}
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
import os
|
||||
import sys
|
||||
from typing import Union
|
||||
from contextlib import contextmanager
|
||||
from typing import Iterator, Union
|
||||
|
||||
import pytest
|
||||
import pytest_subprocess.fake_process
|
||||
@@ -18,11 +20,30 @@ def test_no_args(
|
||||
assert captured.err.startswith("usage:")
|
||||
|
||||
|
||||
@contextmanager
|
||||
def mock_env(**environ: str) -> Iterator[None]:
|
||||
original_environ = dict(os.environ)
|
||||
os.environ.update(environ)
|
||||
try:
|
||||
yield
|
||||
finally:
|
||||
os.environ.clear()
|
||||
os.environ.update(original_environ)
|
||||
|
||||
|
||||
# using fp fixture from pytest-subprocess
|
||||
def test_ssh_no_pass(fp: pytest_subprocess.fake_process.FakeProcess) -> None:
|
||||
with mock_env(CLAN_NIXPKGS="/mocked-nixpkgs"):
|
||||
host = "somehost"
|
||||
user = "user"
|
||||
cmd: list[Union[str, utils.Any]] = [
|
||||
"nix",
|
||||
"shell",
|
||||
"-f",
|
||||
"/mocked-nixpkgs",
|
||||
"tor",
|
||||
"openssh",
|
||||
"-c",
|
||||
"torify",
|
||||
"ssh",
|
||||
"-o",
|
||||
@@ -41,13 +62,21 @@ def test_ssh_no_pass(fp: pytest_subprocess.fake_process.FakeProcess) -> None:
|
||||
|
||||
|
||||
def test_ssh_with_pass(fp: pytest_subprocess.fake_process.FakeProcess) -> None:
|
||||
with mock_env(CLAN_NIXPKGS="/mocked-nixpkgs"):
|
||||
host = "somehost"
|
||||
user = "user"
|
||||
cmd: list[Union[str, utils.Any]] = [
|
||||
"nix",
|
||||
"shell",
|
||||
"nixpkgs#sshpass",
|
||||
"-f",
|
||||
"/mocked-nixpkgs",
|
||||
"tor",
|
||||
"openssh",
|
||||
"sshpass",
|
||||
"-c",
|
||||
"torify",
|
||||
"sshpass",
|
||||
"-p",
|
||||
fp.any(),
|
||||
]
|
||||
fp.register(cmd)
|
||||
|
||||
Reference in New Issue
Block a user