summary refs log tree commit diff
path: root/nixos/tests/home-assistant.nix
blob: 5d7e0ec65e73c2aab8c8e5f8c597392236b53f62 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import ./make-test.nix ({ pkgs, ... }:

let
  configDir = "/var/lib/foobar";

in {
  name = "home-assistant";

  nodes = {
    hass =
      { config, pkgs, ... }:
      {
        services.home-assistant = {
          inherit configDir;
          enable = true;
          config = {
            homeassistant = {
              name = "Home";
              time_zone = "UTC";
              latitude = "0.0";
              longitude = "0.0";
              elevation = 0;
            };
            frontend = { };
            http = { };
          };
        };
      };
  };

  testScript = ''
    startAll;
    $hass->waitForUnit("home-assistant.service");
    
    # Since config is specified using a Nix attribute set,
    # configuration.yaml is a link to the Nix store
    $hass->succeed("test -L ${configDir}/configuration.yaml");

    # Check that Home Assistant's web interface and API can be reached
    $hass->waitForOpenPort(8123);
    $hass->succeed("curl --fail http://localhost:8123/states");
    $hass->succeed("curl --fail http://localhost:8123/api/ | grep 'API running'");

    $hass->fail("cat ${configDir}/home-assistant.log | grep -qF ERROR");
  '';
})