vuls: init at 0.27.0
[NixPkgs.git] / nixos / tests / frigate.nix
blobecbc68d364316250f1fb06075234ad72e53782fa
1 import ./make-test-python.nix ({ pkgs, lib, ...} :
4   name = "frigate";
5   meta.maintainers = with lib.maintainers; [ hexa ];
7   nodes = {
8     machine = {
9       services.frigate = {
10         enable = true;
12         hostname = "localhost";
14         settings = {
15           mqtt.enabled = false;
17           cameras.test = {
18             ffmpeg = {
19               input_args = "-fflags nobuffer -strict experimental -fflags +genpts+discardcorrupt -r 10 -use_wallclock_as_timestamps 1";
20               inputs = [ {
21                 path = "http://127.0.0.1:8080";
22                 roles = [
23                   "record"
24                 ];
25               } ];
26             };
27           };
29           record.enabled = true;
30         };
31       };
33       systemd.services.video-stream = {
34         description = "Start a test stream that frigate can capture";
35         before = [
36           "frigate.service"
37         ];
38         wantedBy = [
39           "multi-user.target"
40         ];
41         serviceConfig = {
42           DynamicUser = true;
43           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";
44           Restart = "always";
45         };
46       };
48       environment.systemPackages = with pkgs; [ httpie ];
49     };
50   };
52   testScript = ''
53     start_all()
55     # wait until frigate is up
56     machine.wait_for_unit("frigate.service")
57     machine.wait_for_open_port(5001)
59     # extract admin password from logs
60     machine.wait_until_succeeds("journalctl -u frigate.service -o cat | grep -q 'Password: '")
61     password = machine.execute("journalctl -u frigate.service -o cat | grep -oP '([a-f0-9]{32})'")[1]
63     # login and store session
64     machine.log(machine.succeed(f"http --check-status --session=frigate post http://localhost/api/login user=admin password={password}"))
66     # make authenticated api requested
67     machine.log(machine.succeed("http --check-status --session=frigate get http://localhost/api/version"))
69     # wait for a recording to appear
70     machine.wait_for_file("/var/cache/frigate/test@*.mp4")
71   '';