vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / lldap.nix
blobd6c3a865aa04a6841f603893c8ea5fc818bdef74
1 import ./make-test-python.nix ({ ... }: {
2   name = "lldap";
4   nodes.machine = { pkgs, ... }: {
5     services.lldap = {
6       enable = true;
7       settings = {
8         verbose = true;
9         ldap_base_dn = "dc=example,dc=com";
10       };
11     };
12     environment.systemPackages = [ pkgs.openldap ];
13   };
15   testScript = ''
16     machine.wait_for_unit("lldap.service")
17     machine.wait_for_open_port(3890)
18     machine.wait_for_open_port(17170)
20     machine.succeed("curl --location --fail http://localhost:17170/")
22     print(
23       machine.succeed('ldapsearch -H ldap://localhost:3890 -D uid=admin,ou=people,dc=example,dc=com -b "ou=people,dc=example,dc=com" -w password')
24     )
25   '';