mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
2d8626bf0a
This allows running cgit instances using dedicated users instead of root. This is now set to "cgit" by default.
73 lines
1.9 KiB
Nix
73 lines
1.9 KiB
Nix
import ./make-test-python.nix ({ pkgs, ... }:
|
|
let
|
|
robotsTxt = pkgs.writeText "cgit-robots.txt" ''
|
|
User-agent: *
|
|
Disallow: /
|
|
'';
|
|
in {
|
|
name = "cgit";
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ schnusch ];
|
|
};
|
|
|
|
nodes = {
|
|
server = { ... }: {
|
|
services.cgit."localhost" = {
|
|
enable = true;
|
|
package = pkgs.cgit.overrideAttrs ({ postInstall, ... }: {
|
|
postInstall = ''
|
|
${postInstall}
|
|
cp ${robotsTxt} "$out/cgit/robots.txt"
|
|
'';
|
|
});
|
|
nginx.location = "/(c)git/";
|
|
repos = {
|
|
some-repo = {
|
|
path = "/tmp/git/some-repo";
|
|
desc = "some-repo description";
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.git ];
|
|
};
|
|
};
|
|
|
|
testScript = { nodes, ... }: ''
|
|
start_all()
|
|
|
|
server.wait_for_unit("nginx.service")
|
|
server.wait_for_unit("network.target")
|
|
server.wait_for_open_port(80)
|
|
|
|
server.succeed("curl -fsS http://localhost/%28c%29git/cgit.css")
|
|
|
|
server.succeed("curl -fsS http://localhost/%28c%29git/robots.txt | diff -u - ${robotsTxt}")
|
|
|
|
server.succeed(
|
|
"curl -fsS http://localhost/%28c%29git/ | grep -F 'some-repo description'"
|
|
)
|
|
|
|
server.fail("curl -fsS http://localhost/robots.txt")
|
|
|
|
server.succeed("sudo -u cgit ${pkgs.writeShellScript "setup-cgit-test-repo" ''
|
|
set -e
|
|
git init --bare -b master /tmp/git/some-repo
|
|
git init -b master reference
|
|
cd reference
|
|
git remote add origin /tmp/git/some-repo
|
|
date > date.txt
|
|
git add date.txt
|
|
git -c user.name=test -c user.email=test@localhost commit -m 'add date'
|
|
git push -u origin master
|
|
''}")
|
|
|
|
server.succeed(
|
|
"curl -fsS 'http://localhost/%28c%29git/some-repo/plain/date.txt?id=master' | diff -u reference/date.txt -"
|
|
)
|
|
|
|
server.succeed(
|
|
"git clone http://localhost/%28c%29git/some-repo && diff -u reference/date.txt some-repo/date.txt"
|
|
)
|
|
'';
|
|
})
|