mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
fbef5ab82f
I'm currently not maintaining any packages.
78 lines
1.8 KiB
Nix
78 lines
1.8 KiB
Nix
import ./make-test.nix ({ pkgs, ... }: {
|
|
name = "phabricator";
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
maintainers = [ ];
|
|
};
|
|
|
|
nodes = {
|
|
storage =
|
|
{ ... }:
|
|
{ services.nfs.server.enable = true;
|
|
services.nfs.server.exports = ''
|
|
/repos 192.168.1.0/255.255.255.0(rw,no_root_squash)
|
|
'';
|
|
services.nfs.server.createMountPoints = true;
|
|
};
|
|
|
|
webserver =
|
|
{ pkgs, ... }:
|
|
{ fileSystems = pkgs.lib.mkVMOverride
|
|
[ { mountPoint = "/repos";
|
|
device = "storage:/repos";
|
|
fsType = "nfs";
|
|
}
|
|
];
|
|
networking.firewall.enable = false;
|
|
networking.useDHCP = false;
|
|
|
|
services = {
|
|
httpd = {
|
|
enable = true;
|
|
adminAddr = "root@localhost";
|
|
virtualHosts = [{
|
|
hostName = "phabricator.local";
|
|
extraSubservices = [{serviceType = "phabricator";}];
|
|
}];
|
|
};
|
|
|
|
phd = {
|
|
enable = true;
|
|
};
|
|
|
|
mysql = {
|
|
enable = true;
|
|
package = pkgs.mysql;
|
|
extraOptions = ''
|
|
sql_mode=STRICT_ALL_TABLES
|
|
'';
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.php ];
|
|
};
|
|
|
|
client =
|
|
{ ... }:
|
|
{ imports = [ ./common/x11.nix ];
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
startAll;
|
|
|
|
$client->waitForX;
|
|
|
|
$webserver->waitForUnit("mysql");
|
|
$webserver->waitForUnit("httpd");
|
|
$webserver->execute("cd /nix/store; less >/repos/log1");
|
|
|
|
$client->sleep(30); # loading takes a long time
|
|
$client->execute("konqueror http://webserver/ &");
|
|
$client->sleep(90); # loading takes a long time
|
|
|
|
$client->screenshot("screen");
|
|
'';
|
|
})
|