309 lines
12 KiB
C
309 lines
12 KiB
C
/*
|
|
* WM ASF reader unit tests
|
|
*
|
|
* Copyright 2019 Zebediah Figura
|
|
* Copyright 2020 Jactry Zeng 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 COBJMACROS
|
|
|
|
#include "dshow.h"
|
|
#include "wine/strmbase.h"
|
|
#include "wine/test.h"
|
|
|
|
#include "initguid.h"
|
|
|
|
static const GUID testguid = {0x22222222, 0x2222, 0x2222, {0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22}};
|
|
|
|
DEFINE_GUID(IID_IWMHeaderInfo, 0x96406bda, 0x2b2b, 0x11d3, 0xb3, 0x6b, 0x00, 0xc0, 0x4f, 0x61, 0x08, 0xff);
|
|
DEFINE_GUID(IID_IWMReaderAdvanced, 0x96406bea, 0x2b2b, 0x11d3, 0xb3, 0x6b, 0x00, 0xc0, 0x4f, 0x61, 0x08, 0xff);
|
|
DEFINE_GUID(IID_IWMReaderAdvanced2, 0xae14a945, 0xb90c, 0x4d0d, 0x91, 0x27, 0x80, 0xd6, 0x65, 0xf7, 0xd7, 0x3e);
|
|
|
|
static IBaseFilter *create_asf_reader(void)
|
|
{
|
|
IBaseFilter *filter = NULL;
|
|
HRESULT hr;
|
|
|
|
hr = CoCreateInstance(&CLSID_WMAsfReader, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IBaseFilter, (void **)&filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
return filter;
|
|
}
|
|
|
|
static ULONG get_refcount(void *iface)
|
|
{
|
|
IUnknown *unknown = iface;
|
|
IUnknown_AddRef(unknown);
|
|
return IUnknown_Release(unknown);
|
|
}
|
|
|
|
#define check_interface(a, b, c) check_interface_(__LINE__, a, b, c)
|
|
static void check_interface_(unsigned int line, void *iface_ptr, REFIID iid, BOOL supported)
|
|
{
|
|
IUnknown *iface = iface_ptr;
|
|
HRESULT hr, expected_hr;
|
|
IUnknown *unk;
|
|
|
|
expected_hr = supported ? S_OK : E_NOINTERFACE;
|
|
|
|
hr = IUnknown_QueryInterface(iface, iid, (void **)&unk);
|
|
ok_(__FILE__, line)(hr == expected_hr, "Got hr %#x, expected %#x.\n", hr, expected_hr);
|
|
if (SUCCEEDED(hr))
|
|
IUnknown_Release(unk);
|
|
}
|
|
|
|
static void test_interfaces(void)
|
|
{
|
|
IBaseFilter *filter = create_asf_reader();
|
|
|
|
check_interface(filter, &IID_IBaseFilter, TRUE);
|
|
check_interface(filter, &IID_IMediaFilter, TRUE);
|
|
check_interface(filter, &IID_IFileSourceFilter, TRUE);
|
|
check_interface(filter, &IID_IPersist, TRUE);
|
|
check_interface(filter, &IID_IUnknown, TRUE);
|
|
|
|
check_interface(filter, &IID_IAMFilterMiscFlags, FALSE);
|
|
check_interface(filter, &IID_IMediaSeeking, FALSE);
|
|
check_interface(filter, &IID_IReferenceClock, FALSE);
|
|
check_interface(filter, &IID_IQualityControl, FALSE);
|
|
todo_wine check_interface(filter, &IID_IServiceProvider, TRUE);
|
|
todo_wine check_interface(filter, &IID_IWMHeaderInfo, TRUE);
|
|
todo_wine check_interface(filter, &IID_IWMReaderAdvanced, TRUE);
|
|
todo_wine check_interface(filter, &IID_IWMReaderAdvanced2, TRUE);
|
|
|
|
IBaseFilter_Release(filter);
|
|
}
|
|
|
|
static const GUID test_iid = {0x33333333};
|
|
static LONG outer_ref = 1;
|
|
|
|
static HRESULT WINAPI outer_QueryInterface(IUnknown *iface, REFIID iid, void **out)
|
|
{
|
|
if (IsEqualGUID(iid, &IID_IUnknown)
|
|
|| IsEqualGUID(iid, &IID_IBaseFilter)
|
|
|| IsEqualGUID(iid, &test_iid))
|
|
{
|
|
*out = (IUnknown *)0xdeadbeef;
|
|
return S_OK;
|
|
}
|
|
ok(0, "Unexpected call %s.\n", wine_dbgstr_guid(iid));
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
static ULONG WINAPI outer_AddRef(IUnknown *iface)
|
|
{
|
|
return InterlockedIncrement(&outer_ref);
|
|
}
|
|
|
|
static ULONG WINAPI outer_Release(IUnknown *iface)
|
|
{
|
|
return InterlockedDecrement(&outer_ref);
|
|
}
|
|
|
|
static const IUnknownVtbl outer_vtbl =
|
|
{
|
|
outer_QueryInterface,
|
|
outer_AddRef,
|
|
outer_Release,
|
|
};
|
|
|
|
static IUnknown test_outer = {&outer_vtbl};
|
|
|
|
static void test_aggregation(void)
|
|
{
|
|
IBaseFilter *filter, *filter2;
|
|
IUnknown *unk, *unk2;
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
|
|
filter = (IBaseFilter *)0xdeadbeef;
|
|
hr = CoCreateInstance(&CLSID_WMAsfReader, &test_outer, CLSCTX_INPROC_SERVER,
|
|
&IID_IBaseFilter, (void **)&filter);
|
|
ok(hr == E_NOINTERFACE, "Got hr %#x.\n", hr);
|
|
ok(!filter, "Got interface %p.\n", filter);
|
|
|
|
hr = CoCreateInstance(&CLSID_WMAsfReader, &test_outer, CLSCTX_INPROC_SERVER,
|
|
&IID_IUnknown, (void **)&unk);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
ok(unk != &test_outer, "Returned IUnknown should not be outer IUnknown.\n");
|
|
ref = get_refcount(unk);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
|
|
ref = IUnknown_AddRef(unk);
|
|
ok(ref == 2, "Got unexpected refcount %d.\n", ref);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
|
|
ref = IUnknown_Release(unk);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
|
|
hr = IUnknown_QueryInterface(unk, &IID_IUnknown, (void **)&unk2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(unk2 == unk, "Got unexpected IUnknown %p.\n", unk2);
|
|
IUnknown_Release(unk2);
|
|
|
|
hr = IUnknown_QueryInterface(unk, &IID_IBaseFilter, (void **)&filter);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IUnknown, (void **)&unk2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(unk2 == (IUnknown *)0xdeadbeef, "Got unexpected IUnknown %p.\n", unk2);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IBaseFilter, (void **)&filter2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(filter2 == (IBaseFilter *)0xdeadbeef, "Got unexpected IBaseFilter %p.\n", filter2);
|
|
|
|
hr = IUnknown_QueryInterface(unk, &test_iid, (void **)&unk2);
|
|
ok(hr == E_NOINTERFACE, "Got hr %#x.\n", hr);
|
|
ok(!unk2, "Got unexpected IUnknown %p.\n", unk2);
|
|
|
|
hr = IBaseFilter_QueryInterface(filter, &test_iid, (void **)&unk2);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(unk2 == (IUnknown *)0xdeadbeef, "Got unexpected IUnknown %p.\n", unk2);
|
|
|
|
IBaseFilter_Release(filter);
|
|
ref = IUnknown_Release(unk);
|
|
ok(!ref, "Got unexpected refcount %d.\n", ref);
|
|
ok(outer_ref == 1, "Got unexpected refcount %d.\n", outer_ref);
|
|
}
|
|
|
|
static void test_filesourcefilter(void)
|
|
{
|
|
IBaseFilter *filter = create_asf_reader();
|
|
IFileSourceFilter *filesource;
|
|
IFilterGraph2 *graph;
|
|
IEnumPins *enumpins;
|
|
AM_MEDIA_TYPE type;
|
|
LPOLESTR olepath;
|
|
IPin *pins[4];
|
|
HRESULT hr;
|
|
ULONG ref;
|
|
BYTE *ptr;
|
|
|
|
ref = get_refcount(filter);
|
|
ok(ref == 1, "Got unexpected refcount %d.\n", ref);
|
|
hr = IBaseFilter_QueryInterface(filter, &IID_IFileSourceFilter, (void **)&filesource);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ref = get_refcount(filesource);
|
|
ok(ref == 2, "Got unexpected refcount %d.\n", ref);
|
|
ref = get_refcount(filter);
|
|
ok(ref == 2, "Got unexpected refcount %d.\n", ref);
|
|
|
|
hr = IFileSourceFilter_Load(filesource, NULL, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
olepath = (void *)0xdeadbeef;
|
|
memset(&type, 0x22, sizeof(type));
|
|
hr = IFileSourceFilter_GetCurFile(filesource, &olepath, &type);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!olepath, "Got %s.\n", wine_dbgstr_w(olepath));
|
|
ok(IsEqualGUID(&type.majortype, &MEDIATYPE_NULL), "Got majortype %s.\n",
|
|
wine_dbgstr_guid(&type.majortype));
|
|
ok(IsEqualGUID(&type.subtype, &MEDIASUBTYPE_NULL), "Got subtype %s.\n",
|
|
wine_dbgstr_guid(&type.subtype));
|
|
ok(type.bFixedSizeSamples == 0x22222222, "Got fixed size %d.\n", type.bFixedSizeSamples);
|
|
ok(type.bTemporalCompression == 0x22222222, "Got temporal compression %d.\n", type.bTemporalCompression);
|
|
ok(!type.lSampleSize, "Got sample size %u.\n", type.lSampleSize);
|
|
ok(IsEqualGUID(&type.formattype, &testguid), "Got format type %s.\n", wine_dbgstr_guid(&type.formattype));
|
|
ok(!type.pUnk, "Got pUnk %p.\n", type.pUnk);
|
|
ok(!type.cbFormat, "Got format size %u.\n", type.cbFormat);
|
|
memset(&ptr, 0x22, sizeof(ptr));
|
|
ok(type.pbFormat == ptr, "Got format block %p.\n", type.pbFormat);
|
|
|
|
hr = IFileSourceFilter_Load(filesource, L"nonexistent.wmv", NULL);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFileSourceFilter_GetCurFile(filesource, NULL, NULL);
|
|
ok(hr == E_POINTER, "Got hr %#x.\n", hr);
|
|
|
|
hr = IFileSourceFilter_Load(filesource, L"nonexistent2.wmv", NULL);
|
|
ok(hr == E_FAIL, "Got hr %#x.\n", hr);
|
|
|
|
olepath = (void *)0xdeadbeef;
|
|
memset(&type, 0x22, sizeof(type));
|
|
hr = IFileSourceFilter_GetCurFile(filesource, &olepath, &type);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!wcscmp(olepath, L"nonexistent.wmv"), "Expected path %s, got %s.\n",
|
|
wine_dbgstr_w(L"nonexistent.wmv"), wine_dbgstr_w(olepath));
|
|
ok(IsEqualGUID(&type.majortype, &MEDIATYPE_NULL), "Got majortype %s.\n",
|
|
wine_dbgstr_guid(&type.majortype));
|
|
ok(IsEqualGUID(&type.subtype, &MEDIASUBTYPE_NULL), "Got subtype %s.\n",
|
|
wine_dbgstr_guid(&type.subtype));
|
|
ok(type.bFixedSizeSamples == 0x22222222, "Got fixed size %d.\n", type.bFixedSizeSamples);
|
|
ok(type.bTemporalCompression == 0x22222222, "Got temporal compression %d.\n", type.bTemporalCompression);
|
|
ok(!type.lSampleSize, "Got sample size %u.\n", type.lSampleSize);
|
|
ok(IsEqualGUID(&type.formattype, &testguid), "Got format type %s.\n", wine_dbgstr_guid(&type.formattype));
|
|
ok(!type.pUnk, "Got pUnk %p.\n", type.pUnk);
|
|
ok(!type.cbFormat, "Got format size %u.\n", type.cbFormat);
|
|
ok(type.pbFormat == ptr, "Got format block %p.\n", type.pbFormat);
|
|
CoTaskMemFree(olepath);
|
|
|
|
hr = IBaseFilter_EnumPins(filter, &enumpins);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IEnumPins_Next(enumpins, 1, pins, NULL);
|
|
ok(hr == S_FALSE, "Got hr %#x.\n", hr);
|
|
IEnumPins_Release(enumpins);
|
|
|
|
hr = CoCreateInstance(&CLSID_FilterGraph, NULL, CLSCTX_INPROC_SERVER,
|
|
&IID_IFilterGraph2, (void **)&graph);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
hr = IFilterGraph2_AddFilter(graph, filter, NULL);
|
|
todo_wine ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)
|
|
|| broken(hr == HRESULT_FROM_WIN32(ERROR_MOD_NOT_FOUND)) /* win2008 */,
|
|
"Got hr %#x.\n", hr);
|
|
|
|
hr = IFileSourceFilter_Load(filesource, L"nonexistent2.wmv", NULL);
|
|
ok(hr == E_FAIL, "Got hr %#x.\n", hr);
|
|
|
|
olepath = (void *)0xdeadbeef;
|
|
memset(&type, 0x22, sizeof(type));
|
|
hr = IFileSourceFilter_GetCurFile(filesource, &olepath, &type);
|
|
ok(hr == S_OK, "Got hr %#x.\n", hr);
|
|
ok(!wcscmp(olepath, L"nonexistent.wmv"), "Expected path %s, got %s.\n",
|
|
wine_dbgstr_w(L"nonexistent.wmv"), wine_dbgstr_w(olepath));
|
|
ok(IsEqualGUID(&type.majortype, &MEDIATYPE_NULL), "Got majortype %s.\n",
|
|
wine_dbgstr_guid(&type.majortype));
|
|
ok(IsEqualGUID(&type.subtype, &MEDIASUBTYPE_NULL), "Got subtype %s.\n",
|
|
wine_dbgstr_guid(&type.subtype));
|
|
ok(type.bFixedSizeSamples == 0x22222222, "Got fixed size %d.\n", type.bFixedSizeSamples);
|
|
ok(type.bTemporalCompression == 0x22222222, "Got temporal compression %d.\n", type.bTemporalCompression);
|
|
ok(!type.lSampleSize, "Got sample size %u.\n", type.lSampleSize);
|
|
ok(IsEqualGUID(&type.formattype, &testguid), "Got format type %s.\n", wine_dbgstr_guid(&type.formattype));
|
|
ok(!type.pUnk, "Got pUnk %p.\n", type.pUnk);
|
|
ok(!type.cbFormat, "Got format size %u.\n", type.cbFormat);
|
|
ok(type.pbFormat == ptr, "Got format block %p.\n", type.pbFormat);
|
|
CoTaskMemFree(olepath);
|
|
|
|
ref = IFilterGraph2_Release(graph);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
IBaseFilter_Release(filter);
|
|
ref = IFileSourceFilter_Release(filesource);
|
|
ok(!ref, "Got outstanding refcount %d.\n", ref);
|
|
}
|
|
|
|
START_TEST(asfreader)
|
|
{
|
|
CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
|
|
|
test_interfaces();
|
|
test_aggregation();
|
|
test_filesourcefilter();
|
|
|
|
CoUninitialize();
|
|
}
|