48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
import ./make-test-python.nix ({ pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  name = "samba";
 | 
						|
 | 
						|
  meta.maintainers = [ pkgs.lib.maintainers.eelco ];
 | 
						|
 | 
						|
  nodes =
 | 
						|
    { client =
 | 
						|
        { pkgs, ... }:
 | 
						|
        { fileSystems = pkgs.lib.mkVMOverride
 | 
						|
            { "/public" = {
 | 
						|
                fsType = "cifs";
 | 
						|
                device = "//server/public";
 | 
						|
                options = [ "guest" ];
 | 
						|
              };
 | 
						|
            };
 | 
						|
        };
 | 
						|
 | 
						|
      server =
 | 
						|
        { ... }:
 | 
						|
        { services.samba.enable = true;
 | 
						|
          services.samba.shares.public =
 | 
						|
            { path = "/public";
 | 
						|
              "read only" = true;
 | 
						|
              browseable = "yes";
 | 
						|
              "guest ok" = "yes";
 | 
						|
              comment = "Public samba share.";
 | 
						|
            };
 | 
						|
          networking.firewall.allowedTCPPorts = [ 139 445 ];
 | 
						|
          networking.firewall.allowedUDPPorts = [ 137 138 ];
 | 
						|
        };
 | 
						|
    };
 | 
						|
 | 
						|
  # client# [    4.542997] mount[777]: sh: systemd-ask-password: command not found
 | 
						|
 | 
						|
  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 ]]")
 | 
						|
    '';
 | 
						|
})
 |