115 lines
4.0 KiB
C
115 lines
4.0 KiB
C
/*
|
|
* Copyright (C) 2004 Stefan Leichter
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "wine/test.h"
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winerror.h"
|
|
#include "winver.h"
|
|
|
|
#define MY_LAST_ERROR -1L
|
|
#define EXPECT_BAD_PATH__NOT_FOUND \
|
|
ok( (ERROR_PATH_NOT_FOUND == GetLastError()) || \
|
|
(ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) || \
|
|
(ERROR_BAD_PATHNAME == GetLastError()), \
|
|
"Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_BAD_PATHNAME (98)/" \
|
|
"ERROR_PATH_NOT_FOUND (NT4) expected, got 0x%08lx\n", GetLastError());
|
|
#define EXPECT_INVALID__NOT_FOUND \
|
|
ok( (ERROR_PATH_NOT_FOUND == GetLastError()) || \
|
|
(ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) || \
|
|
(ERROR_INVALID_PARAMETER == GetLastError()), \
|
|
"Last error wrong! ERROR_RESOURCE_DATA_NOT_FOUND/ERROR_INVALID_PARAMETER (98)/" \
|
|
"ERROR_PATH_NOT_FOUND (NT4) expected, got 0x%08lx\n", GetLastError());
|
|
|
|
static void test_info_size(void)
|
|
{ DWORD hdl, retval;
|
|
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( NULL, NULL);
|
|
ok( !retval,
|
|
"GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
EXPECT_INVALID__NOT_FOUND;
|
|
|
|
hdl = 0x55555555;
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( NULL, &hdl);
|
|
ok( !retval,
|
|
"GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
EXPECT_INVALID__NOT_FOUND;
|
|
ok( hdl == 0L,
|
|
"Handle wrong! 0L expected, got 0x%08lx\n", hdl);
|
|
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( "", NULL);
|
|
ok( !retval,
|
|
"GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
EXPECT_BAD_PATH__NOT_FOUND;
|
|
|
|
hdl = 0x55555555;
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( "", &hdl);
|
|
ok( !retval,
|
|
"GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
EXPECT_BAD_PATH__NOT_FOUND;
|
|
ok( hdl == 0L,
|
|
"Handle wrong! 0L expected, got 0x%08lx\n", hdl);
|
|
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( "kernel32.dll", NULL);
|
|
ok( retval,
|
|
"GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
|
|
"Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
|
|
MY_LAST_ERROR, GetLastError());
|
|
|
|
hdl = 0x55555555;
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( "kernel32.dll", &hdl);
|
|
ok( retval,
|
|
"GetFileVersionInfoSizeA result wrong! <> 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
ok((NO_ERROR == GetLastError()) || (MY_LAST_ERROR == GetLastError()),
|
|
"Last error wrong! NO_ERROR/0x%08lx (NT4) expected, got 0x%08lx\n",
|
|
MY_LAST_ERROR, GetLastError());
|
|
ok( hdl == 0L,
|
|
"Handle wrong! 0L expected, got 0x%08lx\n", hdl);
|
|
|
|
SetLastError(MY_LAST_ERROR);
|
|
retval = GetFileVersionInfoSizeA( "notexist.dll", NULL);
|
|
ok( !retval,
|
|
"GetFileVersionInfoSizeA result wrong! 0L expected, got 0x%08lx\n",
|
|
retval);
|
|
ok( (ERROR_FILE_NOT_FOUND == GetLastError()) ||
|
|
(ERROR_RESOURCE_DATA_NOT_FOUND == GetLastError()) ||
|
|
(MY_LAST_ERROR == GetLastError()),
|
|
"Last error wrong! ERROR_FILE_NOT_FOUND/ERROR_RESOURCE_DATA_NOT_FOUND "
|
|
"(XP)/0x%08lx (NT4) expected, got 0x%08lx\n", MY_LAST_ERROR, GetLastError());
|
|
}
|
|
|
|
START_TEST(info)
|
|
{
|
|
test_info_size();
|
|
}
|