nixpkgs/nixos/tests/odoo.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
917 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{
pkgs,
lib,
package ? pkgs.odoo,
...
}:
{
2021-11-02 00:48:47 +00:00
name = "odoo";
meta.maintainers = with lib.maintainers; [ mkg20001 ];
2021-11-02 00:48:47 +00:00
nodes = {
server =
{ ... }:
{
services.nginx = {
enable = true;
recommendedProxySettings = true;
};
services.odoo = {
enable = true;
package = package;
autoInit = true;
autoInitExtraFlags = [ "--without-demo=all" ];
2021-11-02 00:48:47 +00:00
domain = "localhost";
};
2021-11-02 00:48:47 +00:00
};
};
testScript =
{ nodes, ... }:
''
server.wait_for_unit("odoo.service")
server.wait_until_succeeds("curl -s http://localhost:8069/web/database/selector | grep '<title>Odoo</title>'")
server.succeed("curl -s http://localhost/web/database/selector | grep '<title>Odoo</title>'")
'';
}
)