1 | /* $Id: tstRTProcIsRunningByName.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - RTProcIsRunningByName
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2009-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include <iprt/process.h>
|
---|
42 | #include <iprt/initterm.h>
|
---|
43 | #include <iprt/stream.h>
|
---|
44 | #include <iprt/errcore.h>
|
---|
45 | #include <iprt/param.h>
|
---|
46 | #include <iprt/path.h>
|
---|
47 | #include <iprt/string.h>
|
---|
48 |
|
---|
49 |
|
---|
50 |
|
---|
51 | int main(int argc, char **argv)
|
---|
52 | {
|
---|
53 | int cErrors = 0;
|
---|
54 |
|
---|
55 | RTR3InitExe(argc, &argv, 0);
|
---|
56 | RTPrintf("tstRTPRocIsRunningByName: TESTING...\n");
|
---|
57 |
|
---|
58 | /*
|
---|
59 | * Test 1: Check for a definitely not running process.
|
---|
60 | */
|
---|
61 | char szExecPath[RTPATH_MAX] = { "vbox-5b05e1ff-6ae2-4d10-885a-7d25018c4c5b" };
|
---|
62 | if (!RTProcIsRunningByName(szExecPath))
|
---|
63 | RTPrintf("tstRTProcIsRunningByName: Process '%s' is not running (expected).\n", szExecPath);
|
---|
64 | else
|
---|
65 | {
|
---|
66 | RTPrintf("tstRTProcIsRunningByName: FAILURE - '%s' is running! (test 1)\n", szExecPath);
|
---|
67 | cErrors++;
|
---|
68 | }
|
---|
69 |
|
---|
70 | /*
|
---|
71 | * Test 2: Check for a definitely not running process.
|
---|
72 | */
|
---|
73 | strcpy(szExecPath, "/bin/vbox-5b05e1ff-6ae2-4d10-885a-7d25018c4c5b");
|
---|
74 | if (!RTProcIsRunningByName(szExecPath))
|
---|
75 | RTPrintf("tstRTProcIsRunningByName: Process '%s' is not running (expected).\n", szExecPath);
|
---|
76 | else
|
---|
77 | {
|
---|
78 | RTPrintf("tstRTProcIsRunningByName: FAILURE - '%s' is running! (test 1)\n", szExecPath);
|
---|
79 | cErrors++;
|
---|
80 | }
|
---|
81 |
|
---|
82 | /*
|
---|
83 | * Test 3: Check for our own process, filename only.
|
---|
84 | */
|
---|
85 | if (RTProcGetExecutablePath(szExecPath, RTPATH_MAX))
|
---|
86 | {
|
---|
87 | /* Strip any path components */
|
---|
88 | char *pszFilename = RTPathFilename(szExecPath);
|
---|
89 | if (pszFilename)
|
---|
90 | {
|
---|
91 | if (RTProcIsRunningByName(pszFilename))
|
---|
92 | RTPrintf("tstRTProcIsRunningByName: Process '%s' (self) is running\n", pszFilename);
|
---|
93 | else
|
---|
94 | {
|
---|
95 | RTPrintf("tstRTProcIsRunningByName: FAILURE - Process '%s' (self) is not running!\n", pszFilename);
|
---|
96 | cErrors++;
|
---|
97 | }
|
---|
98 | }
|
---|
99 | else
|
---|
100 | {
|
---|
101 | RTPrintf("tstRTProcIsRunningByName: FAILURE - RTPathFilename failed!\n");
|
---|
102 | cErrors++;
|
---|
103 | }
|
---|
104 |
|
---|
105 | /*
|
---|
106 | * Test 4: Check for our own process, full path.
|
---|
107 | */
|
---|
108 | if (RTProcIsRunningByName(szExecPath))
|
---|
109 | RTPrintf("tstRTProcIsRunningByName: Process '%s' (self) is running\n", szExecPath);
|
---|
110 | else
|
---|
111 | {
|
---|
112 | RTPrintf("tstRTProcIsRunningByName: FAILURE - Process '%s' (self) is not running!\n", szExecPath);
|
---|
113 | cErrors++;
|
---|
114 | }
|
---|
115 | }
|
---|
116 | else
|
---|
117 | {
|
---|
118 | RTPrintf("tstRTProcIsRunningByName: FAILURE - RTProcGetExecutablePath failed!\n");
|
---|
119 | cErrors++;
|
---|
120 | }
|
---|
121 |
|
---|
122 |
|
---|
123 | /*
|
---|
124 | * Summary.
|
---|
125 | */
|
---|
126 | if (!cErrors)
|
---|
127 | RTPrintf("tstRTProcIsRunningByName: SUCCESS\n");
|
---|
128 | else
|
---|
129 | RTPrintf("tstRTProcIsRunningByName: FAILURE - %d errors\n", cErrors);
|
---|
130 | return cErrors ? 1 : 0;
|
---|
131 | }
|
---|