about summary refs log tree commit diff
path: root/nixos/tests/your_spotify.nix
blob: a1fa0e459a8e16767636408ff385bdf8d802b862 (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
import ./make-test-python.nix ({pkgs, ...}: {
  name = "your_spotify";
  meta = with pkgs.lib.maintainers; {
    maintainers = [patrickdag];
  };

  nodes.machine = {
    services.your_spotify = {
      enable = true;
      spotifySecretFile = pkgs.writeText "spotifySecretFile" "deadbeef";
      settings = {
        CLIENT_ENDPOINT = "http://localhost";
        API_ENDPOINT = "http://localhost:3000";
        SPOTIFY_PUBLIC = "beefdead";
      };
      enableLocalDB = true;
      nginxVirtualHost = "localhost";
    };
  };

  testScript = ''
    machine.wait_for_unit("your_spotify.service")

    machine.wait_for_open_port(3000)
    machine.wait_for_open_port(80)

    out = machine.succeed("curl --fail -X GET 'http://localhost:3000/'")
    assert "Hello !" in out

    out = machine.succeed("curl --fail -X GET 'http://localhost:80/'")
    assert "<title>Your Spotify</title>" in out
  '';
})