summaryrefslogtreecommitdiffstats
path: root/nixos/tests/samba.nix
blob: b9f2f1384559aabe69ed374a4f7a5eb782f655e7 (plain)
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
47
48
{ lib, ... }:
{
  name = "samba";

  meta.maintainers = [ lib.maintainers.anthonyroussel ];

  nodes = {
    client =
      { ... }:
      {
        virtualisation.fileSystems = {
          "/public" = {
            fsType = "cifs";
            device = "//server/public";
            options = [ "guest" ];
          };
        };
      };

    server =
      { ... }:
      {
        services.samba = {
          enable = true;
          openFirewall = true;
          settings = {
            "public" = {
              "path" = "/public";
              "read only" = true;
              "browseable" = "yes";
              "guest ok" = "yes";
              "comment" = "Public samba share.";
            };
          };
        };
      };
  };

  testScript = ''
    server.start()
    server.wait_for_unit("samba.target")
    server.succeed("mkdir -p /public; echo bar > /public/foo")

    client.start()
    client.wait_for_unit("remote-fs.target")
    client.succeed("[[ $(cat /public/foo) = bar ]]")
  '';
}