]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/tap/process.h
Change CrackLib tests for system CrackLib
[kerberos/krb5-strength.git] / tests / tap / process.h
1 /*
2  * Utility functions for tests that use subprocesses.
3  *
4  * The canonical version of this file is maintained in the rra-c-util package,
5  * which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
6  *
7  * Written by Russ Allbery <eagle@eyrie.org>
8  * Copyright 2009, 2010, 2013
9  *     The Board of Trustees of the Leland Stanford Junior University
10  *
11  * Permission is hereby granted, free of charge, to any person obtaining a
12  * copy of this software and associated documentation files (the "Software"),
13  * to deal in the Software without restriction, including without limitation
14  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15  * and/or sell copies of the Software, and to permit persons to whom the
16  * Software is furnished to do so, subject to the following conditions:
17  *
18  * The above copyright notice and this permission notice shall be included in
19  * all copies or substantial portions of the Software.
20  *
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
24  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27  * DEALINGS IN THE SOFTWARE.
28  */
29
30 #ifndef TAP_PROCESS_H
31 #define TAP_PROCESS_H 1
32
33 #include <config.h>
34 #include <tests/tap/macros.h>
35
36 /* Opaque data type for process_start and friends. */
37 struct process;
38
39 BEGIN_DECLS
40
41 /*
42  * Run a function in a subprocess and check the exit status and expected
43  * output (stdout and stderr combined) against the provided values.  Expects
44  * the function to always exit (not die from a signal).  data is optional data
45  * that's passed into the function as its only argument.
46  *
47  * This reports as three separate tests: whether the function exited rather
48  * than was killed, whether the exit status was correct, and whether the
49  * output was correct.
50  */
51 typedef void (*test_function_type)(void *);
52 void is_function_output(test_function_type, void *data, int status,
53                         const char *output, const char *format, ...)
54     __attribute__((__format__(printf, 5, 6), __nonnull__(1)));
55
56 /*
57  * Run a setup program.  Takes the program to run and its arguments as an argv
58  * vector, where argv[0] must be either the full path to the program or the
59  * program name if the PATH should be searched.  If the program does not exit
60  * successfully, call bail, with the error message being the output from the
61  * program.
62  */
63 void run_setup(const char *const argv[])
64     __attribute__((__nonnull__));
65
66 /*
67  * process_start starts a process in the background, returning an opaque data
68  * struct that can be used to stop the process later.  The standard output and
69  * standard error of the process will be sent to a log file registered with
70  * diag_file_add, so its output will be properly interleaved with the test
71  * case output.
72  *
73  * The process should create a PID file in the path given as the second
74  * argument when it's finished initialization.
75  *
76  * process_start_fakeroot is the same but starts the process under fakeroot.
77  * PATH_FAKEROOT must be defined (generally by Autoconf).  If fakeroot is not
78  * found, process_start_fakeroot will call skip_all, so be sure to call this
79  * function before plan.
80  *
81  * process_stop can be called to explicitly stop the process.  If it isn't
82  * called by the test program, it will be called automatically when the
83  * program exits.
84  */
85 struct process *process_start(const char *const argv[], const char *pidfile)
86     __attribute__((__nonnull__));
87 struct process *process_start_fakeroot(const char *const argv[],
88                                        const char *pidfile)
89     __attribute__((__nonnull__));
90 void process_stop(struct process *);
91
92 END_DECLS
93
94 #endif /* TAP_PROCESS_H */