mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
4b95e17c61
Introduce a "apitest.h" header gathering special things for apitests (SEH macros, wine/test.h inclusion, and so on...). svn path=/trunk/; revision=60313
115 lines
2.7 KiB
C
115 lines
2.7 KiB
C
/*
|
|
* PROJECT: ReactOS api tests
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* PURPOSE: Test for _splitpath
|
|
* PROGRAMMER: Timo Kreuzer
|
|
*/
|
|
|
|
#include <apitest.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strings.h>
|
|
#include <stdarg.h>
|
|
|
|
START_TEST(splitpath)
|
|
{
|
|
char drive[5];
|
|
char dir[64];
|
|
char fname[32];
|
|
char ext[10];
|
|
DWORD Major;
|
|
|
|
Major = (DWORD)(LOBYTE(LOWORD(GetVersion())));
|
|
|
|
_splitpath("c:\\dir1\\dir2\\file.ext", drive, dir, fname, ext);
|
|
ok_str(drive, "c:");
|
|
ok_str(dir, "\\dir1\\dir2\\");
|
|
ok_str(fname, "file");
|
|
ok_str(ext, ".ext");
|
|
|
|
*_errno() = 0;
|
|
_splitpath("c:\\dir1\\dir2\\file.ext", 0, 0, 0, 0);
|
|
ok_int(*_errno(), 0);
|
|
|
|
if (Major >= 6)
|
|
{
|
|
*_errno() = 0;
|
|
_splitpath(0, drive, dir, fname, ext);
|
|
ok_int(*_errno(), EINVAL);
|
|
ok_str(drive, "");
|
|
ok_str(dir, "");
|
|
ok_str(fname, "");
|
|
ok_str(ext, "");
|
|
}
|
|
else
|
|
{
|
|
win_skip("This test only succeed on NT6+\n");
|
|
}
|
|
|
|
_splitpath("\\\\?\\c:\\dir1\\dir2\\file.ext", drive, dir, fname, ext);
|
|
if (Major >= 6)
|
|
{
|
|
ok_str(drive, "c:");
|
|
ok_str(dir, "\\dir1\\dir2\\");
|
|
}
|
|
else
|
|
{
|
|
ok_str(drive, "");
|
|
ok_str(dir, "\\\\?\\c:\\dir1\\dir2\\");
|
|
}
|
|
ok_str(fname, "file");
|
|
ok_str(ext, ".ext");
|
|
|
|
_splitpath("ab:\\dir1\\..\\file", drive, dir, fname, ext);
|
|
ok_str(drive, "");
|
|
ok_str(dir, "ab:\\dir1\\..\\");
|
|
ok_str(fname, "file");
|
|
ok_str(ext, "");
|
|
|
|
_splitpath("//?/c:/dir1/dir2/file.ext", drive, dir, fname, ext);
|
|
ok_str(drive, "");
|
|
ok_str(dir, "//?/c:/dir1/dir2/");
|
|
ok_str(fname, "file");
|
|
ok_str(ext, ".ext");
|
|
|
|
_splitpath("\\\\?\\0:/dir1\\dir2/file.", drive, dir, fname, ext);
|
|
if (Major >= 6)
|
|
{
|
|
ok_str(drive, "0:");
|
|
ok_str(dir, "/dir1\\dir2/");
|
|
}
|
|
else
|
|
{
|
|
ok_str(drive, "");
|
|
ok_str(dir, "\\\\?\\0:/dir1\\dir2/");
|
|
}
|
|
ok_str(fname, "file");
|
|
ok_str(ext, ".");
|
|
|
|
_splitpath("\\\\.\\c:\\dir1\\dir2\\.ext.ext2", drive, dir, fname, ext);
|
|
ok_str(drive, "");
|
|
ok_str(dir, "\\\\.\\c:\\dir1\\dir2\\");
|
|
ok_str(fname, ".ext");
|
|
ok_str(ext, ".ext2");
|
|
|
|
_splitpath("\\??\\c:\\dir1\\dir2\\file. ~ ", drive, dir, fname, ext);
|
|
ok_str(drive, "");
|
|
ok_str(dir, "\\??\\c:\\dir1\\dir2\\");
|
|
ok_str(fname, "file");
|
|
ok_str(ext, ". ~ ");
|
|
|
|
_splitpath("x: dir1\\/dir2 \\.blub", drive, dir, fname, ext);
|
|
ok_str(drive, "x:");
|
|
ok_str(dir, " dir1\\/dir2 \\");
|
|
ok_str(fname, "");
|
|
ok_str(ext, ".blub");
|
|
|
|
_splitpath("/:\\dir1\\dir2\\file.ext", drive, dir, fname, ext);
|
|
ok_str(drive, "/:");
|
|
ok_str(dir, "\\dir1\\dir2\\");
|
|
ok_str(fname, "file");
|
|
ok_str(ext, ".ext");
|
|
|
|
}
|
|
|