recordbox: 0.8.3 -> 0.9.0 (#367826)
[NixPkgs.git] / nixos / tests / web-servers / static-web-server.nix
blob1c88e70a09578f82524f5359c2230571dce29680
1 import ../make-test-python.nix (
2   { pkgs, lib, ... }:
3   {
4     name = "static-web-server";
5     meta = {
6       maintainers = with lib.maintainers; [ mac-chaffee ];
7     };
9     nodes.machine =
10       { pkgs, ... }:
11       {
12         services.static-web-server = {
13           enable = true;
14           listen = "[::]:8080";
15           root = toString (
16             pkgs.writeTextDir "nixos-test.html" ''
17               <h1>Hello NixOS!</h1>
18             ''
19           );
20           configuration = {
21             general = {
22               directory-listing = true;
23             };
24           };
25         };
26       };
28     testScript = ''
29       machine.start()
30       machine.wait_for_unit("static-web-server.socket")
31       machine.wait_for_open_port(8080)
32       # We don't use wait_until_succeeds() because we're testing socket
33       # activation which better work on the first request
34       response = machine.succeed("curl -fsS localhost:8080")
35       assert "nixos-test.html" in response, "The directory listing page did not include a link to our nixos-test.html file"
36       response = machine.succeed("curl -fsS localhost:8080/nixos-test.html")
37       assert "Hello NixOS!" in response
38       machine.wait_for_unit("static-web-server.service")
39     '';
40   }