2008-02-13 23:47:12 +01:00
|
|
|
/*
|
|
|
|
* Unit tests for Media Detector
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Google (Lei Zhang)
|
|
|
|
*
|
|
|
|
* 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 <assert.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "wine/test.h"
|
|
|
|
#include "qedit.h"
|
|
|
|
|
2008-04-05 00:59:08 +02:00
|
|
|
static WCHAR test_avi_filename[MAX_PATH];
|
|
|
|
|
|
|
|
static BOOL init_tests(void)
|
|
|
|
{
|
|
|
|
static WCHAR temp_path[MAX_PATH];
|
|
|
|
static WCHAR prefix[] = {'D','E','S',0};
|
|
|
|
static WCHAR avi[] = {'a','v','i',0};
|
|
|
|
HRSRC res;
|
|
|
|
HGLOBAL data;
|
|
|
|
char *mem;
|
|
|
|
DWORD size, written;
|
|
|
|
HANDLE fh;
|
|
|
|
|
|
|
|
res = FindResourceW(NULL, (LPWSTR) 1, (LPWSTR) 256);
|
|
|
|
if (!res)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
data = LoadResource(NULL, res);
|
|
|
|
if (!data)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
mem = LockResource(data);
|
|
|
|
if (!mem)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
size = SizeofResource(NULL, res);
|
|
|
|
if (size == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!GetTempPathW(sizeof temp_path, temp_path))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* We might end up relying on the extension here, so .TMP is no good. */
|
|
|
|
if (!GetTempFileNameW(temp_path, prefix, 0, test_avi_filename))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
DeleteFileW(test_avi_filename);
|
|
|
|
lstrcpyW(test_avi_filename + lstrlenW(test_avi_filename) - 3, avi);
|
|
|
|
|
|
|
|
fh = CreateFileW(test_avi_filename, GENERIC_WRITE, 0, NULL,
|
|
|
|
CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
if (fh == INVALID_HANDLE_VALUE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!WriteFile(fh, mem, size, &written, NULL) || written != size)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
CloseHandle(fh);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2008-02-13 23:47:12 +01:00
|
|
|
static void test_mediadet(void)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
IMediaDet *pM = NULL;
|
2008-04-05 00:59:08 +02:00
|
|
|
BSTR filename = NULL;
|
2008-04-05 01:00:05 +02:00
|
|
|
long nstrms = 0;
|
2008-04-05 01:01:06 +02:00
|
|
|
long strm;
|
2008-02-13 23:47:12 +01:00
|
|
|
|
|
|
|
hr = CoCreateInstance(&CLSID_MediaDet, NULL, CLSCTX_INPROC_SERVER,
|
|
|
|
&IID_IMediaDet, (LPVOID*)&pM);
|
|
|
|
ok(hr == S_OK, "CoCreateInstance failed with %x\n", hr);
|
|
|
|
ok(pM != NULL, "pM is NULL\n");
|
2008-02-13 23:12:17 +01:00
|
|
|
|
2008-04-05 00:59:08 +02:00
|
|
|
filename = SysAllocString(test_avi_filename);
|
|
|
|
hr = IMediaDet_put_Filename(pM, filename);
|
|
|
|
todo_wine ok(hr == S_OK, "IMediaDet_put_Filename -> %x\n", hr);
|
|
|
|
SysFreeString(filename);
|
|
|
|
|
2008-04-05 01:00:05 +02:00
|
|
|
hr = IMediaDet_get_OutputStreams(pM, &nstrms);
|
|
|
|
todo_wine ok(hr == S_OK, "IMediaDet_get_OutputStreams\n");
|
|
|
|
todo_wine ok(nstrms == 1, "IMediaDet_get_OutputStreams\n");
|
|
|
|
|
2008-04-05 01:00:41 +02:00
|
|
|
filename = NULL;
|
|
|
|
hr = IMediaDet_get_Filename(pM, &filename);
|
|
|
|
todo_wine ok(hr == S_OK, "IMediaDet_get_Filename\n");
|
|
|
|
todo_wine ok(lstrcmpW(filename, test_avi_filename) == 0,
|
|
|
|
"IMediaDet_get_Filename\n");
|
|
|
|
SysFreeString(filename);
|
|
|
|
|
2008-04-05 01:01:06 +02:00
|
|
|
hr = IMediaDet_put_CurrentStream(pM, 0);
|
|
|
|
todo_wine ok(hr == S_OK, "IMediaDet_put_CurrentStream\n");
|
|
|
|
|
|
|
|
strm = -1;
|
|
|
|
hr = IMediaDet_get_CurrentStream(pM, &strm);
|
|
|
|
todo_wine ok(hr == S_OK, "IMediaDet_get_CurrentStream\n");
|
|
|
|
todo_wine ok(strm == 0, "IMediaDet_get_CurrentStream\n");
|
|
|
|
|
2008-02-13 23:12:17 +01:00
|
|
|
hr = IMediaDet_Release(pM);
|
|
|
|
ok(hr == 0, "IMediaDet_Release returned: %x\n", hr);
|
2008-04-05 00:59:08 +02:00
|
|
|
|
|
|
|
DeleteFileW(test_avi_filename);
|
2008-02-13 23:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
START_TEST(mediadet)
|
|
|
|
{
|
2008-04-05 00:59:08 +02:00
|
|
|
if (!init_tests())
|
|
|
|
{
|
|
|
|
skip("Couldn't initialize tests!\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-02-13 23:47:12 +01:00
|
|
|
CoInitialize(NULL);
|
|
|
|
test_mediadet();
|
2008-04-05 00:58:17 +02:00
|
|
|
CoUninitialize();
|
2008-02-13 23:47:12 +01:00
|
|
|
}
|