nixos/tests/reposilite: init

This commit is contained in:
uku 2025-02-12 22:23:15 +01:00
parent dfaad22261
commit 3a856acfc9
No known key found for this signature in database
3 changed files with 59 additions and 1 deletions

View file

@ -1123,6 +1123,7 @@ in
redmine = handleTestOn [ "x86_64-linux" "aarch64-linux" ] ./redmine.nix { };
renovate = handleTest ./renovate.nix { };
replace-dependencies = handleTest ./replace-dependencies { };
reposilite = runTest ./reposilite.nix;
restartByActivationScript = handleTest ./restart-by-activation-script.nix { };
restic-rest-server = handleTest ./restic-rest-server.nix { };
restic = handleTest ./restic.nix { };

View file

@ -0,0 +1,53 @@
{ lib, ... }:
{
name = "reposilite";
nodes = {
machine =
{ pkgs, ... }:
{
services = {
mysql = {
enable = true;
package = pkgs.mariadb;
ensureDatabases = [ "reposilite" ];
initialScript = pkgs.writeText "reposilite-test-db-init" ''
CREATE USER 'reposilite'@'localhost' IDENTIFIED BY 'ReposiliteDBPass';
GRANT ALL PRIVILEGES ON reposilite.* TO 'reposilite'@'localhost';
FLUSH PRIVILEGES;
'';
};
reposilite = {
enable = true;
plugins = with pkgs.reposilitePlugins; [
checksum
groovy
];
extraArgs = [
"--token"
"test:SuperSecretTestToken"
];
database = {
type = "mariadb";
passwordFile = "/run/reposiliteDbPass";
};
settings.port = 8080;
};
};
};
};
testScript = ''
machine.start()
machine.execute("echo \"ReposiliteDBPass\" > /run/reposiliteDbPass && chmod 600 /run/reposiliteDbPass && chown reposilite:reposilite /run/reposiliteDbPass")
machine.wait_for_unit("reposilite.service")
machine.wait_for_open_port(8080)
machine.fail("curl -Sf localhost:8080/api/auth/me")
machine.succeed("curl -Sfu test:SuperSecretTestToken localhost:8080/api/auth/me")
'';
meta.maintainers = [ lib.maintainers.uku3lig ];
}

View file

@ -5,6 +5,7 @@
jre_headless,
linkFarm,
makeWrapper,
nixosTests,
plugins ? [ ],
}:
let
@ -41,7 +42,10 @@ stdenv.mkDerivation (finalAttrs: {
runHook postInstall
'';
passthru.updateScript = ./update.sh;
passthru = {
tests = nixosTests.reposilite;
updateScript = ./update.sh;
};
meta = {
description = "Lightweight and easy-to-use repository management software dedicated for the Maven based artifacts in the JVM ecosystem";