2021-03-12 12:31:09 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Rémi Bernon 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 <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "winstring.h"
|
|
|
|
|
|
|
|
#include "initguid.h"
|
|
|
|
#include "roapi.h"
|
|
|
|
|
|
|
|
#define WIDL_using_Windows_Foundation
|
|
|
|
#define WIDL_using_Windows_Foundation_Collections
|
|
|
|
#include "windows.foundation.h"
|
2022-03-10 18:35:26 +01:00
|
|
|
#define WIDL_using_Windows_Globalization
|
|
|
|
#include "windows.globalization.h"
|
2022-03-09 18:45:34 +01:00
|
|
|
#define WIDL_using_Windows_Media_SpeechRecognition
|
|
|
|
#include "windows.media.speechrecognition.h"
|
2021-03-12 12:31:09 +01:00
|
|
|
#define WIDL_using_Windows_Media_SpeechSynthesis
|
|
|
|
#include "windows.media.speechsynthesis.h"
|
|
|
|
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
2022-03-14 11:06:33 +01:00
|
|
|
#define SPERR_WINRT_INTERNAL_ERROR 0x800455a0
|
|
|
|
|
2022-03-16 17:31:03 +01:00
|
|
|
#define IHandler_RecognitionResult ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionResultGeneratedEventArgs
|
|
|
|
#define IHandler_RecognitionResultVtbl ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionResultGeneratedEventArgsVtbl
|
|
|
|
#define IID_IHandler_RecognitionResult IID_ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionResultGeneratedEventArgs
|
|
|
|
#define impl_from_IHandler_RecognitionResult impl_from_ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionResultGeneratedEventArgs
|
|
|
|
#define IHandler_RecognitionResult_iface ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionResultGeneratedEventArgs_iface
|
|
|
|
|
2022-03-16 17:31:04 +01:00
|
|
|
#define IHandler_RecognitionCompleted ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionCompletedEventArgs
|
|
|
|
#define IHandler_RecognitionCompletedVtbl ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionCompletedEventArgsVtbl
|
|
|
|
#define IID_IHandler_RecognitionCompleted IID_ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionCompletedEventArgs
|
|
|
|
#define impl_from_IHandler_RecognitionCompleted impl_from_ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionCompletedEventArgs
|
|
|
|
#define IHandler_RecognitionCompleted_iface ITypedEventHandler_SpeechContinuousRecognitionSession_SpeechContinuousRecognitionCompletedEventArgs_iface
|
|
|
|
|
2021-11-30 13:55:24 +01:00
|
|
|
HRESULT WINAPI (*pDllGetActivationFactory)(HSTRING, IActivationFactory **);
|
2022-03-14 11:06:35 +01:00
|
|
|
static BOOL is_win10_1507 = FALSE;
|
2021-11-30 13:55:24 +01:00
|
|
|
|
2022-03-09 18:45:34 +01:00
|
|
|
static inline LONG get_ref(IUnknown *obj)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(obj);
|
|
|
|
return IUnknown_Release(obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define check_refcount(obj, exp) check_refcount_(__LINE__, obj, exp)
|
|
|
|
static inline void check_refcount_(unsigned int line, void *obj, LONG exp)
|
|
|
|
{
|
|
|
|
LONG ref = get_ref(obj);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok_(__FILE__, line)(exp == ref, "Unexpected refcount %lu, expected %lu\n", ref, exp);
|
2022-03-09 18:45:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define check_interface(obj, iid, exp) check_interface_(__LINE__, obj, iid, exp)
|
|
|
|
static void check_interface_(unsigned int line, void *obj, const IID *iid, BOOL supported)
|
|
|
|
{
|
|
|
|
IUnknown *iface = obj;
|
|
|
|
HRESULT hr, expected_hr;
|
|
|
|
IUnknown *unk;
|
|
|
|
|
|
|
|
expected_hr = supported ? S_OK : E_NOINTERFACE;
|
|
|
|
|
|
|
|
hr = IUnknown_QueryInterface(iface, iid, (void **)&unk);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok_(__FILE__, line)(hr == expected_hr, "Got hr %#lx, expected %#lx.\n", hr, expected_hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
IUnknown_Release(unk);
|
|
|
|
}
|
|
|
|
|
2022-03-10 18:35:26 +01:00
|
|
|
static const char *debugstr_hstring(HSTRING hstr)
|
|
|
|
{
|
|
|
|
const WCHAR *str;
|
|
|
|
UINT32 len;
|
|
|
|
if (hstr && !((ULONG_PTR)hstr >> 16)) return "(invalid)";
|
|
|
|
str = WindowsGetStringRawBuffer(hstr, &len);
|
|
|
|
return wine_dbgstr_wn(str, len);
|
|
|
|
}
|
|
|
|
|
2022-03-16 17:31:04 +01:00
|
|
|
struct completed_event_handler
|
|
|
|
{
|
|
|
|
IHandler_RecognitionCompleted IHandler_RecognitionCompleted_iface;
|
|
|
|
LONG ref;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct completed_event_handler *impl_from_IHandler_RecognitionCompleted( IHandler_RecognitionCompleted *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct completed_event_handler, IHandler_RecognitionCompleted_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI completed_event_handler_QueryInterface( IHandler_RecognitionCompleted *iface, REFIID iid, void **out )
|
|
|
|
{
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IHandler_RecognitionCompleted))
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*out = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
trace("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI completed_event_handler_AddRef( IHandler_RecognitionCompleted *iface )
|
|
|
|
{
|
|
|
|
struct completed_event_handler *impl = impl_from_IHandler_RecognitionCompleted(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI completed_event_handler_Release( IHandler_RecognitionCompleted *iface )
|
|
|
|
{
|
|
|
|
struct completed_event_handler *impl = impl_from_IHandler_RecognitionCompleted(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI completed_event_handler_Invoke( IHandler_RecognitionCompleted *iface,
|
|
|
|
ISpeechContinuousRecognitionSession *sender,
|
|
|
|
ISpeechContinuousRecognitionCompletedEventArgs *args )
|
|
|
|
{
|
|
|
|
trace("iface %p, sender %p, args %p.\n", iface, sender, args);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IHandler_RecognitionCompletedVtbl completed_event_handler_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
completed_event_handler_QueryInterface,
|
|
|
|
completed_event_handler_AddRef,
|
|
|
|
completed_event_handler_Release,
|
|
|
|
/* ITypedEventHandler<SpeechContinuousRecognitionSession*, SpeechContinuousRecognitionCompletedEventArgs* > methods */
|
|
|
|
completed_event_handler_Invoke
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT WINAPI completed_event_handler_create_static( struct completed_event_handler *impl )
|
|
|
|
{
|
|
|
|
impl->IHandler_RecognitionCompleted_iface.lpVtbl = &completed_event_handler_vtbl;
|
|
|
|
impl->ref = 1;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-03-16 17:31:03 +01:00
|
|
|
struct recognition_result_handler
|
|
|
|
{
|
|
|
|
IHandler_RecognitionResult IHandler_RecognitionResult_iface;
|
|
|
|
LONG ref;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct recognition_result_handler *impl_from_IHandler_RecognitionResult( IHandler_RecognitionResult *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct recognition_result_handler, IHandler_RecognitionResult_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI recognition_result_handler_QueryInterface( IHandler_RecognitionResult *iface, REFIID iid, void **out )
|
|
|
|
{
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IHandler_RecognitionResult))
|
|
|
|
{
|
|
|
|
IUnknown_AddRef(iface);
|
|
|
|
*out = iface;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
trace("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI recognition_result_handler_AddRef( IHandler_RecognitionResult *iface )
|
|
|
|
{
|
|
|
|
struct recognition_result_handler *impl = impl_from_IHandler_RecognitionResult(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI recognition_result_handler_Release( IHandler_RecognitionResult *iface )
|
|
|
|
{
|
|
|
|
struct recognition_result_handler *impl = impl_from_IHandler_RecognitionResult(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI recognition_result_handler_Invoke( IHandler_RecognitionResult *iface,
|
|
|
|
ISpeechContinuousRecognitionSession *sender,
|
|
|
|
ISpeechContinuousRecognitionResultGeneratedEventArgs *args )
|
|
|
|
{
|
|
|
|
trace("iface %p, sender %p, args %p.\n", iface, sender, args);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IHandler_RecognitionResultVtbl recognition_result_handler_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
recognition_result_handler_QueryInterface,
|
|
|
|
recognition_result_handler_AddRef,
|
|
|
|
recognition_result_handler_Release,
|
|
|
|
/* ITypedEventHandler<SpeechContinuousRecognitionSession*, SpeechContinuousRecognitionResultGeneratedEventArgs* > methods */
|
|
|
|
recognition_result_handler_Invoke
|
|
|
|
};
|
|
|
|
|
|
|
|
static HRESULT WINAPI recognition_result_handler_create_static( struct recognition_result_handler *impl )
|
|
|
|
{
|
|
|
|
impl->IHandler_RecognitionResult_iface.lpVtbl = &recognition_result_handler_vtbl;
|
|
|
|
impl->ref = 1;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-03-14 11:06:35 +01:00
|
|
|
struct iterator_hstring
|
|
|
|
{
|
|
|
|
IIterator_HSTRING IIterator_HSTRING_iface;
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
UINT32 index;
|
|
|
|
UINT32 size;
|
|
|
|
HSTRING *values;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct iterator_hstring *impl_from_IIterator_HSTRING( IIterator_HSTRING *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct iterator_hstring, IIterator_HSTRING_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_QueryInterface( IIterator_HSTRING *iface, REFIID iid, void **out )
|
|
|
|
{
|
|
|
|
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IInspectable) ||
|
|
|
|
IsEqualGUID(iid, &IID_IAgileObject) ||
|
|
|
|
IsEqualGUID(iid, &IID_IIterator_HSTRING))
|
|
|
|
{
|
|
|
|
IInspectable_AddRef((*out = &impl->IIterator_HSTRING_iface));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI iterator_hstring_AddRef( IIterator_HSTRING *iface )
|
|
|
|
{
|
|
|
|
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI iterator_hstring_Release( IIterator_HSTRING *iface )
|
|
|
|
{
|
|
|
|
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_GetIids( IIterator_HSTRING *iface, ULONG *iid_count, IID **iids )
|
|
|
|
{
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_GetRuntimeClassName( IIterator_HSTRING *iface, HSTRING *class_name )
|
|
|
|
{
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_GetTrustLevel( IIterator_HSTRING *iface, TrustLevel *trust_level )
|
|
|
|
{
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_get_Current( IIterator_HSTRING *iface, HSTRING *value )
|
|
|
|
{
|
|
|
|
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
*value = NULL;
|
|
|
|
if (impl->index >= impl->size) return E_BOUNDS;
|
|
|
|
|
|
|
|
hr = WindowsDuplicateString(impl->values[impl->index], value);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_get_HasCurrent( IIterator_HSTRING *iface, BOOL *value )
|
|
|
|
{
|
|
|
|
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
|
|
|
|
|
|
|
|
*value = impl->index < impl->size;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_MoveNext( IIterator_HSTRING *iface, BOOL *value )
|
|
|
|
{
|
|
|
|
struct iterator_hstring *impl = impl_from_IIterator_HSTRING(iface);
|
|
|
|
|
|
|
|
if (impl->index < impl->size) impl->index++;
|
|
|
|
return IIterator_HSTRING_get_HasCurrent(iface, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterator_hstring_GetMany( IIterator_HSTRING *iface, UINT32 items_size,
|
|
|
|
HSTRING *items, UINT *count )
|
|
|
|
{
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IIterator_HSTRINGVtbl iterator_hstring_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
iterator_hstring_QueryInterface,
|
|
|
|
iterator_hstring_AddRef,
|
|
|
|
iterator_hstring_Release,
|
|
|
|
/* IInspectable methods */
|
|
|
|
iterator_hstring_GetIids,
|
|
|
|
iterator_hstring_GetRuntimeClassName,
|
|
|
|
iterator_hstring_GetTrustLevel,
|
|
|
|
/* IIterator<HSTRING> methods */
|
|
|
|
iterator_hstring_get_Current,
|
|
|
|
iterator_hstring_get_HasCurrent,
|
|
|
|
iterator_hstring_MoveNext,
|
|
|
|
iterator_hstring_GetMany
|
|
|
|
};
|
|
|
|
|
2022-03-16 17:31:03 +01:00
|
|
|
static HRESULT WINAPI iterator_hstring_create_static( struct iterator_hstring *impl, HSTRING *strings, UINT32 size )
|
2022-03-14 11:06:35 +01:00
|
|
|
{
|
|
|
|
impl->IIterator_HSTRING_iface.lpVtbl = &iterator_hstring_vtbl;
|
|
|
|
impl->ref = 1;
|
|
|
|
impl->index = 0;
|
|
|
|
impl->size = size;
|
|
|
|
impl->values = strings;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct iterable_hstring
|
|
|
|
{
|
|
|
|
IIterable_HSTRING IIterable_HSTRING_iface;
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
IIterator_HSTRING *iterator;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct iterable_hstring *impl_from_Iterable_HSTRING( IIterable_HSTRING *iface )
|
|
|
|
{
|
|
|
|
return CONTAINING_RECORD(iface, struct iterable_hstring, IIterable_HSTRING_iface);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterable_hstring_QueryInterface( IIterable_HSTRING *iface, REFIID iid, void **out )
|
|
|
|
{
|
|
|
|
struct iterable_hstring *impl = impl_from_Iterable_HSTRING(iface);
|
|
|
|
|
|
|
|
trace("iface %p, iid %s, out %p stub!\n", iface, debugstr_guid(iid), out);
|
|
|
|
|
|
|
|
if (IsEqualGUID(iid, &IID_IUnknown) ||
|
|
|
|
IsEqualGUID(iid, &IID_IInspectable) ||
|
|
|
|
IsEqualGUID(iid, &IID_IAgileObject) ||
|
|
|
|
IsEqualGUID(iid, &IID_IIterable_HSTRING))
|
|
|
|
{
|
|
|
|
IInspectable_AddRef((*out = &impl->IIterable_HSTRING_iface));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
trace("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(iid));
|
|
|
|
*out = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI iterable_hstring_AddRef( IIterable_HSTRING *iface )
|
|
|
|
{
|
|
|
|
struct iterable_hstring *impl = impl_from_Iterable_HSTRING(iface);
|
|
|
|
ULONG ref = InterlockedIncrement(&impl->ref);
|
|
|
|
trace("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI iterable_hstring_Release( IIterable_HSTRING *iface )
|
|
|
|
{
|
|
|
|
struct iterable_hstring *impl = impl_from_Iterable_HSTRING(iface);
|
|
|
|
ULONG ref = InterlockedDecrement(&impl->ref);
|
|
|
|
trace("iface %p, ref %lu.\n", iface, ref);
|
|
|
|
return ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterable_hstring_GetIids( IIterable_HSTRING *iface, ULONG *iid_count, IID **iids )
|
|
|
|
{
|
|
|
|
trace("iface %p, iid_count %p, iids %p stub!\n", iface, iid_count, iids);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterable_hstring_GetRuntimeClassName( IIterable_HSTRING *iface, HSTRING *class_name )
|
|
|
|
{
|
|
|
|
trace("iface %p, class_name %p stub!\n", iface, class_name);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterable_hstring_GetTrustLevel( IIterable_HSTRING *iface, TrustLevel *trust_level )
|
|
|
|
{
|
|
|
|
trace("iface %p, trust_level %p stub!\n", iface, trust_level);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI iterable_hstring_First( IIterable_HSTRING *iface, IIterator_HSTRING **value )
|
|
|
|
{
|
|
|
|
struct iterable_hstring *impl = impl_from_Iterable_HSTRING(iface);
|
|
|
|
|
|
|
|
trace("iface %p, value %p.\n", iface, value);
|
|
|
|
|
|
|
|
IIterator_HSTRING_AddRef((*value = impl->iterator));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct IIterable_HSTRINGVtbl iterable_hstring_vtbl =
|
|
|
|
{
|
|
|
|
/* IUnknown methods */
|
|
|
|
iterable_hstring_QueryInterface,
|
|
|
|
iterable_hstring_AddRef,
|
|
|
|
iterable_hstring_Release,
|
|
|
|
/* IInspectable methods */
|
|
|
|
iterable_hstring_GetIids,
|
|
|
|
iterable_hstring_GetRuntimeClassName,
|
|
|
|
iterable_hstring_GetTrustLevel,
|
|
|
|
/* IIterable<HSTRING> methods */
|
|
|
|
iterable_hstring_First
|
|
|
|
};
|
|
|
|
|
2022-03-16 17:31:03 +01:00
|
|
|
static HRESULT WINAPI iterable_hstring_create_static( struct iterable_hstring *impl, struct iterator_hstring *iterator )
|
2022-03-14 11:06:35 +01:00
|
|
|
{
|
|
|
|
impl->IIterable_HSTRING_iface.lpVtbl = &iterable_hstring_vtbl;
|
|
|
|
impl->ref = 1;
|
|
|
|
impl->iterator = &iterator->IIterator_HSTRING_iface;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2022-03-09 18:45:34 +01:00
|
|
|
static void test_ActivationFactory(void)
|
|
|
|
{
|
|
|
|
static const WCHAR *synthesizer_name = L"Windows.Media.SpeechSynthesis.SpeechSynthesizer";
|
|
|
|
static const WCHAR *recognizer_name = L"Windows.Media.SpeechRecognition.SpeechRecognizer";
|
|
|
|
static const WCHAR *garbage_name = L"Some.Garbage.Class";
|
|
|
|
IActivationFactory *factory = NULL, *factory2 = NULL, *factory3 = NULL, *factory4 = NULL;
|
|
|
|
ISpeechRecognizerStatics2 *recognizer_statics2 = NULL;
|
|
|
|
HSTRING str, str2, str3;
|
|
|
|
HMODULE hdll;
|
|
|
|
HRESULT hr;
|
|
|
|
ULONG ref;
|
|
|
|
|
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "RoInitialize failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
hr = WindowsCreateString(synthesizer_name, wcslen(synthesizer_name), &str);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
hr = WindowsCreateString(recognizer_name, wcslen(recognizer_name), &str2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
hr = WindowsCreateString(garbage_name, wcslen(garbage_name), &str3);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "RoGetActivationFactory failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
check_refcount(factory, 2);
|
|
|
|
|
|
|
|
check_interface(factory, &IID_IInspectable, TRUE);
|
|
|
|
check_interface(factory, &IID_IAgileObject, TRUE);
|
|
|
|
check_interface(factory, &IID_IInstalledVoicesStatic, TRUE);
|
|
|
|
check_interface(factory, &IID_ISpeechRecognizerFactory, FALSE);
|
|
|
|
check_interface(factory, &IID_ISpeechRecognizerStatics, FALSE);
|
|
|
|
check_interface(factory, &IID_ISpeechRecognizerStatics2, FALSE);
|
|
|
|
|
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "RoGetActivationFactory failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
ok(factory == factory2, "Factories pointed at factory %p factory2 %p.\n", factory, factory2);
|
|
|
|
check_refcount(factory2, 3);
|
|
|
|
|
|
|
|
hr = RoGetActivationFactory(str2, &IID_IActivationFactory, (void **)&factory3);
|
2022-03-10 18:35:24 +01:00
|
|
|
ok(hr == S_OK || broken(hr == REGDB_E_CLASSNOTREG), "Got unexpected hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
if (hr == S_OK) /* Win10+ only */
|
|
|
|
{
|
|
|
|
check_refcount(factory3, 2);
|
|
|
|
ok(factory != factory3, "Factories pointed at factory %p factory3 %p.\n", factory, factory3);
|
|
|
|
|
|
|
|
check_interface(factory3, &IID_IInspectable, TRUE);
|
|
|
|
check_interface(factory3, &IID_IAgileObject, TRUE);
|
|
|
|
check_interface(factory3, &IID_ISpeechRecognizerFactory, TRUE);
|
|
|
|
check_interface(factory3, &IID_ISpeechRecognizerStatics, TRUE);
|
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory3, &IID_ISpeechRecognizerStatics2, (void **)&recognizer_statics2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK || broken(hr == E_NOINTERFACE), "IActivationFactory_QueryInterface failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
if (hr == S_OK) /* ISpeechRecognizerStatics2 not available in Win10 1507 */
|
|
|
|
{
|
|
|
|
ref = ISpeechRecognizerStatics2_Release(recognizer_statics2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(ref == 2, "Got unexpected refcount: %lu.\n", ref);
|
2022-03-09 18:45:34 +01:00
|
|
|
}
|
2022-03-14 11:06:35 +01:00
|
|
|
else is_win10_1507 = TRUE;
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
check_interface(factory3, &IID_IInstalledVoicesStatic, FALSE);
|
|
|
|
|
|
|
|
ref = IActivationFactory_Release(factory3);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(ref == 1, "Got unexpected refcount: %lu.\n", ref);
|
2022-03-09 18:45:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
hdll = LoadLibraryW(L"windows.media.speech.dll");
|
|
|
|
|
2022-03-14 11:06:33 +01:00
|
|
|
if (hdll)
|
2022-03-09 18:45:34 +01:00
|
|
|
{
|
|
|
|
pDllGetActivationFactory = (void *)GetProcAddress(hdll, "DllGetActivationFactory");
|
|
|
|
ok(!!pDllGetActivationFactory, "DllGetActivationFactory not found.\n");
|
|
|
|
|
|
|
|
hr = pDllGetActivationFactory(str3, &factory4);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok((hr == CLASS_E_CLASSNOTAVAILABLE), "Got unexpected hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
FreeLibrary(hdll);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = RoGetActivationFactory(str3, &IID_IActivationFactory, (void **)&factory4);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok((hr == REGDB_E_CLASSNOTREG), "RoGetActivationFactory failed, hr %#lx.\n", hr);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
ref = IActivationFactory_Release(factory2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(ref == 2, "Got unexpected refcount: %lu.\n", ref);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
ref = IActivationFactory_Release(factory);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(ref == 1, "Got unexpected refcount: %lu.\n", ref);
|
2022-03-09 18:45:34 +01:00
|
|
|
|
|
|
|
WindowsDeleteString(str);
|
|
|
|
WindowsDeleteString(str2);
|
|
|
|
WindowsDeleteString(str3);
|
|
|
|
|
|
|
|
RoUninitialize();
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:31:09 +01:00
|
|
|
static void test_SpeechSynthesizer(void)
|
|
|
|
{
|
|
|
|
static const WCHAR *speech_synthesizer_name = L"Windows.Media.SpeechSynthesis.SpeechSynthesizer";
|
2021-11-30 13:55:24 +01:00
|
|
|
static const WCHAR *speech_synthesizer_name2 = L"windows.media.speechsynthesis.speechsynthesizer";
|
|
|
|
static const WCHAR *unknown_class_name = L"Unknown.Class";
|
|
|
|
IActivationFactory *factory = NULL, *factory2 = NULL;
|
2021-03-12 12:31:09 +01:00
|
|
|
IVectorView_VoiceInformation *voices = NULL;
|
|
|
|
IInstalledVoicesStatic *voices_static = NULL;
|
2021-03-23 11:23:16 +01:00
|
|
|
IVoiceInformation *voice;
|
2021-03-12 12:31:09 +01:00
|
|
|
IInspectable *inspectable = NULL, *tmp_inspectable = NULL;
|
|
|
|
IAgileObject *agile_object = NULL, *tmp_agile_object = NULL;
|
2021-11-30 13:55:24 +01:00
|
|
|
ISpeechSynthesizer *synthesizer;
|
2022-03-23 17:21:59 +01:00
|
|
|
ISpeechSynthesizer2 *synthesizer2;
|
2021-11-30 13:55:24 +01:00
|
|
|
IClosable *closable;
|
|
|
|
HMODULE hdll;
|
|
|
|
HSTRING str, str2;
|
2021-03-12 12:31:09 +01:00
|
|
|
HRESULT hr;
|
2021-03-23 11:23:17 +01:00
|
|
|
UINT32 size;
|
2021-11-30 13:55:24 +01:00
|
|
|
ULONG ref;
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "RoInitialize failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
hr = WindowsCreateString(speech_synthesizer_name, wcslen(speech_synthesizer_name), &str);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-11-30 13:55:24 +01:00
|
|
|
hdll = LoadLibraryW(L"windows.media.speech.dll");
|
|
|
|
if (hdll)
|
|
|
|
{
|
|
|
|
pDllGetActivationFactory = (void *)GetProcAddress(hdll, "DllGetActivationFactory");
|
|
|
|
ok(!!pDllGetActivationFactory, "DllGetActivationFactory not found.\n");
|
|
|
|
|
|
|
|
hr = WindowsCreateString(unknown_class_name, wcslen(unknown_class_name), &str2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
hr = pDllGetActivationFactory(str2, &factory);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == CLASS_E_CLASSNOTAVAILABLE, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
WindowsDeleteString(str2);
|
|
|
|
|
|
|
|
hr = WindowsCreateString(speech_synthesizer_name2, wcslen(speech_synthesizer_name2), &str2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
hr = pDllGetActivationFactory(str2, &factory2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == CLASS_E_CLASSNOTAVAILABLE, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
WindowsDeleteString(str2);
|
|
|
|
|
|
|
|
hr = pDllGetActivationFactory(str, &factory2);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-03-10 11:47:51 +01:00
|
|
|
win_skip("Failed to load library, err %lu.\n", GetLastError());
|
2021-11-30 13:55:24 +01:00
|
|
|
}
|
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "RoGetActivationFactory failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-11-30 13:55:24 +01:00
|
|
|
if (hdll)
|
|
|
|
{
|
|
|
|
ok(factory == factory2, "Got unexpected factory %p, factory2 %p.\n", factory, factory2);
|
|
|
|
IActivationFactory_Release(factory2);
|
|
|
|
FreeLibrary(hdll);
|
|
|
|
}
|
|
|
|
|
2021-03-12 12:31:09 +01:00
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_IInspectable, (void **)&inspectable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_IInspectable failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_IAgileObject, (void **)&agile_object);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_IAgileObject failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_IInstalledVoicesStatic, (void **)&voices_static);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_IInstalledVoicesStatic failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
|
|
|
hr = IInstalledVoicesStatic_QueryInterface(voices_static, &IID_IInspectable, (void **)&tmp_inspectable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IInstalledVoicesStatic_QueryInterface IID_IInspectable failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
ok(tmp_inspectable == inspectable, "IInstalledVoicesStatic_QueryInterface IID_IInspectable returned %p, expected %p\n", tmp_inspectable, inspectable);
|
|
|
|
IInspectable_Release(tmp_inspectable);
|
|
|
|
|
|
|
|
hr = IInstalledVoicesStatic_QueryInterface(voices_static, &IID_IAgileObject, (void **)&tmp_agile_object);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IInstalledVoicesStatic_QueryInterface IID_IAgileObject failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
ok(tmp_agile_object == agile_object, "IInstalledVoicesStatic_QueryInterface IID_IAgileObject returned %p, expected %p\n", tmp_agile_object, agile_object);
|
|
|
|
IAgileObject_Release(tmp_agile_object);
|
|
|
|
|
|
|
|
hr = IInstalledVoicesStatic_get_AllVoices(voices_static, &voices);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IInstalledVoicesStatic_get_AllVoices failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
|
|
|
hr = IVectorView_VoiceInformation_QueryInterface(voices, &IID_IInspectable, (void **)&tmp_inspectable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IVectorView_VoiceInformation_QueryInterface voices failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
ok(tmp_inspectable != inspectable, "IVectorView_VoiceInformation_QueryInterface voices returned %p, expected %p\n", tmp_inspectable, inspectable);
|
|
|
|
IInspectable_Release(tmp_inspectable);
|
|
|
|
|
|
|
|
hr = IVectorView_VoiceInformation_QueryInterface(voices, &IID_IAgileObject, (void **)&tmp_agile_object);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == E_NOINTERFACE, "IVectorView_VoiceInformation_QueryInterface voices failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
|
|
|
size = 0xdeadbeef;
|
|
|
|
hr = IVectorView_VoiceInformation_get_Size(voices, &size);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IVectorView_VoiceInformation_get_Size voices failed, hr %#lx\n", hr);
|
2021-03-12 12:31:11 +01:00
|
|
|
todo_wine ok(size != 0 && size != 0xdeadbeef, "IVectorView_VoiceInformation_get_Size returned %u\n", size);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-03-23 11:23:18 +01:00
|
|
|
voice = (IVoiceInformation *)0xdeadbeef;
|
|
|
|
hr = IVectorView_VoiceInformation_GetAt(voices, size, &voice);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == E_BOUNDS, "IVectorView_VoiceInformation_GetAt failed, hr %#lx\n", hr);
|
2021-03-23 11:23:18 +01:00
|
|
|
ok(voice == NULL, "IVectorView_VoiceInformation_GetAt returned %p\n", voice);
|
|
|
|
|
2021-03-23 11:23:16 +01:00
|
|
|
hr = IVectorView_VoiceInformation_GetMany(voices, size, 1, &voice, &size);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "IVectorView_VoiceInformation_GetMany failed, hr %#lx\n", hr);
|
2021-03-23 11:23:16 +01:00
|
|
|
ok(size == 0, "IVectorView_VoiceInformation_GetMany returned count %u\n", size);
|
|
|
|
|
2021-03-18 09:58:43 +01:00
|
|
|
IVectorView_VoiceInformation_Release(voices);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-03-18 09:58:43 +01:00
|
|
|
IInstalledVoicesStatic_Release(voices_static);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-03-18 09:58:43 +01:00
|
|
|
IAgileObject_Release(agile_object);
|
|
|
|
IInspectable_Release(inspectable);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-11-30 13:55:24 +01:00
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_ISpeechSynthesizer, (void **)&synthesizer);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == E_NOINTERFACE, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
hr = RoActivateInstance(str, &inspectable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
hr = IInspectable_QueryInterface(inspectable, &IID_ISpeechSynthesizer, (void **)&synthesizer);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
hr = IInspectable_QueryInterface(inspectable, &IID_IClosable, (void **)&closable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
2022-03-23 17:21:59 +01:00
|
|
|
hr = IInspectable_QueryInterface(inspectable, &IID_ISpeechSynthesizer2, (void **)&synthesizer2);
|
|
|
|
ok(hr == S_OK ||
|
|
|
|
broken(hr == E_NOINTERFACE), /* requires newer Windows */
|
|
|
|
"Got unexpected hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
if (hr == S_OK)
|
|
|
|
{
|
|
|
|
ref = ISpeechSynthesizer2_Release(synthesizer2);
|
|
|
|
ok(ref == 3, "Got unexpected ref %lu.\n", ref);
|
|
|
|
}
|
|
|
|
|
2021-11-30 13:55:24 +01:00
|
|
|
ref = IClosable_Release(closable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(ref == 2, "Got unexpected ref %lu.\n", ref);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
ref = ISpeechSynthesizer_Release(synthesizer);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
ref = IInspectable_Release(inspectable);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(!ref, "Got unexpected ref %lu.\n", ref);
|
2021-11-30 13:55:24 +01:00
|
|
|
|
|
|
|
IActivationFactory_Release(factory);
|
2021-04-22 03:35:01 +02:00
|
|
|
WindowsDeleteString(str);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
RoUninitialize();
|
2021-03-12 12:31:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_VoiceInformation(void)
|
|
|
|
{
|
|
|
|
static const WCHAR *voice_information_name = L"Windows.Media.SpeechSynthesis.VoiceInformation";
|
|
|
|
|
|
|
|
IActivationFactory *factory = NULL;
|
|
|
|
HSTRING str;
|
|
|
|
HRESULT hr;
|
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "RoInitialize failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
hr = WindowsCreateString(voice_information_name, wcslen(voice_information_name), &str);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
2022-03-10 11:47:51 +01:00
|
|
|
ok(hr == REGDB_E_CLASSNOTREG, "RoGetActivationFactory returned unexpected hr %#lx\n", hr);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
WindowsDeleteString(str);
|
2021-03-12 12:31:09 +01:00
|
|
|
|
2021-04-22 03:35:01 +02:00
|
|
|
RoUninitialize();
|
2021-03-12 12:31:09 +01:00
|
|
|
}
|
|
|
|
|
2022-03-10 18:35:26 +01:00
|
|
|
static void test_SpeechRecognizer(void)
|
|
|
|
{
|
|
|
|
static const WCHAR *speech_recognition_name = L"Windows.Media.SpeechRecognition.SpeechRecognizer";
|
2022-03-16 17:31:02 +01:00
|
|
|
ISpeechContinuousRecognitionSession *session = NULL;
|
2022-03-10 18:35:26 +01:00
|
|
|
ISpeechRecognizerFactory *sr_factory = NULL;
|
|
|
|
ISpeechRecognizerStatics *sr_statics = NULL;
|
|
|
|
ISpeechRecognizerStatics2 *sr_statics2 = NULL;
|
|
|
|
ISpeechRecognizer *recognizer = NULL;
|
|
|
|
ISpeechRecognizer2 *recognizer2 = NULL;
|
|
|
|
IActivationFactory *factory = NULL;
|
|
|
|
IInspectable *inspectable = NULL;
|
|
|
|
IClosable *closable = NULL;
|
|
|
|
ILanguage *language = NULL;
|
2022-03-16 17:31:04 +01:00
|
|
|
struct completed_event_handler completed_handler;
|
2022-03-16 17:31:03 +01:00
|
|
|
struct recognition_result_handler result_handler;
|
|
|
|
EventRegistrationToken token = { .value = 0 };
|
2022-03-10 18:35:26 +01:00
|
|
|
HSTRING hstr, hstr_lang;
|
|
|
|
HRESULT hr;
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
|
|
|
ok(hr == S_OK, "RoInitialize failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = WindowsCreateString(speech_recognition_name, wcslen(speech_recognition_name), &hstr);
|
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.n", hr);
|
|
|
|
|
|
|
|
hr = RoGetActivationFactory(hstr, &IID_IActivationFactory, (void **)&factory);
|
|
|
|
ok(hr == S_OK || broken(hr == REGDB_E_CLASSNOTREG), "RoGetActivationFactory failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-14 11:06:33 +01:00
|
|
|
if (hr == REGDB_E_CLASSNOTREG) /* Win 8 and 8.1 */
|
2022-03-10 18:35:26 +01:00
|
|
|
{
|
|
|
|
win_skip("SpeechRecognizer activation factory not available!\n");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_ISpeechRecognizerFactory, (void **)&sr_factory);
|
|
|
|
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_ISpeechRecognizer failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_ISpeechRecognizerStatics, (void **)&sr_statics);
|
|
|
|
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_ISpeechRecognizerStatics failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = ISpeechRecognizerStatics_get_SystemSpeechLanguage(sr_statics, &language);
|
|
|
|
todo_wine ok(hr == S_OK, "ISpeechRecognizerStatics_SystemSpeechLanguage failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-14 11:06:33 +01:00
|
|
|
if (hr == S_OK)
|
2022-03-10 18:35:26 +01:00
|
|
|
{
|
|
|
|
hr = ILanguage_get_LanguageTag(language, &hstr_lang);
|
|
|
|
ok(hr == S_OK, "ILanguage_get_LanguageTag failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
trace("SpeechRecognizer default language %s.\n", debugstr_hstring(hstr_lang));
|
|
|
|
|
|
|
|
ILanguage_Release(language);
|
|
|
|
}
|
|
|
|
|
|
|
|
ref = ISpeechRecognizerStatics_Release(sr_statics);
|
|
|
|
ok(ref == 3, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_ISpeechRecognizerStatics2, (void **)&sr_statics2);
|
|
|
|
ok(hr == S_OK || broken(hr == E_NOINTERFACE), "IActivationFactory_QueryInterface IID_ISpeechRecognizerStatics2 failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-14 11:06:33 +01:00
|
|
|
if (hr == S_OK) /* SpeechRecognizerStatics2 not implemented on Win10 1507 */
|
2022-03-10 18:35:26 +01:00
|
|
|
{
|
|
|
|
ref = ISpeechRecognizerStatics2_Release(sr_statics2);
|
|
|
|
ok(ref == 3, "Got unexpected ref %lu.\n", ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
ref = ISpeechRecognizerFactory_Release(sr_factory);
|
|
|
|
ok(ref == 2, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
ref = IActivationFactory_Release(factory);
|
|
|
|
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
hr = RoActivateInstance(hstr, &inspectable);
|
2022-03-14 11:06:33 +01:00
|
|
|
ok(hr == S_OK || broken(hr == SPERR_WINRT_INTERNAL_ERROR), "Got unexpected hr %#lx.\n", hr);
|
2022-03-10 18:35:26 +01:00
|
|
|
|
2022-03-14 11:06:33 +01:00
|
|
|
if (hr == S_OK)
|
2022-03-10 18:35:26 +01:00
|
|
|
{
|
2022-03-14 11:06:33 +01:00
|
|
|
check_refcount(inspectable, 1);
|
|
|
|
check_interface(factory, &IID_IAgileObject, TRUE);
|
|
|
|
|
2022-03-10 18:35:26 +01:00
|
|
|
hr = IInspectable_QueryInterface(inspectable, &IID_ISpeechRecognizer, (void **)&recognizer);
|
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = IInspectable_QueryInterface(inspectable, &IID_ISpeechRecognizer2, (void **)&recognizer2);
|
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
|
|
|
|
2022-03-16 17:31:02 +01:00
|
|
|
hr = ISpeechRecognizer2_get_ContinuousRecognitionSession(recognizer2, &session);
|
|
|
|
ok(hr == S_OK, "ISpeechRecognizer2_get_ContinuousRecognitionSession failed, hr %#lx.\n", hr);
|
|
|
|
check_refcount(session, 2);
|
|
|
|
check_refcount(inspectable, 3);
|
|
|
|
|
2022-03-16 17:31:04 +01:00
|
|
|
hr = ISpeechContinuousRecognitionSession_add_Completed(session, NULL, &token);
|
|
|
|
ok(hr == E_INVALIDARG, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
token.value = 0xdeadbeef;
|
|
|
|
completed_event_handler_create_static(&completed_handler);
|
|
|
|
hr = ISpeechContinuousRecognitionSession_add_Completed(session, &completed_handler.IHandler_RecognitionCompleted_iface, &token);
|
|
|
|
ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr);
|
|
|
|
ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value);
|
|
|
|
|
|
|
|
hr = ISpeechContinuousRecognitionSession_remove_Completed(session, token);
|
|
|
|
ok(hr == S_OK, "ISpeechContinuousRecognitionSession_remove_ResultGenerated failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-16 17:31:03 +01:00
|
|
|
hr = ISpeechContinuousRecognitionSession_add_ResultGenerated(session, NULL, &token);
|
|
|
|
ok(hr == E_INVALIDARG, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
token.value = 0xdeadbeef;
|
|
|
|
recognition_result_handler_create_static(&result_handler);
|
|
|
|
hr = ISpeechContinuousRecognitionSession_add_ResultGenerated(session, &result_handler.IHandler_RecognitionResult_iface, &token);
|
|
|
|
ok(hr == S_OK, "ISpeechContinuousRecognitionSession_add_ResultGenerated failed, hr %#lx.\n", hr);
|
|
|
|
ok(token.value != 0xdeadbeef, "Got unexpexted token: %#I64x.\n", token.value);
|
|
|
|
|
|
|
|
hr = ISpeechContinuousRecognitionSession_remove_ResultGenerated(session, token);
|
|
|
|
ok(hr == S_OK, "ISpeechContinuousRecognitionSession_remove_ResultGenerated failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-16 17:31:02 +01:00
|
|
|
ref = ISpeechContinuousRecognitionSession_Release(session);
|
|
|
|
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
2022-03-10 18:35:26 +01:00
|
|
|
hr = IInspectable_QueryInterface(inspectable, &IID_IClosable, (void **)&closable);
|
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
ref = IClosable_Release(closable);
|
|
|
|
ok(ref == 3, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
ref = ISpeechRecognizer2_Release(recognizer2);
|
|
|
|
ok(ref == 2, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
ref = ISpeechRecognizer_Release(recognizer);
|
|
|
|
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
ref = IInspectable_Release(inspectable);
|
|
|
|
ok(!ref, "Got unexpected ref %lu.\n", ref);
|
|
|
|
}
|
2022-03-14 11:06:33 +01:00
|
|
|
else if (hr == SPERR_WINRT_INTERNAL_ERROR) /* Not sure when this triggers. Probably if a language pack is not installed. */
|
2022-03-10 18:35:26 +01:00
|
|
|
{
|
|
|
|
win_skip("Could not init SpeechRecognizer with default language!\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
WindowsDeleteString(hstr);
|
|
|
|
|
|
|
|
RoUninitialize();
|
|
|
|
}
|
|
|
|
|
2022-03-14 11:06:35 +01:00
|
|
|
static void test_SpeechRecognitionListConstraint(void)
|
|
|
|
{
|
|
|
|
static const WCHAR *speech_recognition_list_constraint_name = L"Windows.Media.SpeechRecognition.SpeechRecognitionListConstraint";
|
|
|
|
static const WCHAR *speech_constraints[] = { L"This is a test.", L"Number 5!", L"What time is it?" };
|
|
|
|
static const WCHAR *speech_constraint_tag = L"test_message";
|
|
|
|
ISpeechRecognitionListConstraintFactory *listconstraint_factory = NULL;
|
|
|
|
ISpeechRecognitionListConstraint *listconstraint = NULL;
|
|
|
|
ISpeechRecognitionConstraint *constraint = NULL;
|
|
|
|
IVector_HSTRING *hstring_vector = NULL;
|
|
|
|
IActivationFactory *factory = NULL;
|
|
|
|
IInspectable *inspectable = NULL;
|
|
|
|
struct iterator_hstring iterator_hstring;
|
|
|
|
struct iterable_hstring iterable_hstring;
|
|
|
|
HSTRING commands[3], str, tag, tag_out;
|
|
|
|
UINT32 i, vector_size = 0;
|
|
|
|
BOOLEAN enabled;
|
|
|
|
INT32 str_cmp;
|
|
|
|
HRESULT hr;
|
|
|
|
LONG ref;
|
|
|
|
|
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
|
|
|
ok(hr == S_OK, "RoInitialize failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = WindowsCreateString(speech_recognition_list_constraint_name, wcslen(speech_recognition_list_constraint_name), &str);
|
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = WindowsCreateString(speech_constraint_tag, wcslen(speech_constraint_tag), &tag);
|
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(commands); i++)
|
|
|
|
{
|
|
|
|
hr = WindowsCreateString(speech_constraints[i], wcslen(speech_constraints[i]), &commands[i]);
|
|
|
|
ok(hr == S_OK, "WindowsCreateString failed, hr %#lx.\n", hr);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
2022-03-14 11:06:36 +01:00
|
|
|
ok(hr == S_OK || broken(hr == REGDB_E_CLASSNOTREG), "RoGetActivationFactory failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
if (hr == REGDB_E_CLASSNOTREG) /* Win 8 and 8.1 */
|
|
|
|
{
|
|
|
|
win_skip("SpeechRecognitionListConstraint activation factory not available!\n");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = IActivationFactory_ActivateInstance(factory, &inspectable);
|
2022-03-14 11:06:36 +01:00
|
|
|
ok(hr == E_NOTIMPL, "IActivationFactory_ActivateInstance failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
2022-03-14 11:06:36 +01:00
|
|
|
check_refcount(factory, 2);
|
|
|
|
check_interface(factory, &IID_IInspectable, TRUE);
|
|
|
|
check_interface(factory, &IID_IAgileObject, TRUE);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
hr = IActivationFactory_QueryInterface(factory, &IID_ISpeechRecognitionListConstraintFactory, (void **)&listconstraint_factory);
|
|
|
|
ok(hr == S_OK, "IActivationFactory_QueryInterface IID_ISpeechRecognitionListConstraintFactory failed, hr %#lx.\n", hr);
|
|
|
|
|
|
|
|
hr = ISpeechRecognitionListConstraintFactory_Create(listconstraint_factory, NULL, &listconstraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(hr == E_POINTER, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, NULL, NULL, &listconstraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(hr == E_POINTER, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
/* The create functions on Win10 1507 x32 break when handling the given iterator. Seems like a Windows bug. Skipping these tests. */
|
|
|
|
if (broken(is_win10_1507 && (sizeof(void*) == 4)))
|
|
|
|
{
|
|
|
|
win_skip("SpeechRecognitionListConstraint object creation broken on Win10 1507 x32!\n");
|
|
|
|
goto skip_create;
|
|
|
|
}
|
|
|
|
|
|
|
|
iterator_hstring_create_static(&iterator_hstring, commands, ARRAY_SIZE(commands));
|
|
|
|
iterable_hstring_create_static(&iterable_hstring, &iterator_hstring);
|
|
|
|
|
|
|
|
hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, &iterable_hstring.IIterable_HSTRING_iface, NULL, &listconstraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(hr == S_OK, "ISpeechRecognitionListConstraintFactory_Create failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:36 +01:00
|
|
|
|
2022-03-14 11:06:35 +01:00
|
|
|
ref = ISpeechRecognitionListConstraint_Release(listconstraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(ref == 0, "Got unexpected ref %lu.\n", ref);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
iterator_hstring_create_static(&iterator_hstring, commands, ARRAY_SIZE(commands));
|
|
|
|
iterable_hstring_create_static(&iterable_hstring, &iterator_hstring);
|
|
|
|
|
|
|
|
hr = ISpeechRecognitionListConstraintFactory_CreateWithTag(listconstraint_factory, &iterable_hstring.IIterable_HSTRING_iface, tag, &listconstraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(hr == S_OK, "ISpeechRecognitionListConstraintFactory_CreateWithTag failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
2022-03-14 11:06:37 +01:00
|
|
|
check_refcount(listconstraint, 1);
|
|
|
|
check_interface(listconstraint, &IID_IInspectable, TRUE);
|
|
|
|
check_interface(listconstraint, &IID_IAgileObject, TRUE);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
hr = ISpeechRecognitionListConstraint_QueryInterface(listconstraint, &IID_ISpeechRecognitionConstraint, (void **)&constraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(hr == S_OK, "Got unexpected hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
hr = ISpeechRecognitionListConstraint_get_Commands(listconstraint, &hstring_vector);
|
|
|
|
todo_wine ok(hr == S_OK, "ISpeechRecognitionListConstraint_Commands failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-14 11:06:37 +01:00
|
|
|
if (!SUCCEEDED(hr))
|
|
|
|
goto skip_tests;
|
|
|
|
|
2022-03-14 11:06:35 +01:00
|
|
|
hr = IVector_HSTRING_get_Size(hstring_vector, &vector_size);
|
|
|
|
todo_wine ok(hr == S_OK, "IVector_HSTRING_get_Size failed, hr %#lx.\n", hr);
|
|
|
|
todo_wine ok(vector_size == ARRAY_SIZE(commands), "Got unexpected vector_size %u.\n", vector_size);
|
|
|
|
|
|
|
|
for (i = 0; i < vector_size; i++)
|
|
|
|
{
|
|
|
|
HSTRING str;
|
|
|
|
|
|
|
|
hr = IVector_HSTRING_GetAt(hstring_vector, i, &str);
|
|
|
|
todo_wine ok(hr == S_OK, "IVector_HSTRING_GetAt failed, hr %#lx.\n", hr);
|
|
|
|
hr = WindowsCompareStringOrdinal(commands[i], str, &str_cmp);
|
|
|
|
todo_wine ok(hr == S_OK, "WindowsCompareStringOrdinal failed, hr %#lx.\n", hr);
|
|
|
|
todo_wine ok(!str_cmp, "Strings not equal.\n");
|
|
|
|
|
|
|
|
WindowsDeleteString(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
ref = IVector_HSTRING_Release(hstring_vector);
|
|
|
|
todo_wine ok(ref == 0, "Got unexpected ref %lu.\n", ref);
|
|
|
|
|
|
|
|
hr = ISpeechRecognitionConstraint_get_Tag(constraint, &tag_out);
|
|
|
|
todo_wine ok(hr == S_OK, "ISpeechRecognitionConstraint_get_Tag failed, hr %#lx.\n", hr);
|
|
|
|
hr = WindowsCompareStringOrdinal(tag, tag_out, &str_cmp);
|
|
|
|
todo_wine ok(hr == S_OK, "WindowsCompareStringOrdinal failed, hr %#lx.\n", hr);
|
|
|
|
todo_wine ok(!str_cmp, "Strings not equal.\n");
|
|
|
|
hr = WindowsDeleteString(tag_out);
|
|
|
|
todo_wine ok(hr == S_OK, "WindowsDeleteString failed, hr %#lx.\n", hr);
|
|
|
|
|
2022-03-16 17:31:00 +01:00
|
|
|
skip_tests:
|
2022-03-14 11:06:35 +01:00
|
|
|
hr = ISpeechRecognitionConstraint_put_IsEnabled(constraint, TRUE);
|
2022-03-16 17:31:00 +01:00
|
|
|
ok(hr == S_OK, "ISpeechRecognitionConstraint_put_IsEnabled failed, hr %#lx.\n", hr);
|
2022-03-14 11:06:35 +01:00
|
|
|
hr = ISpeechRecognitionConstraint_get_IsEnabled(constraint, &enabled);
|
2022-03-16 17:31:00 +01:00
|
|
|
ok(hr == S_OK, "ISpeechRecognitionConstraint_get_IsEnabled failed, hr %#lx.\n", hr);
|
|
|
|
ok(enabled, "ListConstraint didn't get enabled.\n");
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
ref = ISpeechRecognitionConstraint_Release(constraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
ref = ISpeechRecognitionListConstraint_Release(listconstraint);
|
2022-03-14 11:06:37 +01:00
|
|
|
ok(ref == 0, "Got unexpected ref %lu.\n", ref);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
skip_create:
|
|
|
|
ref = ISpeechRecognitionListConstraintFactory_Release(listconstraint_factory);
|
2022-03-14 11:06:36 +01:00
|
|
|
ok(ref == 2, "Got unexpected ref %lu.\n", ref);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
ref = IActivationFactory_Release(factory);
|
2022-03-14 11:06:36 +01:00
|
|
|
ok(ref == 1, "Got unexpected ref %lu.\n", ref);
|
2022-03-14 11:06:35 +01:00
|
|
|
|
|
|
|
done:
|
|
|
|
WindowsDeleteString(str);
|
|
|
|
WindowsDeleteString(tag);
|
|
|
|
for (i = 0; i < ARRAY_SIZE(commands); i++)
|
|
|
|
WindowsDeleteString(commands[i]);
|
|
|
|
|
|
|
|
RoUninitialize();
|
|
|
|
}
|
|
|
|
|
2021-03-18 09:58:43 +01:00
|
|
|
START_TEST(speech)
|
2021-03-12 12:31:09 +01:00
|
|
|
{
|
2022-03-09 18:45:34 +01:00
|
|
|
test_ActivationFactory();
|
2021-03-12 12:31:09 +01:00
|
|
|
test_SpeechSynthesizer();
|
|
|
|
test_VoiceInformation();
|
2022-03-10 18:35:26 +01:00
|
|
|
test_SpeechRecognizer();
|
2022-03-14 11:06:35 +01:00
|
|
|
test_SpeechRecognitionListConstraint();
|
2021-03-12 12:31:09 +01:00
|
|
|
}
|