Author: akhaldi Date: Thu Oct 2 10:27:09 2014 New Revision: 64463
URL: http://svn.reactos.org/svn/reactos?rev=64463&view=rev Log: [MSRLE32_WINETEST] * Import from Wine 1.7.27. CORE-8540
Added: trunk/rostests/winetests/msrle32/ (with props) trunk/rostests/winetests/msrle32/CMakeLists.txt (with props) trunk/rostests/winetests/msrle32/msrle.c (with props) trunk/rostests/winetests/msrle32/testlist.c (with props) Modified: trunk/rostests/winetests/CMakeLists.txt
Modified: trunk/rostests/winetests/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/CMakeLists.txt?r... ============================================================================== --- trunk/rostests/winetests/CMakeLists.txt [iso-8859-1] (original) +++ trunk/rostests/winetests/CMakeLists.txt [iso-8859-1] Thu Oct 2 10:27:09 2014 @@ -55,6 +55,7 @@ add_subdirectory(msctf) add_subdirectory(mshtml) add_subdirectory(msi) +add_subdirectory(msrle32) add_subdirectory(mstask) add_subdirectory(msvcrt) add_subdirectory(msvcrtd)
Propchange: trunk/rostests/winetests/msrle32/ ------------------------------------------------------------------------------ --- bugtraq:logregex (added) +++ bugtraq:logregex Thu Oct 2 10:27:09 2014 @@ -0,0 +1,2 @@ +([Ii]ssue|[Bb]ug)s? #?(\d+)(,? ?#?(\d+))*(,? ?(and |or )?#?(\d+))? +(\d+)
Propchange: trunk/rostests/winetests/msrle32/ ------------------------------------------------------------------------------ bugtraq:message = See issue #%BUGID% for more details.
Propchange: trunk/rostests/winetests/msrle32/ ------------------------------------------------------------------------------ bugtraq:url = http://www.reactos.org/bugzilla/show_bug.cgi?id=%BUGID%
Added: trunk/rostests/winetests/msrle32/CMakeLists.txt URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/msrle32/CMakeLis... ============================================================================== --- trunk/rostests/winetests/msrle32/CMakeLists.txt (added) +++ trunk/rostests/winetests/msrle32/CMakeLists.txt [iso-8859-1] Thu Oct 2 10:27:09 2014 @@ -0,0 +1,6 @@ + +add_definitions(-DUSE_WINE_TODOS) +add_executable(msrle32_winetest msrle.c testlist.c) +set_module_type(msrle32_winetest win32cui) +add_importlibs(msrle32_winetest msvfw32 msvcrt kernel32) +add_cd_file(TARGET msrle32_winetest DESTINATION reactos/bin FOR all)
Propchange: trunk/rostests/winetests/msrle32/CMakeLists.txt ------------------------------------------------------------------------------ svn:eol-style = native
Added: trunk/rostests/winetests/msrle32/msrle.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/msrle32/msrle.c?... ============================================================================== --- trunk/rostests/winetests/msrle32/msrle.c (added) +++ trunk/rostests/winetests/msrle32/msrle.c [iso-8859-1] Thu Oct 2 10:27:09 2014 @@ -0,0 +1,105 @@ +/* + * Copyright 2013 Jacek Caban for CodeWeavers + * + * 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 + */ + +#define WIN32_LEAN_AND_MEAN +#include <windows.h> +#include <vfw.h> +#include <aviriff.h> +#include <stdio.h> + +#include <wine/test.h> + +static void test_output(const BYTE *output, int out_size, const BYTE *expect, int size) +{ + char buf[512], *ptr; + int i; + + i = out_size == size && !memcmp(output, expect, size); + ok(i, "Unexpected output\n"); + if(i) + return; + + for(i=0, ptr=buf; i<out_size; i++) + ptr += sprintf(ptr, "%x ", output[i]); + trace("Got: %s\n", buf); + for(i=0, ptr=buf; i<size; i++) + ptr += sprintf(ptr, "%x ", expect[i]); + trace("Exp: %s\n", buf); +} + +static void test_encode(void) +{ + BITMAPINFOHEADER *output_header; + DWORD output_size, flags, quality; + BYTE buf[64]; + ICINFO info; + HIC hic; + LRESULT res; + + struct { BITMAPINFOHEADER header; RGBQUAD map[256]; } + input_header = { {sizeof(BITMAPINFOHEADER), 32, 1, 1, 8, 0, 32*8, 0, 0, 256, 256}, + {{255,0,0}, {0,255,0}, {0,0,255}, {255,255,255}}}; + + static BYTE input1[32] = {1,2,3,3,3,3,2,3,1}; + static const BYTE output1[] = {1,1,1,2,4,3,0,3,2,3,1,0,23,0,0,0,0,1}; + + hic = ICOpen(FCC('V','I','D','C'), FCC('m','r','l','e'), ICMODE_COMPRESS); + ok(hic != NULL, "ICOpen failed\n"); + + res = ICGetInfo(hic, &info, sizeof(info)); + ok(res == sizeof(info), "res = %ld\n", res); + ok(info.dwSize == sizeof(info), "dwSize = %d\n", info.dwSize); + ok(info.fccHandler == FCC('M','R','L','E'), "fccHandler = %x\n", info.fccHandler); + todo_wine ok(info.dwFlags == (VIDCF_QUALITY|VIDCF_CRUNCH|VIDCF_TEMPORAL), "dwFlags = %x\n", info.dwFlags); + ok(info.dwVersionICM == ICVERSION, "dwVersionICM = %d\n", info.dwVersionICM); + + quality = 0xdeadbeef; + res = ICSendMessage(hic, ICM_GETDEFAULTQUALITY, (DWORD_PTR)&quality, 0); + ok(res == ICERR_OK, "ICSendMessage(ICM_GETDEFAULTQUALITY) failed: %ld\n", res); + ok(quality == 8500, "quality = %d\n", quality); + + quality = 0xdeadbeef; + res = ICSendMessage(hic, ICM_GETQUALITY, (DWORD_PTR)&quality, 0); + ok(res == ICERR_UNSUPPORTED, "ICSendMessage(ICM_GETQUALITY) failed: %ld\n", res); + ok(quality == 0xdeadbeef, "quality = %d\n", quality); + + quality = ICQUALITY_HIGH; + res = ICSendMessage(hic, ICM_SETQUALITY, (DWORD_PTR)&quality, 0); + ok(res == ICERR_UNSUPPORTED, "ICSendMessage(ICM_SETQUALITY) failed: %ld\n", res); + + output_size = ICCompressGetFormatSize(hic, &input_header.header); + ok(output_size == 1064, "output_size = %d\n", output_size); + + output_header = HeapAlloc(GetProcessHeap(), 0, output_size); + ICCompressGetFormat(hic, &input_header.header, output_header); + + flags = 0; + res = ICCompress(hic, ICCOMPRESS_KEYFRAME, output_header, buf, &input_header.header, input1, 0, &flags, 0, 0, 0, NULL, NULL); + ok(res == ICERR_OK, "ICCompress failed: %ld\n", res); + test_output(buf, output_header->biSizeImage, output1, sizeof(output1)); + ok(flags == (AVIIF_TWOCC|AVIIF_KEYFRAME), "flags = %x\n", flags); + + HeapFree(GetProcessHeap(), 0, output_header); + + ICClose(hic); +} + +START_TEST(msrle) +{ + test_encode(); +}
Propchange: trunk/rostests/winetests/msrle32/msrle.c ------------------------------------------------------------------------------ svn:eol-style = native
Added: trunk/rostests/winetests/msrle32/testlist.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/winetests/msrle32/testlist... ============================================================================== --- trunk/rostests/winetests/msrle32/testlist.c (added) +++ trunk/rostests/winetests/msrle32/testlist.c [iso-8859-1] Thu Oct 2 10:27:09 2014 @@ -0,0 +1,12 @@ +/* Automatically generated by make depend; DO NOT EDIT!! */ + +#define STANDALONE +#include <wine/test.h> + +extern void func_msrle(void); + +const struct test winetest_testlist[] = +{ + { "msrle", func_msrle }, + { 0, 0 } +};
Propchange: trunk/rostests/winetests/msrle32/testlist.c ------------------------------------------------------------------------------ svn:eol-style = native