mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
281a2401b2
The NixOS manual documents that you can invoke every tests using nix-build path/to/nixos/tests/test.nix which was not the case for openldap since it is not autocallable, but requires pkgs and system as arguments. Usually, make-test-pythons.nix takes care of this if it is imported at the top-level, but since openldap.nix contains multiple tests, this was not the case. This is however easily fixed by: * Adding default values for the pkgs and system arguments based on the definition in make-test-python.nix * Passing pkgs and system explicitly to make-test-python.nix to ensure the pkgs and system values passed from all-tests.nix are used.
131 lines
3.8 KiB
Nix
131 lines
3.8 KiB
Nix
{ pkgs ? (import ../.. { inherit system; config = { }; })
|
|
, system ? builtins.currentSystem
|
|
, ...
|
|
}:
|
|
|
|
let
|
|
dbContents = ''
|
|
dn: dc=example
|
|
objectClass: domain
|
|
dc: example
|
|
|
|
dn: ou=users,dc=example
|
|
objectClass: organizationalUnit
|
|
ou: users
|
|
'';
|
|
testScript = ''
|
|
machine.wait_for_unit("openldap.service")
|
|
machine.succeed(
|
|
'ldapsearch -LLL -D "cn=root,dc=example" -w notapassword -b "dc=example"',
|
|
)
|
|
'';
|
|
in {
|
|
# New-style configuration
|
|
current = import ./make-test-python.nix ({ pkgs, ... }: {
|
|
inherit testScript;
|
|
name = "openldap";
|
|
|
|
machine = { pkgs, ... }: {
|
|
environment.etc."openldap/root_password".text = "notapassword";
|
|
services.openldap = {
|
|
enable = true;
|
|
settings = {
|
|
children = {
|
|
"cn=schema".includes = [
|
|
"${pkgs.openldap}/etc/schema/core.ldif"
|
|
"${pkgs.openldap}/etc/schema/cosine.ldif"
|
|
"${pkgs.openldap}/etc/schema/inetorgperson.ldif"
|
|
"${pkgs.openldap}/etc/schema/nis.ldif"
|
|
];
|
|
"olcDatabase={1}mdb" = {
|
|
# This tests string, base64 and path values, as well as lists of string values
|
|
attrs = {
|
|
objectClass = [ "olcDatabaseConfig" "olcMdbConfig" ];
|
|
olcDatabase = "{1}mdb";
|
|
olcDbDirectory = "/var/db/openldap";
|
|
olcSuffix = "dc=example";
|
|
olcRootDN = {
|
|
# cn=root,dc=example
|
|
base64 = "Y249cm9vdCxkYz1leGFtcGxl";
|
|
};
|
|
olcRootPW = {
|
|
path = "/etc/openldap/root_password";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
declarativeContents."dc=example" = dbContents;
|
|
};
|
|
};
|
|
}) { inherit pkgs system; };
|
|
|
|
# Old-style configuration
|
|
oldOptions = import ./make-test-python.nix ({ pkgs, ... }: {
|
|
inherit testScript;
|
|
name = "openldap";
|
|
|
|
machine = { pkgs, ... }: {
|
|
services.openldap = {
|
|
enable = true;
|
|
logLevel = "stats acl";
|
|
defaultSchemas = true;
|
|
database = "mdb";
|
|
suffix = "dc=example";
|
|
rootdn = "cn=root,dc=example";
|
|
rootpw = "notapassword";
|
|
declarativeContents."dc=example" = dbContents;
|
|
};
|
|
};
|
|
}) { inherit system pkgs; };
|
|
|
|
# Manually managed configDir, for example if dynamic config is essential
|
|
manualConfigDir = import ./make-test-python.nix ({ pkgs, ... }: {
|
|
name = "openldap";
|
|
|
|
machine = { pkgs, ... }: {
|
|
services.openldap = {
|
|
enable = true;
|
|
configDir = "/var/db/slapd.d";
|
|
};
|
|
};
|
|
|
|
testScript = let
|
|
contents = pkgs.writeText "data.ldif" dbContents;
|
|
config = pkgs.writeText "config.ldif" ''
|
|
dn: cn=config
|
|
cn: config
|
|
objectClass: olcGlobal
|
|
olcLogLevel: stats
|
|
olcPidFile: /run/slapd/slapd.pid
|
|
|
|
dn: cn=schema,cn=config
|
|
cn: schema
|
|
objectClass: olcSchemaConfig
|
|
|
|
include: file://${pkgs.openldap}/etc/schema/core.ldif
|
|
include: file://${pkgs.openldap}/etc/schema/cosine.ldif
|
|
include: file://${pkgs.openldap}/etc/schema/inetorgperson.ldif
|
|
|
|
dn: olcDatabase={1}mdb,cn=config
|
|
objectClass: olcDatabaseConfig
|
|
objectClass: olcMdbConfig
|
|
olcDatabase: {1}mdb
|
|
olcDbDirectory: /var/db/openldap
|
|
olcDbIndex: objectClass eq
|
|
olcSuffix: dc=example
|
|
olcRootDN: cn=root,dc=example
|
|
olcRootPW: notapassword
|
|
'';
|
|
in ''
|
|
machine.succeed(
|
|
"mkdir -p /var/db/slapd.d /var/db/openldap",
|
|
"slapadd -F /var/db/slapd.d -n0 -l ${config}",
|
|
"slapadd -F /var/db/slapd.d -n1 -l ${contents}",
|
|
"chown -R openldap:openldap /var/db/slapd.d /var/db/openldap",
|
|
"systemctl restart openldap",
|
|
)
|
|
'' + testScript;
|
|
}) { inherit system pkgs; };
|
|
}
|