VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTTemp.cpp@ 76553

Last change on this file since 76553 was 76553, checked in by vboxsync, 5 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.1 KB
Line 
1/* $Id: tstRTTemp.cpp 76553 2019-01-01 01:45:53Z vboxsync $ */
2/** @file
3 * IPRT Testcase - Temporary files and directories.
4 */
5
6/*
7 * Copyright (C) 2009-2019 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/dir.h>
32#include <iprt/file.h>
33#include <iprt/path.h>
34
35#include <iprt/errcore.h>
36#include <iprt/initterm.h>
37#include <iprt/mem.h>
38#include <iprt/param.h>
39#include <iprt/path.h>
40#include <iprt/stream.h>
41#include <iprt/string.h>
42#include <iprt/test.h>
43
44
45/*********************************************************************************************************************************
46* Global Variables *
47*********************************************************************************************************************************/
48static char g_szTempPath[RTPATH_MAX - 50];
49
50
51static void tstObjectCreateTemp(const char *pszSubTest, const char *pszTemplate, bool fFile, RTFMODE fMode, unsigned cTimes, bool fSkipXCheck)
52{
53 RTTestISub(pszSubTest);
54 const char *pcszAPI = fFile ? "RTFileCreateTemp" : "RTDirCreateTemp";
55
56 /* Allocate the result array. */
57 char **papszNames = (char **)RTMemTmpAllocZ(cTimes * sizeof(char *));
58 RTTESTI_CHECK_RETV(papszNames != NULL);
59
60 /* The test loop. */
61 unsigned i;
62 for (i = 0; i < cTimes; i++)
63 {
64 int rc;
65 char szName[RTPATH_MAX];
66 RTFMODE fModeFinal;
67
68 RTTESTI_CHECK_RC(rc = RTPathAppend(strcpy(szName, g_szTempPath), sizeof(szName), pszTemplate), VINF_SUCCESS);
69 if (RT_FAILURE(rc))
70 break;
71
72 RTTESTI_CHECK(papszNames[i] = RTStrDup(szName));
73 if (!papszNames[i])
74 break;
75
76 rc = fFile
77 ? RTFileCreateTemp(papszNames[i], fMode)
78 : RTDirCreateTemp(papszNames[i], fMode);
79 if (rc != VINF_SUCCESS)
80 {
81 RTTestIFailed("%s(%s, %#o) call #%u -> %Rrc\n", pcszAPI, szName, (int)fMode, i, rc);
82 RTStrFree(papszNames[i]);
83 papszNames[i] = NULL;
84 break;
85 }
86 /* Check that the final permissions are not more permissive than
87 * the ones requested (less permissive is fine, c.f. umask etc.).
88 * I mask out the group as I am not sure how we deal with that on
89 * Windows. */
90 RTTESTI_CHECK_RC_OK(rc = RTPathGetMode(papszNames[i], &fModeFinal));
91 if (RT_SUCCESS(rc))
92 {
93 fModeFinal &= (RTFS_UNIX_IRWXU | RTFS_UNIX_IRWXO);
94 RTTESTI_CHECK_MSG((fModeFinal & ~fMode) == 0,
95 ("%s: szName %s\nfModeFinal ~= %#o, expected %#o\n",
96 pcszAPI, szName, fModeFinal, (int)fMode));
97 }
98 RTTestIPrintf(RTTESTLVL_DEBUG, "%s: %s\n", pcszAPI, papszNames[i]);
99 RTTESTI_CHECK_MSG(strlen(szName) == strlen(papszNames[i]), ("%s: szName %s\nReturned %s\n", pcszAPI, szName, papszNames[i]));
100 if (!fSkipXCheck)
101 RTTESTI_CHECK_MSG(strchr(RTPathFilename(papszNames[i]), 'X') == NULL, ("%s: szName %s\nReturned %s\n", pcszAPI, szName, papszNames[i]));
102 }
103
104 /* cleanup */
105 while (i-- > 0)
106 {
107 if (fFile)
108 RTTESTI_CHECK_RC(RTFileDelete(papszNames[i]), VINF_SUCCESS);
109 else
110 RTTESTI_CHECK_RC(RTDirRemove(papszNames[i]), VINF_SUCCESS);
111 RTStrFree(papszNames[i]);
112 }
113 RTMemTmpFree(papszNames);
114}
115
116
117static void tstFileCreateTemp(const char *pszSubTest, const char *pszTemplate, RTFMODE fMode, unsigned cTimes, bool fSkipXCheck)
118{
119 tstObjectCreateTemp(pszSubTest, pszTemplate, true /* fFile */, fMode,
120 cTimes, fSkipXCheck);
121}
122
123
124static void tstDirCreateTemp(const char *pszSubTest, const char *pszTemplate, RTFMODE fMode, unsigned cTimes, bool fSkipXCheck)
125{
126 tstObjectCreateTemp(pszSubTest, pszTemplate, false /* fFile */, fMode,
127 cTimes, fSkipXCheck);
128}
129
130
131static void tstBothCreateTemp(const char *pszSubTest, const char *pszTemplate, RTFMODE fMode, unsigned cTimes, bool fSkipXCheck)
132{
133 char pszSubTestLong[128];
134
135 RTStrPrintf(pszSubTestLong, sizeof(pszSubTestLong), "RTFileCreateTemp %s",
136 pszSubTest);
137 tstFileCreateTemp(pszSubTestLong, pszTemplate, fMode, cTimes,
138 fSkipXCheck);
139 RTStrPrintf(pszSubTestLong, sizeof(pszSubTestLong), "RTDirCreateTemp %s",
140 pszSubTest);
141 tstDirCreateTemp(pszSubTestLong, pszTemplate, fMode, cTimes, fSkipXCheck);
142}
143
144
145int main()
146{
147 RTTEST hTest;
148 int rc = RTTestInitAndCreate("tstRTTemp", &hTest);
149 if (rc)
150 return rc;
151 RTTestBanner(hTest);
152
153 /*
154 * Get the temp directory (this is essential to the testcase).
155 */
156 RTTESTI_CHECK_RC(rc = RTPathTemp(g_szTempPath, sizeof(g_szTempPath)), VINF_SUCCESS);
157 if (RT_FAILURE(rc))
158 return RTTestSummaryAndDestroy(hTest);
159
160 /*
161 * Create N temporary files and directories using RT(File|Dir)CreateTemp.
162 */
163 tstBothCreateTemp("#1 (standard)", "rtRTTemp-XXXXXX", 0700, 128, false /*fSkipXCheck*/);
164 tstBothCreateTemp("#2 (long)", "rtRTTemp-XXXXXXXXXXXXXXXXX", 0700, 128, false /*fSkipXCheck*/);
165 tstBothCreateTemp("#3 (short)", "rtRTTemp-XX", 0777, 128, false /*fSkipXCheck*/);
166 tstBothCreateTemp("#4 (very short)", "rtRTTemp-X", 0100, 26+10, false /*fSkipXCheck*/);
167 tstBothCreateTemp("#5 (in-name)", "rtRTTemp-XXXt", 0301, 2, false /*fSkipXCheck*/);
168 tstBothCreateTemp("#6 (in-name)", "XXX-rtRTTemp", 0355, 2, false /*fSkipXCheck*/);
169 tstBothCreateTemp("#7 (in-name)", "rtRTTemp-XXXXXXXXX.tmp", 0755, 128, false /*fSkipXCheck*/);
170 tstBothCreateTemp("#8 (in-name)", "rtRTTemp-XXXXXXX-X.tmp", 0700, 128, true /*fSkipXCheck*/);
171 tstBothCreateTemp("#9 (in-name)", "rtRTTemp-XXXXXX-XX.tmp", 0700, 128, true /*fSkipXCheck*/);
172
173 /*
174 * Summary.
175 */
176 return RTTestSummaryAndDestroy(hTest);
177}
178
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use