mirror of
https://github.com/systemd/systemd.git
synced 2025-01-05 13:18:06 +03:00
Move offline-password.[ch] to shared and add test-offline-passwd
The test binary has two modes: in the default argument-less mode, it just checks that "root" can be resolved. When invoked manually, a root prefix and user/group names can be specified.
This commit is contained in:
parent
7f16ef9fba
commit
3e5d2264b5
@ -301,6 +301,12 @@ tests += [
|
||||
[],
|
||||
[]],
|
||||
|
||||
[['src/test/test-offline-passwd.c',
|
||||
'src/shared/offline-passwd.c',
|
||||
'src/shared/offline-passwd.h'],
|
||||
[],
|
||||
[]],
|
||||
|
||||
[['src/test/test-escape.c'],
|
||||
[],
|
||||
[]],
|
||||
|
85
src/test/test-offline-passwd.c
Normal file
85
src/test/test-offline-passwd.c
Normal file
@ -0,0 +1,85 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||||
|
||||
#include <getopt.h>
|
||||
|
||||
#include "offline-passwd.h"
|
||||
#include "user-util.h"
|
||||
#include "format-util.h"
|
||||
#include "tests.h"
|
||||
|
||||
static char *arg_root = NULL;
|
||||
|
||||
static void test_resolve_one(const char *name) {
|
||||
bool relaxed = name || arg_root;
|
||||
|
||||
if (!name)
|
||||
name = "root";
|
||||
|
||||
log_info("/* %s(\"%s\") */", __func__, name);
|
||||
|
||||
_cleanup_(hashmap_freep) Hashmap *uid_cache = NULL, *gid_cache = NULL;
|
||||
uid_t uid = UID_INVALID;
|
||||
gid_t gid = GID_INVALID;
|
||||
int r;
|
||||
|
||||
r = name_to_uid_offline(arg_root, name, &uid, &uid_cache);
|
||||
log_info_errno(r, "name_to_uid_offline: %s → "UID_FMT": %m", name, uid);
|
||||
assert_se(relaxed || r == 0);
|
||||
|
||||
r = name_to_uid_offline(arg_root, name, &uid, &uid_cache);
|
||||
log_info_errno(r, "name_to_uid_offline: %s → "UID_FMT": %m", name, uid);
|
||||
assert_se(relaxed || r == 0);
|
||||
|
||||
r = name_to_gid_offline(arg_root, name, &gid, &gid_cache);
|
||||
log_info_errno(r, "name_to_gid_offline: %s → "GID_FMT": %m", name, gid);
|
||||
assert_se(relaxed || r == 0);
|
||||
|
||||
r = name_to_gid_offline(arg_root, name, &gid, &gid_cache);
|
||||
log_info_errno(r, "name_to_gid_offline: %s → "GID_FMT": %m", name, gid);
|
||||
assert_se(relaxed || r == 0);
|
||||
}
|
||||
|
||||
static int parse_argv(int argc, char *argv[]) {
|
||||
static const struct option options[] = {
|
||||
{ "root", required_argument, NULL, 'r' },
|
||||
{}
|
||||
};
|
||||
|
||||
int c;
|
||||
|
||||
assert(argc >= 0);
|
||||
assert(argv);
|
||||
|
||||
while ((c = getopt_long(argc, argv, "r:", options, NULL)) >= 0)
|
||||
switch(c) {
|
||||
case 'r':
|
||||
arg_root = optarg;
|
||||
break;
|
||||
|
||||
case '?':
|
||||
return -EINVAL;
|
||||
|
||||
default:
|
||||
assert_not_reached("Unhandled option");
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
int r;
|
||||
|
||||
test_setup_logging(LOG_DEBUG);
|
||||
|
||||
r = parse_argv(argc, argv);
|
||||
if (r < 0)
|
||||
return r;
|
||||
|
||||
if (optind >= argc)
|
||||
test_resolve_one(NULL);
|
||||
else
|
||||
while (optind < argc)
|
||||
test_resolve_one(argv[optind++]);
|
||||
|
||||
return 0;
|
||||
}
|
@ -2,6 +2,6 @@
|
||||
|
||||
systemd_tmpfiles_sources = [
|
||||
'src/tmpfiles/tmpfiles.c',
|
||||
'src/tmpfiles/offline-passwd.c',
|
||||
'src/tmpfiles/offline-passwd.h',
|
||||
'src/shared/offline-passwd.c',
|
||||
'src/shared/offline-passwd.h',
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user