nixos/tests/reposilite: init

uku 3a856acf dfaad222

Changed files
+59 -1
nixos
pkgs
by-name
re
reposilite
+1
nixos/tests/all-tests.nix
···
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 { };
+53
nixos/tests/reposilite.nix
···
+
{ 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 ];
+
}
+5 -1
pkgs/by-name/re/reposilite/package.nix
···
jre_headless,
linkFarm,
makeWrapper,
+
nixosTests,
plugins ? [ ],
}:
let
···
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";