nixosTests/frigate: convert to runTest

Part of #386873
This commit is contained in:
Martin Weinelt 2025-03-04 08:04:42 +01:00
parent 5c3df8025f
commit 1faec56024
No known key found for this signature in database
GPG key ID: 87C1E9888F856759
2 changed files with 64 additions and 62 deletions

View file

@ -410,7 +410,7 @@ in {
freeswitch = handleTest ./freeswitch.nix {};
freetube = discoverTests (import ./freetube.nix);
freshrss = handleTest ./freshrss {};
frigate = handleTest ./frigate.nix {};
frigate = runTest ./frigate.nix;
frp = handleTest ./frp.nix {};
frr = handleTest ./frr.nix {};
fsck = handleTest ./fsck.nix {};

View file

@ -1,79 +1,81 @@
import ./make-test-python.nix (
{ pkgs, lib, ... }:
{
pkgs,
lib,
...
}:
{
name = "frigate";
meta.maintainers = with lib.maintainers; [ hexa ];
{
name = "frigate";
meta = { inherit (pkgs.frigate.meta) maintainers; };
nodes = {
machine = {
services.frigate = {
enable = true;
nodes = {
machine = {
services.frigate = {
enable = true;
hostname = "localhost";
hostname = "localhost";
settings = {
mqtt.enabled = false;
settings = {
mqtt.enabled = false;
cameras.test = {
ffmpeg = {
input_args = "-fflags nobuffer -strict experimental -fflags +genpts+discardcorrupt -r 10 -use_wallclock_as_timestamps 1";
inputs = [
{
path = "http://127.0.0.1:8080";
roles = [
"record"
];
}
];
};
cameras.test = {
ffmpeg = {
input_args = "-fflags nobuffer -strict experimental -fflags +genpts+discardcorrupt -r 10 -use_wallclock_as_timestamps 1";
inputs = [
{
path = "http://127.0.0.1:8080";
roles = [
"record"
];
}
];
};
record.enabled = true;
};
};
systemd.services.video-stream = {
description = "Start a test stream that frigate can capture";
before = [
"frigate.service"
];
wantedBy = [
"multi-user.target"
];
serviceConfig = {
DynamicUser = true;
ExecStart = "${lib.getExe pkgs.ffmpeg-headless} -re -f lavfi -i smptebars=size=1280x720:rate=5 -f mpegts -listen 1 http://0.0.0.0:8080";
Restart = "always";
};
record.enabled = true;
};
environment.systemPackages = with pkgs; [ httpie ];
};
systemd.services.video-stream = {
description = "Start a test stream that frigate can capture";
before = [
"frigate.service"
];
wantedBy = [
"multi-user.target"
];
serviceConfig = {
DynamicUser = true;
ExecStart = "${lib.getExe pkgs.ffmpeg-headless} -re -f lavfi -i smptebars=size=1280x720:rate=5 -f mpegts -listen 1 http://0.0.0.0:8080";
Restart = "always";
};
};
environment.systemPackages = with pkgs; [ httpie ];
};
};
testScript = ''
start_all()
testScript = ''
start_all()
# wait until frigate is up
machine.wait_for_unit("frigate.service")
machine.wait_for_open_port(5001)
# wait until frigate is up
machine.wait_for_unit("frigate.service")
machine.wait_for_open_port(5001)
# extract admin password from logs
machine.wait_until_succeeds("journalctl -u frigate.service -o cat | grep -q 'Password: '")
password = machine.execute("journalctl -u frigate.service -o cat | grep -oP '([a-f0-9]{32})'")[1]
# extract admin password from logs
machine.wait_until_succeeds("journalctl -u frigate.service -o cat | grep -q 'Password: '")
password = machine.execute("journalctl -u frigate.service -o cat | grep -oP '([a-f0-9]{32})'")[1]
# login and store session
machine.log(machine.succeed(f"http --check-status --session=frigate post http://localhost/api/login user=admin password={password}"))
# login and store session
machine.log(machine.succeed(f"http --check-status --session=frigate post http://localhost/api/login user=admin password={password}"))
# make authenticated api request
machine.log(machine.succeed("http --check-status --session=frigate get http://localhost/api/version"))
# make authenticated api request
machine.log(machine.succeed("http --check-status --session=frigate get http://localhost/api/version"))
# make unauthenticated api request
machine.log(machine.succeed("http --check-status get http://localhost:5000/api/version"))
# make unauthenticated api request
machine.log(machine.succeed("http --check-status get http://localhost:5000/api/version"))
# wait for a recording to appear
machine.wait_for_file("/var/cache/frigate/test@*.mp4")
'';
}
)
# wait for a recording to appear
machine.wait_for_file("/var/cache/frigate/test@*.mp4")
'';
}