python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / tests / tandoor-recipes.nix
blob54456238fe634197b0ce09046c628673c9c05306
1 import ./make-test-python.nix ({ lib, ... }: {
2   name = "tandoor-recipes";
3   meta.maintainers = with lib.maintainers; [ ambroisie ];
5   nodes.machine = { pkgs, ... }: {
6     # Setup using Postgres
7     services.tandoor-recipes = {
8       enable = true;
10       extraConfig = {
11         DB_ENGINE = "django.db.backends.postgresql";
12         POSTGRES_HOST = "/run/postgresql";
13         POSTGRES_USER = "tandoor_recipes";
14         POSTGRES_DB = "tandoor_recipes";
15       };
16     };
18     services.postgresql = {
19       enable = true;
20       ensureDatabases = [ "tandoor_recipes" ];
21       ensureUsers = [
22         {
23           name = "tandoor_recipes";
24           ensurePermissions."DATABASE tandoor_recipes" = "ALL PRIVILEGES";
25         }
26       ];
27     };
29     systemd.services = {
30       tandoor-recipes = {
31         after = [ "postgresql.service" ];
32       };
33     };
34   };
36   testScript = ''
37     machine.wait_for_unit("tandoor-recipes.service")
39     with subtest("Web interface gets ready"):
40         # Wait until server accepts connections
41         machine.wait_until_succeeds("curl -fs localhost:8080")
42   '';