VirtualBox

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

Last change on this file since 35356 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.9 KB
Line 
1/* $Id: tstRTTemp.cpp 28800 2010-04-27 08:22:32Z vboxsync $ */
2/** @file
3 * IPRT Testcase - Temporary files and directories.
4 */
5
6/*
7 * Copyright (C) 2009 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* Header Files *
29*******************************************************************************/
30#include <iprt/dir.h>
31#include <iprt/file.h>
32#include <iprt/path.h>
33
34#include <iprt/err.h>
35#include <iprt/initterm.h>
36#include <iprt/mem.h>
37#include <iprt/param.h>
38#include <iprt/path.h>
39#include <iprt/stream.h>
40#include <iprt/string.h>
41#include <iprt/test.h>
42
43
44/*******************************************************************************
45* Global Variables *
46*******************************************************************************/
47static char g_szTempPath[RTPATH_MAX - 50];
48
49
50static void tstDirCreateTemp(const char *pszSubTest, const char *pszTemplate, unsigned cTimes, bool fSkipXCheck)
51{
52 RTTestISub(pszSubTest);
53
54 /* Allocate the result array. */
55 char **papszNames = (char **)RTMemTmpAllocZ(cTimes * sizeof(char *));
56 RTTESTI_CHECK_RETV(papszNames != NULL);
57
58 /* The test loop. */
59 unsigned i;
60 for (i = 0; i < cTimes; i++)
61 {
62 int rc;
63 char szName[RTPATH_MAX];
64 RTTESTI_CHECK_RC(rc = RTPathAppend(strcpy(szName, g_szTempPath), sizeof(szName), pszTemplate), VINF_SUCCESS);
65 if (RT_FAILURE(rc))
66 break;
67
68 RTTESTI_CHECK(papszNames[i] = RTStrDup(szName));
69 if (!papszNames[i])
70 break;
71
72 rc = RTDirCreateTemp(papszNames[i]);
73 if (rc != VINF_SUCCESS)
74 {
75 RTTestIFailed("RTDirCreateTemp(%s) call #%u -> %Rrc\n", szName, i, rc);
76 RTStrFree(papszNames[i]);
77 papszNames[i] = NULL;
78 break;
79 }
80 RTTestIPrintf(RTTESTLVL_DEBUG, "%s\n", papszNames[i]);
81 RTTESTI_CHECK_MSG(strlen(szName) == strlen(papszNames[i]), ("szName %s\nReturned %s\n", szName, papszNames[i]));
82 if (!fSkipXCheck)
83 RTTESTI_CHECK_MSG(strchr(RTPathFilename(papszNames[i]), 'X') == NULL, ("szName %s\nReturned %s\n", szName, papszNames[i]));
84 }
85
86 /* cleanup */
87 while (i-- > 0)
88 {
89 RTTESTI_CHECK_RC(RTDirRemove(papszNames[i]), VINF_SUCCESS);
90 RTStrFree(papszNames[i]);
91 }
92 RTMemTmpFree(papszNames);
93}
94
95
96int main()
97{
98 RTTEST hTest;
99 int rc = RTTestInitAndCreate("tstRTTemp", &hTest);
100 if (rc)
101 return rc;
102 RTTestBanner(hTest);
103
104 /*
105 * Get the temp directory (this is essential to the testcase).
106 */
107 RTTESTI_CHECK_RC(rc = RTPathTemp(g_szTempPath, sizeof(g_szTempPath)), VINF_SUCCESS);
108 if (RT_FAILURE(rc))
109 return RTTestSummaryAndDestroy(hTest);
110
111 /*
112 * Create N temporary directories using RTDirCreateTemp.
113 */
114 tstDirCreateTemp("RTDirCreateTemp #1 (standard)", "rtRTTemp-XXXXXX", 128, false /*fSkipXCheck*/);
115 tstDirCreateTemp("RTDirCreateTemp #2 (long)", "rtRTTemp-XXXXXXXXXXXXXXXXX", 128, false /*fSkipXCheck*/);
116 tstDirCreateTemp("RTDirCreateTemp #3 (short)", "rtRTTemp-XX", 128, false /*fSkipXCheck*/);
117 tstDirCreateTemp("RTDirCreateTemp #4 (very short)", "rtRTTemp-X", 26+10, false /*fSkipXCheck*/);
118 tstDirCreateTemp("RTDirCreateTemp #5 (in-name)", "rtRTTemp-XXXt", 2, false /*fSkipXCheck*/);
119 tstDirCreateTemp("RTDirCreateTemp #6 (in-name)", "XXX-rtRTTemp", 2, false /*fSkipXCheck*/);
120 tstDirCreateTemp("RTDirCreateTemp #7 (in-name)", "rtRTTemp-XXXXXXXXX.tmp", 128, false /*fSkipXCheck*/);
121 tstDirCreateTemp("RTDirCreateTemp #8 (in-name)", "rtRTTemp-XXXXXXX-X.tmp", 128, true /*fSkipXCheck*/);
122 tstDirCreateTemp("RTDirCreateTemp #9 (in-name)", "rtRTTemp-XXXXXX-XX.tmp", 128, true /*fSkipXCheck*/);
123
124 /*
125 * Summary.
126 */
127 return RTTestSummaryAndDestroy(hTest);
128}
129
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette