nixpkgs/nixos/tests/wordpress.nix

58 lines
1.5 KiB
Nix
Raw Normal View History

2019-11-23 22:54:06 +00:00
import ./make-test-python.nix ({ pkgs, ... }:
2016-09-26 22:06:56 +00:00
{
name = "wordpress";
meta = with pkgs.lib.maintainers; {
maintainers = [
flokli
grahamc # under duress!
mmilata
];
2016-09-26 22:06:56 +00:00
};
machine =
{ ... }:
{ services.httpd.adminAddr = "webmaster@site.local";
services.httpd.logPerVirtualHost = true;
services.wordpress."site1.local" = {
database.tablePrefix = "site1_";
};
2016-09-26 22:06:56 +00:00
services.wordpress."site2.local" = {
database.tablePrefix = "site2_";
};
networking.hosts."127.0.0.1" = [ "site1.local" "site2.local" ];
};
2016-09-26 22:06:56 +00:00
testScript = ''
2019-11-23 22:54:06 +00:00
import re
2016-09-26 22:06:56 +00:00
2019-11-23 22:54:06 +00:00
start_all()
2016-09-26 22:06:56 +00:00
2019-11-23 22:54:06 +00:00
machine.wait_for_unit("httpd")
2019-11-23 22:54:06 +00:00
machine.wait_for_unit("phpfpm-wordpress-site1.local")
machine.wait_for_unit("phpfpm-wordpress-site2.local")
site_names = ["site1.local", "site2.local"]
with subtest("website returns welcome screen"):
for site_name in site_names:
2020-09-16 15:52:42 +00:00
assert "Welcome to the famous" in machine.succeed(f"curl -fL {site_name}")
2016-09-26 22:06:56 +00:00
2019-11-23 22:54:06 +00:00
with subtest("wordpress-init went through"):
for site_name in site_names:
info = machine.get_unit_info(f"wordpress-init-{site_name}")
2019-11-24 23:01:06 +00:00
assert info["Result"] == "success"
2019-11-23 22:54:06 +00:00
with subtest("secret keys are set"):
2019-11-24 23:01:06 +00:00
pattern = re.compile(r"^define.*NONCE_SALT.{64,};$", re.MULTILINE)
2019-11-23 22:54:06 +00:00
for site_name in site_names:
2019-11-24 23:01:06 +00:00
assert pattern.search(
2019-11-23 22:54:06 +00:00
machine.succeed(f"cat /var/lib/wordpress/{site_name}/secret-keys.php")
)
'';
2016-09-26 22:06:56 +00:00
})