nixos/pingvin-share: add nixos test

This commit is contained in:
RatCornu 2024-02-09 20:06:25 +01:00
parent 924437f5de
commit 712a04c693
No known key found for this signature in database
GPG Key ID: B3BE02E379E6E8E2
4 changed files with 34 additions and 17 deletions

View File

@ -763,6 +763,7 @@ in {
php83 = handleTest ./php { php = pkgs.php83; };
phylactery = handleTest ./web-apps/phylactery.nix {};
pict-rs = handleTest ./pict-rs.nix {};
pingvin-share = handleTest ./pingvin-share.nix {} ;
pinnwand = handleTest ./pinnwand.nix {};
plantuml-server = handleTest ./plantuml-server.nix {};
plasma-bigscreen = handleTest ./plasma-bigscreen.nix {};

View File

@ -1,20 +1,26 @@
import ./make-test-python.nix ({ lib, pkgs, ... }: {
name = "pingvin-share";
meta.maintainers = with lib.maintainers; [ ratcornu ];
import ./make-test-python.nix (
{ lib, ... }:
{
name = "pingvin-share";
meta.maintainers = with lib.maintainers; [ ratcornu ];
nodes.machine = { pkgs, ... }: {
services.pingvin-share = {
enable = true;
nodes.machine =
{ ... }:
{
services.pingvin-share = {
enable = true;
backend.port = 9010;
frontend.port = 9011;
};
};
backend.port = 9010;
frontend.port = 9011;
};
};
testScript = ''
machine.wait_for_unit("pingvin-share-frontend.service")
machine.wait_for_open_port(9011)
machine.succeed("curl --fail http://127.0.0.1:9010/")
machine.succeed("curl --fail http://127.0.0.1:9011/")
'';
})
testScript = ''
machine.wait_for_unit("pingvin-share-frontend.service")
machine.wait_for_open_port(9010)
machine.wait_for_open_port(9011)
machine.succeed("curl --fail http://127.0.0.1:9010/api/configs")
machine.succeed("curl --fail http://127.0.0.1:9011/")
'';
}
)

View File

@ -6,6 +6,7 @@
nodePackages,
src,
version,
nixosTests,
}:
buildNpmPackage {
@ -34,6 +35,10 @@ buildNpmPackage {
makeCacheWritable = true;
npmFlags = [ "--legacy-peer-deps" ];
passthru.tests = {
pingvin-share = nixosTests.pingvin-share;
};
meta = with lib; {
description = "Backend of pingvin-share, a self-hosted file sharing platform";
homepage = "https://github.com/stonith404/pingvin-share";

View File

@ -5,6 +5,7 @@
pkg-config,
src,
version,
nixosTests,
}:
buildNpmPackage {
@ -26,6 +27,10 @@ buildNpmPackage {
makeCacheWritable = true;
npmFlags = [ "--legacy-peer-deps" ];
passthru.tests = {
pingvin-share = nixosTests.pingvin-share;
};
meta = with lib; {
description = "Frontend of pingvin-share, a self-hosted file sharing platform";
homepage = "https://github.com/stonith404/pingvin-share";