nixos/tests/pinnwand: init
This commit is contained in:
parent
607a94ce2f
commit
cb50679f0e
@ -268,6 +268,7 @@ in
|
|||||||
pgjwt = handleTest ./pgjwt.nix {};
|
pgjwt = handleTest ./pgjwt.nix {};
|
||||||
pgmanage = handleTest ./pgmanage.nix {};
|
pgmanage = handleTest ./pgmanage.nix {};
|
||||||
php = handleTest ./php {};
|
php = handleTest ./php {};
|
||||||
|
pinnwand = handleTest ./pinnwand.nix {};
|
||||||
plasma5 = handleTest ./plasma5.nix {};
|
plasma5 = handleTest ./plasma5.nix {};
|
||||||
plotinus = handleTest ./plotinus.nix {};
|
plotinus = handleTest ./plotinus.nix {};
|
||||||
podman = handleTestOn ["x86_64-linux"] ./podman.nix {};
|
podman = handleTestOn ["x86_64-linux"] ./podman.nix {};
|
||||||
|
86
nixos/tests/pinnwand.nix
Normal file
86
nixos/tests/pinnwand.nix
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
import ./make-test-python.nix ({ pkgs, ...}:
|
||||||
|
let
|
||||||
|
pythonEnv = pkgs.python3.withPackages (py: with py; [ appdirs toml ]);
|
||||||
|
|
||||||
|
port = 8000;
|
||||||
|
baseUrl = "http://server:${toString port}";
|
||||||
|
|
||||||
|
configureSteck = pkgs.writeScript "configure.py" ''
|
||||||
|
#!${pythonEnv.interpreter}
|
||||||
|
import appdirs
|
||||||
|
import toml
|
||||||
|
import os
|
||||||
|
|
||||||
|
CONFIG = {
|
||||||
|
"base": "${baseUrl}/",
|
||||||
|
"confirm": False,
|
||||||
|
"magic": True,
|
||||||
|
"ignore": True
|
||||||
|
}
|
||||||
|
|
||||||
|
os.makedirs(appdirs.user_config_dir('steck'))
|
||||||
|
with open(os.path.join(appdirs.user_config_dir('steck'), 'steck.toml'), "w") as fd:
|
||||||
|
toml.dump(CONFIG, fd)
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
name = "pinnwand";
|
||||||
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||||||
|
maintainers =[ hexa ];
|
||||||
|
};
|
||||||
|
|
||||||
|
nodes = {
|
||||||
|
server = { config, ... }:
|
||||||
|
{
|
||||||
|
networking.firewall.allowedTCPPorts = [
|
||||||
|
port
|
||||||
|
];
|
||||||
|
|
||||||
|
services.pinnwand = {
|
||||||
|
enable = true;
|
||||||
|
port = port;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
client = { pkgs, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = [ pkgs.steck ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
testScript = ''
|
||||||
|
start_all()
|
||||||
|
|
||||||
|
server.wait_for_unit("pinnwand.service")
|
||||||
|
client.wait_for_unit("network.target")
|
||||||
|
|
||||||
|
# create steck.toml config file
|
||||||
|
client.succeed("${configureSteck}")
|
||||||
|
|
||||||
|
# wait until the server running pinnwand is reachable
|
||||||
|
client.wait_until_succeeds("ping -c1 server")
|
||||||
|
|
||||||
|
# make sure pinnwand is listening
|
||||||
|
server.wait_until_succeeds("ss -lnp | grep ${toString port}")
|
||||||
|
|
||||||
|
# send the contents of /etc/machine-id
|
||||||
|
response = client.succeed("steck paste /etc/machine-id")
|
||||||
|
|
||||||
|
# parse the steck response
|
||||||
|
raw_url = None
|
||||||
|
removal_link = None
|
||||||
|
for line in response.split("\n"):
|
||||||
|
if line.startswith("View link:"):
|
||||||
|
raw_url = f"${baseUrl}/raw/{line.split('/')[-1]}"
|
||||||
|
if line.startswith("Removal link:"):
|
||||||
|
removal_link = line.split(":", 1)[1]
|
||||||
|
|
||||||
|
# check whether paste matches what we sent
|
||||||
|
client.succeed(f"curl {raw_url} > /tmp/machine-id")
|
||||||
|
client.succeed("diff /tmp/machine-id /etc/machine-id")
|
||||||
|
|
||||||
|
# remove paste and check that it's not available any more
|
||||||
|
client.succeed(f"curl {removal_link}")
|
||||||
|
client.fail(f"curl --fail {raw_url}")
|
||||||
|
'';
|
||||||
|
})
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, python3, fetchFromGitHub }:
|
{ lib, python3, fetchFromGitHub, nixosTests }:
|
||||||
|
|
||||||
let
|
let
|
||||||
python = python3.override {
|
python = python3.override {
|
||||||
@ -35,6 +35,8 @@ in with python.pkgs; buildPythonApplication rec {
|
|||||||
$out/bin/pinnwand --help > /dev/null
|
$out/bin/pinnwand --help > /dev/null
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
passthru.tests = nixosTests.pinnwand;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://supakeen.com/project/pinnwand/";
|
homepage = "https://supakeen.com/project/pinnwand/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
@ -19,6 +19,8 @@ python3Packages.buildPythonApplication rec {
|
|||||||
toml
|
toml
|
||||||
];
|
];
|
||||||
|
|
||||||
|
passthru.tests = nixosTests.pinnwand;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/supakeen/steck";
|
homepage = "https://github.com/supakeen/steck";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user