1 | /* $Id: tstRTVfs.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - IPRT Virtual File System (VFS) API
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2015-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/vfs.h>
|
---|
42 | #include <iprt/errcore.h>
|
---|
43 | #include <iprt/test.h>
|
---|
44 | #include <iprt/file.h>
|
---|
45 | #include <iprt/string.h>
|
---|
46 |
|
---|
47 |
|
---|
48 | /*********************************************************************************************************************************
|
---|
49 | * Structures and Typedefs *
|
---|
50 | *********************************************************************************************************************************/
|
---|
51 |
|
---|
52 | static const char *StandardHandleToString(RTHANDLESTD enmHandle)
|
---|
53 | {
|
---|
54 | switch (enmHandle)
|
---|
55 | {
|
---|
56 | case RTHANDLESTD_INPUT: return "STDIN";
|
---|
57 | case RTHANDLESTD_OUTPUT: return "STDOUT";
|
---|
58 | case RTHANDLESTD_ERROR: return "STDERR";
|
---|
59 | default: break;
|
---|
60 | }
|
---|
61 |
|
---|
62 | return "unknown";
|
---|
63 | }
|
---|
64 |
|
---|
65 | static void tstVfsIoFromStandardHandle(RTTEST hTest, RTHANDLESTD enmHandle)
|
---|
66 | {
|
---|
67 | RTTestSubF(hTest, "RTVfsIoStrmFromStdHandle(%s)", StandardHandleToString(enmHandle));
|
---|
68 |
|
---|
69 | RTVFSIOSTREAM hVfsIos = NIL_RTVFSIOSTREAM;
|
---|
70 | int rc = RTVfsIoStrmFromStdHandle(enmHandle, 0, true /*fLeaveOpen*/, &hVfsIos);
|
---|
71 | if (RT_SUCCESS(rc))
|
---|
72 | {
|
---|
73 | if ( enmHandle == RTHANDLESTD_OUTPUT
|
---|
74 | || enmHandle == RTHANDLESTD_ERROR)
|
---|
75 | {
|
---|
76 | char szTmp[80];
|
---|
77 | size_t cchTmp = RTStrPrintf(szTmp, sizeof(szTmp), "Test output to %s\n", StandardHandleToString(enmHandle));
|
---|
78 |
|
---|
79 | size_t cbWritten;
|
---|
80 | RTTESTI_CHECK_RC(rc = RTVfsIoStrmWrite(hVfsIos, szTmp, cchTmp, true /*fBlocking*/, &cbWritten), VINF_SUCCESS);
|
---|
81 | if (RT_SUCCESS(rc))
|
---|
82 | RTTESTI_CHECK(cbWritten == cchTmp);
|
---|
83 | }
|
---|
84 |
|
---|
85 | uint32_t cRefs = RTVfsIoStrmRelease(hVfsIos);
|
---|
86 | RTTESTI_CHECK_MSG(cRefs == 0, ("cRefs=%#x\n", cRefs));
|
---|
87 | }
|
---|
88 | else
|
---|
89 | RTTestFailed(hTest, "Error creating VFS I/O stream for %s: %Rrc\n", StandardHandleToString(enmHandle), rc);
|
---|
90 | }
|
---|
91 |
|
---|
92 |
|
---|
93 |
|
---|
94 | int main(int argc, char **argv)
|
---|
95 | {
|
---|
96 | RT_NOREF2(argc, argv);
|
---|
97 |
|
---|
98 | /*
|
---|
99 | * Initialize IPRT and create the test.
|
---|
100 | */
|
---|
101 | RTTEST hTest;
|
---|
102 | int rc = RTTestInitAndCreate("tstRTVfs", &hTest);
|
---|
103 | if (rc)
|
---|
104 | return rc;
|
---|
105 | RTTestBanner(hTest);
|
---|
106 |
|
---|
107 | tstVfsIoFromStandardHandle(hTest, RTHANDLESTD_INPUT);
|
---|
108 | tstVfsIoFromStandardHandle(hTest, RTHANDLESTD_OUTPUT);
|
---|
109 | tstVfsIoFromStandardHandle(hTest, RTHANDLESTD_ERROR);
|
---|
110 |
|
---|
111 | /*
|
---|
112 | * Summary
|
---|
113 | */
|
---|
114 | return RTTestSummaryAndDestroy(hTest);
|
---|
115 | }
|
---|
116 |
|
---|