You can now run a test in the nixos/tests directory directly using nix-build, e.g. $ nix-build '<nixos/tests/login.nix>' -A test This gets rid of having to add the test to nixos/tests/default.nix. (Of course, you still need to add it to nixos/release.nix if you want Hydra to run the test.)
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
import ./make-test.nix (
 | 
						|
 | 
						|
let
 | 
						|
  replicateUser = "replicate";
 | 
						|
  replicatePassword = "secret";
 | 
						|
in
 | 
						|
 | 
						|
{
 | 
						|
  nodes = {
 | 
						|
    master =
 | 
						|
      { pkgs, config, ... }:
 | 
						|
 | 
						|
      {
 | 
						|
        services.mysql.enable = true;
 | 
						|
        services.mysql.package = pkgs.mysql;
 | 
						|
        services.mysql.replication.role = "master";
 | 
						|
        services.mysql.initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
 | 
						|
        services.mysql.initialScript = pkgs.writeText "initmysql"
 | 
						|
          ''
 | 
						|
            create user '${replicateUser}'@'%' identified by '${replicatePassword}';
 | 
						|
            grant replication slave on *.* to '${replicateUser}'@'%';
 | 
						|
          '';
 | 
						|
        networking.firewall.allowedTCPPorts = [ 3306 ];
 | 
						|
      };
 | 
						|
 | 
						|
    slave1 =
 | 
						|
      { pkgs, config, nodes, ... }:
 | 
						|
 | 
						|
      {
 | 
						|
        services.mysql.enable = true;
 | 
						|
        services.mysql.package = pkgs.mysql;
 | 
						|
        services.mysql.replication.role = "slave";
 | 
						|
        services.mysql.replication.serverId = 2;
 | 
						|
        services.mysql.replication.masterHost = nodes.master.config.networking.hostName;
 | 
						|
        services.mysql.replication.masterUser = replicateUser;
 | 
						|
        services.mysql.replication.masterPassword = replicatePassword;
 | 
						|
      };
 | 
						|
 | 
						|
    slave2 =
 | 
						|
      { pkgs, config, nodes, ... }:
 | 
						|
 | 
						|
      {
 | 
						|
        services.mysql.enable = true;
 | 
						|
        services.mysql.package = pkgs.mysql;
 | 
						|
        services.mysql.replication.role = "slave";
 | 
						|
        services.mysql.replication.serverId = 3;
 | 
						|
        services.mysql.replication.masterHost = nodes.master.config.networking.hostName;
 | 
						|
        services.mysql.replication.masterUser = replicateUser;
 | 
						|
        services.mysql.replication.masterPassword = replicatePassword;
 | 
						|
      };
 | 
						|
  };
 | 
						|
 | 
						|
  testScript = ''
 | 
						|
    startAll;
 | 
						|
 | 
						|
    $master->waitForUnit("mysql");
 | 
						|
    $master->waitForUnit("mysql");
 | 
						|
    $slave2->waitForUnit("mysql");
 | 
						|
    $slave2->sleep(100); # Hopefully this is long enough!!
 | 
						|
    $slave2->succeed("echo 'use testdb; select * from tests' | mysql -u root -N | grep 4");
 | 
						|
  '';
 | 
						|
})
 |