summaryrefslogtreecommitdiffstats
path: root/winpr/libwinpr/path/test/TestPathAllocCombine.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:24:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:24:41 +0000
commita9bcc81f821d7c66f623779fa5147e728eb3c388 (patch)
tree98676963bcdd537ae5908a067a8eb110b93486a6 /winpr/libwinpr/path/test/TestPathAllocCombine.c
parentInitial commit. (diff)
downloadfreerdp3-a9bcc81f821d7c66f623779fa5147e728eb3c388.tar.xz
freerdp3-a9bcc81f821d7c66f623779fa5147e728eb3c388.zip
Adding upstream version 3.3.0+dfsg1.upstream/3.3.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'winpr/libwinpr/path/test/TestPathAllocCombine.c')
-rw-r--r--winpr/libwinpr/path/test/TestPathAllocCombine.c98
1 files changed, 98 insertions, 0 deletions
diff --git a/winpr/libwinpr/path/test/TestPathAllocCombine.c b/winpr/libwinpr/path/test/TestPathAllocCombine.c
new file mode 100644
index 0000000..4630df0
--- /dev/null
+++ b/winpr/libwinpr/path/test/TestPathAllocCombine.c
@@ -0,0 +1,98 @@
+
+#include <stdio.h>
+#include <winpr/crt.h>
+#include <winpr/path.h>
+#include <winpr/tchar.h>
+#include <winpr/winpr.h>
+
+static const TCHAR testBasePathBackslash[] = _T("C:\\Program Files\\");
+static const TCHAR testBasePathNoBackslash[] = _T("C:\\Program Files");
+static const TCHAR testMorePathBackslash[] = _T("\\Microsoft Visual Studio 11.0");
+static const TCHAR testMorePathNoBackslash[] = _T("Microsoft Visual Studio 11.0");
+static const TCHAR testPathOut[] = _T("C:\\Program Files\\Microsoft Visual Studio 11.0");
+static const TCHAR testPathOutMorePathBackslash[] = _T("C:\\Microsoft Visual Studio 11.0");
+
+int TestPathAllocCombine(int argc, char* argv[])
+{
+ HRESULT status = 0;
+ LPTSTR PathOut = NULL;
+
+ WINPR_UNUSED(argc);
+ WINPR_UNUSED(argv);
+
+ /* Base Path: Backslash, More Path: No Backslash */
+
+ status = PathAllocCombine(testBasePathBackslash, testMorePathNoBackslash, 0, &PathOut);
+
+ if (status != S_OK)
+ {
+ _tprintf(_T("PathAllocCombine status: 0x%08") _T(PRIX32) _T("\n"), status);
+ return -1;
+ }
+
+ if (_tcscmp(PathOut, testPathOut) != 0)
+ {
+ _tprintf(_T("Path Mismatch 1: Actual: %s, Expected: %s\n"), PathOut, testPathOut);
+ return -1;
+ }
+
+ free(PathOut);
+
+ /* Base Path: Backslash, More Path: Backslash */
+
+ status = PathAllocCombine(testBasePathBackslash, testMorePathBackslash, 0, &PathOut);
+
+ if (status != S_OK)
+ {
+ _tprintf(_T("PathAllocCombine status: 0x%08") _T(PRIX32) _T("\n"), status);
+ return -1;
+ }
+
+ if (_tcscmp(PathOut, testPathOutMorePathBackslash) != 0)
+ {
+ _tprintf(_T("Path Mismatch 2: Actual: %s, Expected: %s\n"), PathOut,
+ testPathOutMorePathBackslash);
+ return -1;
+ }
+
+ free(PathOut);
+
+ /* Base Path: No Backslash, More Path: Backslash */
+
+ status = PathAllocCombine(testBasePathNoBackslash, testMorePathBackslash, 0, &PathOut);
+
+ if (status != S_OK)
+ {
+ _tprintf(_T("PathAllocCombine status: 0x%08") _T(PRIX32) _T("\n"), status);
+ return -1;
+ }
+
+ if (_tcscmp(PathOut, testPathOutMorePathBackslash) != 0)
+ {
+ _tprintf(_T("Path Mismatch 3: Actual: %s, Expected: %s\n"), PathOut,
+ testPathOutMorePathBackslash);
+ return -1;
+ }
+
+ free(PathOut);
+
+ /* Base Path: No Backslash, More Path: No Backslash */
+
+ status = PathAllocCombine(testBasePathNoBackslash, testMorePathNoBackslash, 0, &PathOut);
+
+ if (status != S_OK)
+ {
+ _tprintf(_T("PathAllocCombine status: 0x%08") _T(PRIX32) _T("\n"), status);
+ return -1;
+ }
+
+ if (_tcscmp(PathOut, testPathOut) != 0)
+ {
+ _tprintf(_T("Path Mismatch 4: Actual: %s, Expected: %s\n"), PathOut, testPathOut);
+ return -1;
+ }
+
+ free(PathOut);
+
+ return 0;
+}