pacemaker  2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
pcmk__procfs_has_pids_true_test.c
Go to the documentation of this file.
1 /*
2  * Copyright 2022 the Pacemaker project contributors
3  *
4  * The version control history for this file may have further details.
5  *
6  * This source code is licensed under the GNU General Public License version 2
7  * or later (GPLv2+) WITHOUT ANY WARRANTY.
8  */
9 
10 #include <crm_internal.h>
11 
13 
14 #include "mock_private.h"
15 
16 #include <unistd.h>
17 #include <string.h>
18 #include <errno.h>
19 
20 static void
21 has_pids(void **state)
22 {
23  char path[PATH_MAX];
24 
25  snprintf(path, PATH_MAX, "/proc/%u/exe", getpid());
26 
27  // Set readlink() errno and link contents (for /proc/PID/exe)
28  pcmk__mock_readlink = true;
29 
30  expect_string(__wrap_readlink, path, path);
31  expect_any(__wrap_readlink, buf);
32  expect_value(__wrap_readlink, bufsize, PATH_MAX - 1);
33  will_return(__wrap_readlink, 0);
34  will_return(__wrap_readlink, "/ok");
35 
36  assert_true(pcmk__procfs_has_pids());
37 
38  pcmk__mock_readlink = false;
39 }
40 
41 PCMK__UNIT_TEST(NULL, NULL, cmocka_unit_test(has_pids))
PCMK__UNIT_TEST(NULL, NULL, cmocka_unit_test(bad_input), cmocka_unit_test(not_found), cmocka_unit_test(find_attrB), cmocka_unit_test(find_attrA_matching))
bool pcmk__mock_readlink
Definition: mock.c:366
bool pcmk__procfs_has_pids(void)
Definition: procfs.c:211
const char * path
Definition: cib.c:28
ssize_t __wrap_readlink(const char *restrict path, char *restrict buf, size_t bufsize)
Definition: mock.c:369