mirror of
https://github.com/reactos/wine.git
synced 2024-11-30 07:00:30 +00:00
kernel32/tests: Added some tests for FindResource.
This commit is contained in:
parent
856af1b5d7
commit
9879f78c13
@ -39,6 +39,8 @@ CTESTS = \
|
||||
virtual.c \
|
||||
volume.c
|
||||
|
||||
RC_SRCS = resource.rc
|
||||
|
||||
@MAKE_TEST_RULES@
|
||||
|
||||
@DEPENDENCIES@ # everything below this line is overwritten by make depend
|
||||
|
@ -263,6 +263,42 @@ end:
|
||||
CloseHandle( file );
|
||||
}
|
||||
|
||||
static void test_find_resource(void)
|
||||
{
|
||||
HRSRC rsrc;
|
||||
|
||||
rsrc = FindResourceW( GetModuleHandle(0), (LPCWSTR)MAKEINTRESOURCE(1), (LPCWSTR)RT_MENU );
|
||||
ok( rsrc != 0, "resource not found\n" );
|
||||
rsrc = FindResourceExW( GetModuleHandle(0), (LPCWSTR)RT_MENU, (LPCWSTR)MAKEINTRESOURCE(1),
|
||||
MAKELANGID( LANG_NEUTRAL, SUBLANG_NEUTRAL ));
|
||||
ok( rsrc != 0, "resource not found\n" );
|
||||
rsrc = FindResourceExW( GetModuleHandle(0), (LPCWSTR)RT_MENU, (LPCWSTR)MAKEINTRESOURCE(1),
|
||||
MAKELANGID( LANG_GERMAN, SUBLANG_DEFAULT ));
|
||||
ok( rsrc != 0, "resource not found\n" );
|
||||
|
||||
SetLastError( 0xdeadbeef );
|
||||
rsrc = FindResourceW( GetModuleHandle(0), (LPCWSTR)MAKEINTRESOURCE(1), (LPCWSTR)RT_DIALOG );
|
||||
ok( !rsrc, "resource found\n" );
|
||||
ok( GetLastError() == ERROR_RESOURCE_TYPE_NOT_FOUND, "wrong error %u\n", GetLastError() );
|
||||
|
||||
SetLastError( 0xdeadbeef );
|
||||
rsrc = FindResourceW( GetModuleHandle(0), (LPCWSTR)MAKEINTRESOURCE(2), (LPCWSTR)RT_MENU );
|
||||
ok( !rsrc, "resource found\n" );
|
||||
ok( GetLastError() == ERROR_RESOURCE_NAME_NOT_FOUND, "wrong error %u\n", GetLastError() );
|
||||
|
||||
SetLastError( 0xdeadbeef );
|
||||
rsrc = FindResourceExW( GetModuleHandle(0), (LPCWSTR)RT_MENU, (LPCWSTR)MAKEINTRESOURCE(1),
|
||||
MAKELANGID( LANG_ENGLISH, SUBLANG_DEFAULT ) );
|
||||
ok( !rsrc, "resource found\n" );
|
||||
ok( GetLastError() == ERROR_RESOURCE_LANG_NOT_FOUND, "wrong error %u\n", GetLastError() );
|
||||
|
||||
SetLastError( 0xdeadbeef );
|
||||
rsrc = FindResourceExW( GetModuleHandle(0), (LPCWSTR)RT_MENU, (LPCWSTR)MAKEINTRESOURCE(1),
|
||||
MAKELANGID( LANG_FRENCH, SUBLANG_DEFAULT ) );
|
||||
ok( !rsrc, "resource found\n" );
|
||||
ok( GetLastError() == ERROR_RESOURCE_LANG_NOT_FOUND, "wrong error %u\n", GetLastError() );
|
||||
}
|
||||
|
||||
START_TEST(resource)
|
||||
{
|
||||
DeleteFile( filename );
|
||||
@ -283,4 +319,5 @@ START_TEST(resource)
|
||||
update_resources_version();
|
||||
check_exe( check_not_empty );
|
||||
DeleteFile( filename );
|
||||
test_find_resource();
|
||||
}
|
||||
|
26
dlls/kernel32/tests/resource.rc
Normal file
26
dlls/kernel32/tests/resource.rc
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* Resources for kernel test suite.
|
||||
*
|
||||
* Copyright 2008 Alexandre Julliard
|
||||
*
|
||||
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#include "windef.h"
|
||||
|
||||
1 MENU LANGUAGE LANG_GERMAN, SUBLANG_DEFAULT
|
||||
{
|
||||
MENUITEM "foo", 1
|
||||
}
|
Loading…
Reference in New Issue
Block a user