1 | /* $Id: tstRTDirCreateUniqueNumbered.cpp 82968 2020-02-04 10:35:17Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * IPRT Testcase - Unique directory creation.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2011-2020 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 |
|
---|
33 | #include <iprt/err.h>
|
---|
34 | #include <iprt/path.h>
|
---|
35 | #include <iprt/mem.h>
|
---|
36 | #include <iprt/string.h>
|
---|
37 | #include <iprt/test.h>
|
---|
38 |
|
---|
39 |
|
---|
40 | /*********************************************************************************************************************************
|
---|
41 | * Global Variables *
|
---|
42 | *********************************************************************************************************************************/
|
---|
43 | static char g_szTempPath[RTPATH_MAX - 50];
|
---|
44 |
|
---|
45 |
|
---|
46 | static void tst1(size_t cTest, size_t cchDigits, char chSep)
|
---|
47 | {
|
---|
48 | RTTestISubF("tst #%u (digits: %u; sep: %c)", cTest, cchDigits, chSep ? chSep : ' ');
|
---|
49 |
|
---|
50 | /* We try to create max possible + one. */
|
---|
51 | size_t cTimes = 1;
|
---|
52 | for (size_t i = 0; i < cchDigits; ++i)
|
---|
53 | cTimes *= 10;
|
---|
54 |
|
---|
55 | /* Allocate the result array. */
|
---|
56 | char **papszNames = (char **)RTMemTmpAllocZ((cTimes + 1) * sizeof(char *));
|
---|
57 | RTTESTI_CHECK_RETV(papszNames != NULL);
|
---|
58 |
|
---|
59 | int rc = VERR_INTERNAL_ERROR;
|
---|
60 | /* The test loop. */
|
---|
61 | size_t i;
|
---|
62 | for (i = 0; i < cTimes + 1; i++)
|
---|
63 | {
|
---|
64 | char szName[RTPATH_MAX];
|
---|
65 | RTTESTI_CHECK_RC(rc = RTPathAppend(strcpy(szName, g_szTempPath), sizeof(szName), "RTDirCreateUniqueNumbered"), VINF_SUCCESS);
|
---|
66 | if (RT_FAILURE(rc))
|
---|
67 | break;
|
---|
68 |
|
---|
69 | rc = RTDirCreateUniqueNumbered(szName, sizeof(szName), 0700, cchDigits, chSep);
|
---|
70 | if (rc != VINF_SUCCESS)
|
---|
71 | {
|
---|
72 | /* Random selection (system) isn't 100% predictable, so we must give a little
|
---|
73 | leeway for the 2+ digit tests. (Using random is essential for performance.) */
|
---|
74 | if (cchDigits == 1 || rc != VERR_ALREADY_EXISTS || i < cTimes - 1)
|
---|
75 | RTTestIFailed("RTDirCreateUniqueNumbered(%s) call #%u -> %Rrc\n", szName, i, rc);
|
---|
76 | break;
|
---|
77 | }
|
---|
78 |
|
---|
79 | RTTESTI_CHECK(papszNames[i] = RTStrDup(szName));
|
---|
80 | if (!papszNames[i])
|
---|
81 | break;
|
---|
82 |
|
---|
83 | RTTestIPrintf(RTTESTLVL_DEBUG, "%s\n", papszNames[i]);
|
---|
84 | }
|
---|
85 |
|
---|
86 | /* Try to create one more, which shouldn't be possible. */
|
---|
87 | if (RT_SUCCESS(rc) && i == cTimes + 1)
|
---|
88 | {
|
---|
89 | char szName[RTPATH_MAX];
|
---|
90 | RTTESTI_CHECK_RC(rc = RTPathAppend(strcpy(szName, g_szTempPath), sizeof(szName), "RTDirCreateUniqueNumbered"), VINF_SUCCESS);
|
---|
91 | if (RT_SUCCESS(rc))
|
---|
92 | RTTESTI_CHECK_RC(rc = RTDirCreateUniqueNumbered(szName, sizeof(szName), 0700, cchDigits, chSep), VERR_ALREADY_EXISTS);
|
---|
93 | }
|
---|
94 |
|
---|
95 | /* cleanup */
|
---|
96 | while (i-- > 0)
|
---|
97 | {
|
---|
98 | RTTESTI_CHECK_RC(RTDirRemove(papszNames[i]), VINF_SUCCESS);
|
---|
99 | RTStrFree(papszNames[i]);
|
---|
100 | }
|
---|
101 | RTMemTmpFree(papszNames);
|
---|
102 | }
|
---|
103 |
|
---|
104 |
|
---|
105 | int main()
|
---|
106 | {
|
---|
107 | RTTEST hTest;
|
---|
108 | RTEXITCODE rcExit = RTTestInitAndCreate("tstRTDirCreateUniqueNumbered", &hTest);
|
---|
109 | if (rcExit)
|
---|
110 | return rcExit;
|
---|
111 | RTTestBanner(hTest);
|
---|
112 |
|
---|
113 | /*
|
---|
114 | * Get the temp directory (this is essential to the testcase).
|
---|
115 | */
|
---|
116 | int rc;
|
---|
117 | RTTESTI_CHECK_RC(rc = RTPathTemp(g_szTempPath, sizeof(g_szTempPath)), VINF_SUCCESS);
|
---|
118 | if (RT_FAILURE(rc))
|
---|
119 | return RTTestSummaryAndDestroy(hTest);
|
---|
120 |
|
---|
121 | /*
|
---|
122 | * Create some test directories.
|
---|
123 | */
|
---|
124 | tst1(1, 1, '\0');
|
---|
125 | tst1(2, 1, '-');
|
---|
126 | tst1(3, 2, '\0');
|
---|
127 | tst1(4, 2, '-');
|
---|
128 |
|
---|
129 | /*
|
---|
130 | * Summary.
|
---|
131 | */
|
---|
132 | return RTTestSummaryAndDestroy(hTest);
|
---|
133 | }
|
---|
134 |
|
---|