1 | /* $Id: tstRTFilesystem.cpp 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - IPRT Filesystem API (Fileystem)
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2012-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 int tstRTFilesystem(RTTEST hTest, RTVFSFILE hVfsFile)
|
---|
53 | {
|
---|
54 | int rc = VINF_SUCCESS;
|
---|
55 | RTVFS hVfs = NIL_RTVFS;
|
---|
56 |
|
---|
57 | RTTestSubF(hTest, "Create filesystem object");
|
---|
58 |
|
---|
59 | rc = RTVfsMountVol(hVfsFile, RTVFSMNT_F_READ_ONLY | RTVFSMNT_F_FOR_RANGE_IN_USE, &hVfs, NULL);
|
---|
60 | if (RT_FAILURE(rc))
|
---|
61 | {
|
---|
62 | RTTestIFailed("RTVfsMountVol -> %Rrc", rc);
|
---|
63 | return rc;
|
---|
64 | }
|
---|
65 |
|
---|
66 | /* Check all blocks. */
|
---|
67 | uint64_t off = 0;
|
---|
68 | uint32_t cBlocksUsed = 0;
|
---|
69 | uint32_t cBlocksUnused = 0;
|
---|
70 | uint64_t cbFs = 0;
|
---|
71 |
|
---|
72 | rc = RTVfsFileQuerySize(hVfsFile, &cbFs);
|
---|
73 | if (RT_FAILURE(rc))
|
---|
74 | {
|
---|
75 | RTTestIFailed("RTVfsFileQuerySize -> %Rrc", rc);
|
---|
76 | return rc;
|
---|
77 | }
|
---|
78 |
|
---|
79 | while (off < cbFs)
|
---|
80 | {
|
---|
81 | bool fUsed = false;
|
---|
82 |
|
---|
83 | rc = RTVfsQueryRangeState(hVfs, off, 1024, &fUsed);
|
---|
84 | if (RT_FAILURE(rc))
|
---|
85 | {
|
---|
86 | RTTestIFailed("RTVfsIsRangeInUse -> %Rrc", rc);
|
---|
87 | break;
|
---|
88 | }
|
---|
89 |
|
---|
90 | if (fUsed)
|
---|
91 | cBlocksUsed++;
|
---|
92 | else
|
---|
93 | cBlocksUnused++;
|
---|
94 |
|
---|
95 | off += 1024;
|
---|
96 | }
|
---|
97 |
|
---|
98 | if (RT_SUCCESS(rc))
|
---|
99 | RTTestIPrintf(RTTESTLVL_ALWAYS, "%u blocks used and %u blocks unused\n",
|
---|
100 | cBlocksUsed, cBlocksUnused);
|
---|
101 |
|
---|
102 | RTVfsRelease(hVfs);
|
---|
103 |
|
---|
104 | return rc;
|
---|
105 | }
|
---|
106 |
|
---|
107 | int main(int argc, char **argv)
|
---|
108 | {
|
---|
109 | /*
|
---|
110 | * Initialize IPRT and create the test.
|
---|
111 | */
|
---|
112 | RTTEST hTest;
|
---|
113 | int rc = RTTestInitAndCreate("tstRTFilesystem", &hTest);
|
---|
114 | if (rc)
|
---|
115 | return rc;
|
---|
116 | RTTestBanner(hTest);
|
---|
117 |
|
---|
118 | /*
|
---|
119 | * If no args, display usage.
|
---|
120 | */
|
---|
121 | if (argc < 2)
|
---|
122 | {
|
---|
123 | RTTestPrintf(hTest, RTTESTLVL_ALWAYS, "Syntax: %s <image>\n", argv[0]);
|
---|
124 | return RTTestSkipAndDestroy(hTest, "Missing required arguments\n");
|
---|
125 | }
|
---|
126 |
|
---|
127 | /* Open image. */
|
---|
128 | RTFILE hFile;
|
---|
129 | RTVFSFILE hVfsFile;
|
---|
130 | rc = RTFileOpen(&hFile, argv[1], RTFILE_O_OPEN | RTFILE_O_DENY_NONE | RTFILE_O_READ);
|
---|
131 | if (RT_FAILURE(rc))
|
---|
132 | {
|
---|
133 | RTTestIFailed("RTFileOpen -> %Rrc", rc);
|
---|
134 | return RTTestSummaryAndDestroy(hTest);
|
---|
135 | }
|
---|
136 |
|
---|
137 | rc = RTVfsFileFromRTFile(hFile, 0, false, &hVfsFile);
|
---|
138 | if (RT_FAILURE(rc))
|
---|
139 | {
|
---|
140 | RTTestIFailed("RTVfsFileFromRTFile -> %Rrc", rc);
|
---|
141 | return RTTestSummaryAndDestroy(hTest);
|
---|
142 | }
|
---|
143 |
|
---|
144 | rc = tstRTFilesystem(hTest, hVfsFile);
|
---|
145 |
|
---|
146 | RTTESTI_CHECK(rc == VINF_SUCCESS);
|
---|
147 |
|
---|
148 | RTVfsFileRelease(hVfsFile);
|
---|
149 |
|
---|
150 | /*
|
---|
151 | * Summary
|
---|
152 | */
|
---|
153 | return RTTestSummaryAndDestroy(hTest);
|
---|
154 | }
|
---|
155 |
|
---|