trace: warning: config.services.gitea.database.password will be stored as plaintext
        in the Nix store. Use database.passwordFile instead.
(Arguably, this shouldn't be a warning at all. But making it happy is
easier than having a debate on the value of this warning.)
		
	
			
		
			
				
	
	
		
			80 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ system ? builtins.currentSystem,
 | 
						|
  config ? {},
 | 
						|
  pkgs ? import ../.. { inherit system config; }
 | 
						|
}:
 | 
						|
 | 
						|
with import ../lib/testing.nix { inherit system pkgs; };
 | 
						|
with pkgs.lib;
 | 
						|
 | 
						|
{
 | 
						|
  mysql = makeTest {
 | 
						|
    name = "gitea-mysql";
 | 
						|
    meta.maintainers = [ maintainers.aanderse ];
 | 
						|
 | 
						|
    machine =
 | 
						|
      { config, pkgs, ... }:
 | 
						|
      { services.mysql.enable = true;
 | 
						|
        services.mysql.package = pkgs.mariadb;
 | 
						|
        services.mysql.ensureDatabases = [ "gitea" ];
 | 
						|
        services.mysql.ensureUsers = [
 | 
						|
          { name = "gitea";
 | 
						|
            ensurePermissions = { "gitea.*" = "ALL PRIVILEGES"; };
 | 
						|
          }
 | 
						|
        ];
 | 
						|
 | 
						|
        services.gitea.enable = true;
 | 
						|
        services.gitea.database.type = "mysql";
 | 
						|
        services.gitea.database.socket = "/run/mysqld/mysqld.sock";
 | 
						|
      };
 | 
						|
 | 
						|
    testScript = ''
 | 
						|
      startAll;
 | 
						|
 | 
						|
      $machine->waitForUnit('gitea.service');
 | 
						|
      $machine->waitForOpenPort('3000');
 | 
						|
      $machine->succeed("curl --fail http://localhost:3000/");
 | 
						|
    '';
 | 
						|
  };
 | 
						|
 | 
						|
  postgres = makeTest {
 | 
						|
    name = "gitea-postgres";
 | 
						|
    meta.maintainers = [ maintainers.aanderse ];
 | 
						|
 | 
						|
    machine =
 | 
						|
      { config, pkgs, ... }:
 | 
						|
      {
 | 
						|
        services.gitea.enable = true;
 | 
						|
        services.gitea.database.type = "postgres";
 | 
						|
        services.gitea.database.passwordFile = pkgs.writeText "db-password" "secret";
 | 
						|
      };
 | 
						|
 | 
						|
    testScript = ''
 | 
						|
      startAll;
 | 
						|
 | 
						|
      $machine->waitForUnit('gitea.service');
 | 
						|
      $machine->waitForOpenPort('3000');
 | 
						|
      $machine->succeed("curl --fail http://localhost:3000/");
 | 
						|
    '';
 | 
						|
  };
 | 
						|
 | 
						|
  sqlite = makeTest {
 | 
						|
    name = "gitea-sqlite";
 | 
						|
    meta.maintainers = [ maintainers.aanderse ];
 | 
						|
 | 
						|
    machine =
 | 
						|
      { config, pkgs, ... }:
 | 
						|
      { services.gitea.enable = true;
 | 
						|
        services.gitea.disableRegistration = true;
 | 
						|
      };
 | 
						|
 | 
						|
    testScript = ''
 | 
						|
      startAll;
 | 
						|
 | 
						|
      $machine->waitForUnit('gitea.service');
 | 
						|
      $machine->waitForOpenPort('3000');
 | 
						|
      $machine->succeed("curl --fail http://localhost:3000/");
 | 
						|
      $machine->succeed("curl --fail http://localhost:3000/user/sign_up | grep 'Registration is disabled. Please contact your site administrator.'");
 | 
						|
    '';
 | 
						|
  };
 | 
						|
}
 |