2002-12-23 03:02:49 +01:00
/*
* SafeArray test program
*
* Copyright 2002 Marcus Meissner
*
* 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
2006-05-18 14:49:52 +02:00
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
2002-12-23 03:02:49 +01:00
*
*/
2003-09-06 01:08:26 +02:00
# include <stdarg.h>
2002-12-23 03:02:49 +01:00
# include <stdio.h>
# include <math.h>
# include <float.h>
2004-09-01 06:53:52 +02:00
# define COBJMACROS
2010-12-14 12:02:45 +01:00
# define CONST_VTABLE
2002-12-23 03:02:49 +01:00
# include "wine/test.h"
2003-09-06 01:08:26 +02:00
# include "windef.h"
2002-12-23 03:02:49 +01:00
# include "winbase.h"
# include "winuser.h"
# include "wingdi.h"
# include "winnls.h"
2013-10-24 23:25:43 +02:00
# include "winsock2.h"
2002-12-23 03:02:49 +01:00
# include "winerror.h"
# include "winnt.h"
# include "wtypes.h"
# include "oleauto.h"
2014-01-08 18:39:42 +01:00
# ifndef FADF_CREATEVECTOR
const USHORT FADF_CREATEVECTOR = 0x2000 ;
# endif
2003-12-15 22:11:25 +01:00
static HMODULE hOleaut32 ;
static HRESULT ( WINAPI * pSafeArrayAllocDescriptorEx ) ( VARTYPE , UINT , SAFEARRAY * * ) ;
static HRESULT ( WINAPI * pSafeArrayCopyData ) ( SAFEARRAY * , SAFEARRAY * ) ;
static HRESULT ( WINAPI * pSafeArrayGetIID ) ( SAFEARRAY * , GUID * ) ;
static HRESULT ( WINAPI * pSafeArraySetIID ) ( SAFEARRAY * , REFGUID ) ;
static HRESULT ( WINAPI * pSafeArrayGetVartype ) ( SAFEARRAY * , VARTYPE * ) ;
2004-03-17 21:47:42 +01:00
static HRESULT ( WINAPI * pSafeArrayGetRecordInfo ) ( SAFEARRAY * , IRecordInfo * * ) ;
2003-12-15 22:11:25 +01:00
static SAFEARRAY * ( WINAPI * pSafeArrayCreateEx ) ( VARTYPE , UINT , SAFEARRAYBOUND * , LPVOID ) ;
2004-03-17 21:47:42 +01:00
static SAFEARRAY * ( WINAPI * pSafeArrayCreateVector ) ( VARTYPE , LONG , ULONG ) ;
2003-12-15 22:11:25 +01:00
# define GETPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func)
2013-06-26 23:47:57 +02:00
/* Has I8/UI8 data type? */
static BOOL has_i8 ;
/* Has INT_PTR/UINT_PTR type? */
static BOOL has_int_ptr ;
2005-05-20 21:00:02 +02:00
2014-01-08 18:39:42 +01:00
static const USHORT ignored_copy_features [ ] =
{
FADF_AUTO ,
FADF_STATIC ,
FADF_EMBEDDED ,
FADF_FIXEDSIZE
} ;
2003-12-15 22:11:25 +01:00
# define START_REF_COUNT 1
# define RECORD_SIZE 64
# define RECORD_SIZE_FAIL 17
/************************************************************************
* Dummy IRecordInfo Implementation
*/
typedef struct IRecordInfoImpl
{
2010-12-14 12:02:45 +01:00
IRecordInfo IRecordInfo_iface ;
2005-08-03 13:03:05 +02:00
LONG ref ;
2014-02-17 09:30:09 +01:00
unsigned int sizeCalled ;
unsigned int clearCalled ;
unsigned int recordcopy ;
2003-12-15 22:11:25 +01:00
} IRecordInfoImpl ;
2010-12-14 12:02:45 +01:00
static inline IRecordInfoImpl * impl_from_IRecordInfo ( IRecordInfo * iface )
{
return CONTAINING_RECORD ( iface , IRecordInfoImpl , IRecordInfo_iface ) ;
}
2014-01-10 09:17:42 +01:00
static HRESULT WINAPI RecordInfo_QueryInterface ( IRecordInfo * iface , REFIID riid , void * * obj )
2003-12-15 22:11:25 +01:00
{
2014-01-10 09:17:42 +01:00
* obj = NULL ;
2003-12-15 22:11:25 +01:00
2014-01-10 09:17:42 +01:00
if ( IsEqualIID ( riid , & IID_IUnknown ) | |
IsEqualIID ( riid , & IID_IRecordInfo ) )
{
* obj = iface ;
IRecordInfo_AddRef ( iface ) ;
return S_OK ;
}
return E_NOINTERFACE ;
2003-12-15 22:11:25 +01:00
}
2014-01-10 09:17:42 +01:00
static ULONG WINAPI RecordInfo_AddRef ( IRecordInfo * iface )
2003-12-15 22:11:25 +01:00
{
2010-12-14 12:02:45 +01:00
IRecordInfoImpl * This = impl_from_IRecordInfo ( iface ) ;
2005-01-09 18:29:21 +01:00
return InterlockedIncrement ( & This - > ref ) ;
2003-12-15 22:11:25 +01:00
}
2014-01-10 09:17:42 +01:00
static ULONG WINAPI RecordInfo_Release ( IRecordInfo * iface )
2003-12-15 22:11:25 +01:00
{
2010-12-14 12:02:45 +01:00
IRecordInfoImpl * This = impl_from_IRecordInfo ( iface ) ;
2011-02-01 12:12:46 +01:00
ULONG ref = InterlockedDecrement ( & This - > ref ) ;
if ( ! ref )
HeapFree ( GetProcessHeap ( ) , 0 , This ) ;
return ref ;
2003-12-15 22:11:25 +01:00
}
2014-01-10 09:17:42 +01:00
static HRESULT WINAPI RecordInfo_RecordInit ( IRecordInfo * iface , PVOID pvNew )
{
2014-02-20 16:12:34 +01:00
ok ( 0 , " unexpected call \n " ) ;
2014-01-10 09:17:42 +01:00
return E_NOTIMPL ;
}
2003-12-15 22:11:25 +01:00
static BOOL fail_GetSize ; /* Whether to fail the GetSize call */
2014-01-10 09:17:42 +01:00
static HRESULT WINAPI RecordInfo_RecordClear ( IRecordInfo * iface , PVOID pvExisting )
2003-12-15 22:11:25 +01:00
{
2010-12-14 12:02:45 +01:00
IRecordInfoImpl * This = impl_from_IRecordInfo ( iface ) ;
2003-12-15 22:11:25 +01:00
This - > clearCalled + + ;
return S_OK ;
}
2014-01-10 09:17:42 +01:00
static HRESULT WINAPI RecordInfo_RecordCopy ( IRecordInfo * iface , PVOID pvExisting , PVOID pvNew )
{
2014-02-17 09:30:09 +01:00
IRecordInfoImpl * This = impl_from_IRecordInfo ( iface ) ;
This - > recordcopy + + ;
return S_OK ;
2014-01-10 09:17:42 +01:00
}
static HRESULT WINAPI RecordInfo_GetGuid ( IRecordInfo * iface , GUID * pguid )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_GetName ( IRecordInfo * iface , BSTR * pbstrName )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_GetSize ( IRecordInfo * iface , ULONG * size )
2003-12-15 22:11:25 +01:00
{
2010-12-14 12:02:45 +01:00
IRecordInfoImpl * This = impl_from_IRecordInfo ( iface ) ;
2003-12-15 22:11:25 +01:00
This - > sizeCalled + + ;
if ( fail_GetSize )
2011-01-18 17:52:19 +01:00
{
* size = RECORD_SIZE_FAIL ;
2003-12-15 22:11:25 +01:00
return E_UNEXPECTED ;
2011-01-18 17:52:19 +01:00
}
2003-12-15 22:11:25 +01:00
* size = RECORD_SIZE ;
return S_OK ;
}
2014-01-10 09:17:42 +01:00
static HRESULT WINAPI RecordInfo_GetTypeInfo ( IRecordInfo * iface , ITypeInfo * * ppTypeInfo )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_GetField ( IRecordInfo * iface , PVOID pvData ,
LPCOLESTR szFieldName , VARIANT * pvarField )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_GetFieldNoCopy ( IRecordInfo * iface , PVOID pvData ,
LPCOLESTR szFieldName , VARIANT * pvarField , PVOID * ppvDataCArray )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_PutField ( IRecordInfo * iface , ULONG wFlags , PVOID pvData ,
LPCOLESTR szFieldName , VARIANT * pvarField )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_PutFieldNoCopy ( IRecordInfo * iface , ULONG wFlags ,
PVOID pvData , LPCOLESTR szFieldName , VARIANT * pvarField )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_GetFieldNames ( IRecordInfo * iface , ULONG * pcNames ,
BSTR * rgBstrNames )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static BOOL WINAPI RecordInfo_IsMatchingType ( IRecordInfo * iface , IRecordInfo * info2 )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static PVOID WINAPI RecordInfo_RecordCreate ( IRecordInfo * iface )
{
ok ( 0 , " unexpected call \n " ) ;
return NULL ;
}
static HRESULT WINAPI RecordInfo_RecordCreateCopy ( IRecordInfo * iface , PVOID pvSource ,
PVOID * ppvDest )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static HRESULT WINAPI RecordInfo_RecordDestroy ( IRecordInfo * iface , PVOID pvRecord )
{
ok ( 0 , " unexpected call \n " ) ;
return E_NOTIMPL ;
}
static const IRecordInfoVtbl RecordInfoVtbl =
{
RecordInfo_QueryInterface ,
RecordInfo_AddRef ,
RecordInfo_Release ,
RecordInfo_RecordInit ,
RecordInfo_RecordClear ,
RecordInfo_RecordCopy ,
RecordInfo_GetGuid ,
RecordInfo_GetName ,
RecordInfo_GetSize ,
RecordInfo_GetTypeInfo ,
RecordInfo_GetField ,
RecordInfo_GetFieldNoCopy ,
RecordInfo_PutField ,
RecordInfo_PutFieldNoCopy ,
RecordInfo_GetFieldNames ,
RecordInfo_IsMatchingType ,
RecordInfo_RecordCreate ,
RecordInfo_RecordCreateCopy ,
RecordInfo_RecordDestroy
2003-12-15 22:11:25 +01:00
} ;
2014-01-10 09:17:42 +01:00
static IRecordInfoImpl * IRecordInfoImpl_Construct ( void )
{
IRecordInfoImpl * rec ;
rec = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( IRecordInfoImpl ) ) ;
rec - > IRecordInfo_iface . lpVtbl = & RecordInfoVtbl ;
rec - > ref = START_REF_COUNT ;
rec - > clearCalled = 0 ;
rec - > sizeCalled = 0 ;
return rec ;
}
2003-12-15 22:11:25 +01:00
static DWORD SAFEARRAY_GetVTSize ( VARTYPE vt )
{
switch ( vt )
{
case VT_I1 :
case VT_UI1 : return sizeof ( BYTE ) ;
case VT_BOOL :
case VT_I2 :
case VT_UI2 : return sizeof ( SHORT ) ;
case VT_I4 :
case VT_UI4 :
case VT_R4 :
case VT_ERROR : return sizeof ( LONG ) ;
2013-06-26 23:47:20 +02:00
case VT_R8 : return sizeof ( LONG64 ) ;
2003-12-15 22:11:25 +01:00
case VT_I8 :
2004-03-17 21:47:42 +01:00
case VT_UI8 :
2013-06-26 23:47:57 +02:00
if ( has_i8 )
2004-03-17 21:47:42 +01:00
return sizeof ( LONG64 ) ;
break ;
2003-12-15 22:11:25 +01:00
case VT_INT :
case VT_UINT : return sizeof ( INT ) ;
case VT_INT_PTR :
2005-05-20 21:00:02 +02:00
case VT_UINT_PTR :
2013-06-26 23:47:57 +02:00
if ( has_int_ptr )
2005-05-20 21:00:02 +02:00
return sizeof ( UINT_PTR ) ;
break ;
2003-12-15 22:11:25 +01:00
case VT_CY : return sizeof ( CY ) ;
case VT_DATE : return sizeof ( DATE ) ;
case VT_BSTR : return sizeof ( BSTR ) ;
case VT_DISPATCH : return sizeof ( LPDISPATCH ) ;
case VT_VARIANT : return sizeof ( VARIANT ) ;
case VT_UNKNOWN : return sizeof ( LPUNKNOWN ) ;
2013-06-26 23:45:25 +02:00
case VT_DECIMAL : return sizeof ( DECIMAL ) ;
2003-12-15 22:11:25 +01:00
}
return 0 ;
}
2003-01-07 20:40:40 +01:00
2005-05-20 21:00:02 +02:00
static void check_for_VT_INT_PTR ( void )
{
/* Set a global flag if VT_INT_PTR is supported */
SAFEARRAY * a ;
SAFEARRAYBOUND bound ;
bound . cElements = 0 ;
bound . lLbound = 0 ;
a = SafeArrayCreate ( VT_INT_PTR , 1 , & bound ) ;
if ( a ) {
2011-01-22 23:24:06 +01:00
HRESULT hres ;
2005-05-20 21:00:02 +02:00
trace ( " VT_INT_PTR is supported \n " ) ;
2013-06-26 23:47:57 +02:00
has_int_ptr = TRUE ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( a ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2005-05-20 21:00:02 +02:00
}
else {
trace ( " VT_INT_PTR is not supported \n " ) ;
2013-06-26 23:47:57 +02:00
has_int_ptr = FALSE ;
2005-05-20 21:00:02 +02:00
}
}
2002-12-23 03:02:49 +01:00
# define VARTYPE_NOT_SUPPORTED 0
2003-01-03 00:13:56 +01:00
static struct {
2003-01-05 02:03:12 +01:00
VARTYPE vt ; /* VT */
2003-01-03 00:13:56 +01:00
UINT elemsize ; /* elementsize by VT */
UINT expflags ; /* fFeatures from SafeArrayAllocDescriptorEx */
UINT addflags ; /* additional fFeatures from SafeArrayCreate */
} vttypes [ ] = {
{ VT_EMPTY , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_NULL , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_I2 , 2 , FADF_HAVEVARTYPE , 0 } ,
{ VT_I4 , 4 , FADF_HAVEVARTYPE , 0 } ,
{ VT_R4 , 4 , FADF_HAVEVARTYPE , 0 } ,
{ VT_R8 , 8 , FADF_HAVEVARTYPE , 0 } ,
{ VT_CY , 8 , FADF_HAVEVARTYPE , 0 } ,
{ VT_DATE , 8 , FADF_HAVEVARTYPE , 0 } ,
{ VT_BSTR , sizeof ( BSTR ) , FADF_HAVEVARTYPE , FADF_BSTR } ,
{ VT_DISPATCH , sizeof ( LPDISPATCH ) , FADF_HAVEIID , FADF_DISPATCH } ,
{ VT_ERROR , 4 , FADF_HAVEVARTYPE , 0 } ,
{ VT_BOOL , 2 , FADF_HAVEVARTYPE , 0 } ,
{ VT_VARIANT , sizeof ( VARIANT ) , FADF_HAVEVARTYPE , FADF_VARIANT } ,
{ VT_UNKNOWN , sizeof ( LPUNKNOWN ) , FADF_HAVEIID , FADF_UNKNOWN } ,
{ VT_DECIMAL , sizeof ( DECIMAL ) , FADF_HAVEVARTYPE , 0 } ,
{ 15 , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } , /* no VT_xxx */
{ VT_I1 , 1 , FADF_HAVEVARTYPE , 0 } ,
{ VT_UI1 , 1 , FADF_HAVEVARTYPE , 0 } ,
{ VT_UI2 , 2 , FADF_HAVEVARTYPE , 0 } ,
{ VT_UI4 , 4 , FADF_HAVEVARTYPE , 0 } ,
{ VT_I8 , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_UI8 , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_INT , sizeof ( INT ) , FADF_HAVEVARTYPE , 0 } ,
{ VT_UINT , sizeof ( UINT ) , FADF_HAVEVARTYPE , 0 } ,
{ VT_VOID , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_HRESULT , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_PTR , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_SAFEARRAY , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_CARRAY , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_USERDEFINED , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_LPSTR , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_LPWSTR , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_FILETIME , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_RECORD , VARTYPE_NOT_SUPPORTED , FADF_RECORD , 0 } ,
{ VT_BLOB , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_STREAM , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_STORAGE , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_STREAMED_OBJECT , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_STORED_OBJECT , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_BLOB_OBJECT , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_CF , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
{ VT_CLSID , VARTYPE_NOT_SUPPORTED , FADF_HAVEVARTYPE , 0 } ,
2002-12-23 03:02:49 +01:00
} ;
2003-12-15 22:11:25 +01:00
static void test_safearray ( void )
2002-12-23 03:02:49 +01:00
{
2003-01-03 00:13:56 +01:00
SAFEARRAY * a , b , * c ;
2009-01-08 13:02:32 +01:00
unsigned int i , diff ;
2006-06-16 04:52:54 +02:00
LONG indices [ 2 ] ;
2002-12-23 03:02:49 +01:00
HRESULT hres ;
2003-06-13 18:35:07 +02:00
SAFEARRAYBOUND bound , bounds [ 2 ] ;
2012-08-17 02:21:25 +02:00
VARIANT v , d ;
2003-01-03 00:13:56 +01:00
LPVOID data ;
IID iid ;
VARTYPE vt ;
2003-06-13 18:35:07 +02:00
LONG l ;
unsigned char * ptr1 , * ptr2 ;
2002-12-23 03:02:49 +01:00
2005-01-31 12:31:50 +01:00
hres = SafeArrayDestroy ( NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SafeArrayDestroy( NULL) returned 0x%x \n " , hres ) ;
2005-01-31 12:31:50 +01:00
2002-12-23 03:02:49 +01:00
bound . cElements = 1 ;
bound . lLbound = 0 ;
a = SafeArrayCreate ( - 1 , 1 , & bound ) ;
2003-12-15 22:11:25 +01:00
ok ( NULL = = a , " SAC(-1,1,[1,0]) not failed? \n " ) ;
2003-06-13 18:35:07 +02:00
2003-12-30 20:06:41 +01:00
bound . cElements = 0 ;
bound . lLbound = 42 ;
a = SafeArrayCreate ( VT_I4 , 1 , & bound ) ;
ok ( NULL ! = a , " SAC(VT_I4,1,[0,0]) failed. \n " ) ;
hres = SafeArrayGetLBound ( a , 1 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGLB of 0 size dimensioned array failed with %x \n " , hres ) ;
ok ( l = = 42 , " SAGLB of 0 size dimensioned array failed to return 42, but returned %d \n " , l ) ;
2003-12-30 20:06:41 +01:00
hres = SafeArrayGetUBound ( a , 1 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGUB of 0 size dimensioned array failed with %x \n " , hres ) ;
ok ( l = = 41 , " SAGUB of 0 size dimensioned array failed to return 41, but returned %d \n " , l ) ;
2004-08-24 20:42:53 +02:00
hres = SafeArrayAccessData ( a , & data ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SafeArrayAccessData of 0 size dimensioned array failed with %x \n " , hres ) ;
2004-08-24 20:42:53 +02:00
SafeArrayUnaccessData ( a ) ;
2003-12-30 20:06:41 +01:00
bound . cElements = 2 ;
hres = SafeArrayRedim ( a , & bound ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAR of a 0 elements dimension failed with hres %x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
bound . cElements = 0 ;
hres = SafeArrayRedim ( a , & bound ) ;
2004-03-17 21:47:42 +01:00
ok ( hres = = S_OK | | hres = = E_OUTOFMEMORY ,
2006-10-12 13:56:01 +02:00
" SAR to a 0 elements dimension failed with hres %x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
hres = SafeArrayDestroy ( a ) ;
2011-08-03 23:50:18 +02:00
ok ( hres = = S_OK , " SAD of 0 dim array failed with hres %x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
2006-06-04 13:43:13 +02:00
SafeArrayAllocDescriptor ( 2 , & a ) ;
a - > rgsabound [ 0 ] . cElements = 2 ;
a - > rgsabound [ 0 ] . lLbound = 1 ;
a - > rgsabound [ 1 ] . cElements = 4 ;
a - > rgsabound [ 1 ] . lLbound = 1 ;
a - > cbElements = 2 ;
2013-07-02 17:08:55 +02:00
hres = SafeArrayAllocData ( a ) ;
ok ( hres = = S_OK , " SafeArrayAllocData failed with hres %x \n " , hres ) ;
2006-06-04 13:43:13 +02:00
indices [ 0 ] = 4 ;
indices [ 1 ] = 2 ;
hres = SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr1 ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAPOI failed with hres %x \n " , hres ) ;
2006-06-04 13:43:13 +02:00
SafeArrayAccessData ( a , ( void * * ) & ptr2 ) ;
ok ( ptr1 - ptr2 = = 14 , " SAPOI got wrong ptr \n " ) ;
2006-06-09 12:02:04 +02:00
* ( WORD * ) ptr1 = 0x55aa ;
2006-06-04 13:43:13 +02:00
SafeArrayUnaccessData ( a ) ;
2006-06-09 12:02:04 +02:00
bound . cElements = 10 ;
bound . lLbound = 1 ;
SafeArrayRedim ( a , & bound ) ;
ptr1 = NULL ;
SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr1 ) ;
ok ( * ( WORD * ) ptr1 = = 0x55aa , " Data not preserved when resizing array \n " ) ;
bound . cElements = 10 ;
bound . lLbound = 0 ;
SafeArrayRedim ( a , & bound ) ;
SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr1 ) ;
2015-06-15 14:24:18 +02:00
ok ( * ( WORD * ) ptr1 = = 0 | |
broken ( * ( WORD * ) ptr1 ! = 0 ) , /* Win 2003 */
" Expanded area not zero-initialized \n " ) ;
2006-06-09 12:02:04 +02:00
indices [ 1 ] = 1 ;
SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr1 ) ;
2015-06-15 14:24:18 +02:00
ok ( * ( WORD * ) ptr1 = = 0x55aa | |
broken ( * ( WORD * ) ptr1 ! = 0x55aa ) , /* Win 2003 */
" Data not preserved when resizing array \n " ) ;
2006-06-09 12:02:04 +02:00
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( a ) ;
2011-08-03 23:50:18 +02:00
ok ( hres = = S_OK , " SAD failed with hres %x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
2003-12-30 20:06:41 +01:00
bounds [ 0 ] . cElements = 0 ; bounds [ 0 ] . lLbound = 1 ;
bounds [ 1 ] . cElements = 2 ; bounds [ 1 ] . lLbound = 23 ;
a = SafeArrayCreate ( VT_I4 , 2 , bounds ) ;
ok ( a ! = NULL , " SAC(VT_INT32,2,...) with 0 element dim failed. \n " ) ;
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( a ) ;
2011-08-03 23:50:18 +02:00
ok ( hres = = S_OK , " SAD failed with hres %x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
bounds [ 0 ] . cElements = 1 ; bounds [ 0 ] . lLbound = 1 ;
bounds [ 1 ] . cElements = 0 ; bounds [ 1 ] . lLbound = 23 ;
a = SafeArrayCreate ( VT_I4 , 2 , bounds ) ;
ok ( a ! = NULL , " SAC(VT_INT32,2,...) with 0 element dim failed. \n " ) ;
2003-06-13 18:35:07 +02:00
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( a ) ;
2011-08-03 23:50:18 +02:00
ok ( hres = = S_OK , " SAD failed with hres %x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
2003-06-13 18:35:07 +02:00
bounds [ 0 ] . cElements = 42 ; bounds [ 0 ] . lLbound = 1 ;
bounds [ 1 ] . cElements = 2 ; bounds [ 1 ] . lLbound = 23 ;
a = SafeArrayCreate ( VT_I4 , 2 , bounds ) ;
2003-12-15 22:11:25 +01:00
ok ( a ! = NULL , " SAC(VT_INT32,2,...) failed. \n " ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetLBound ( a , 0 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADINDEX , " SAGLB 0 failed with %x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetLBound ( a , 1 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGLB 1 failed with %x \n " , hres ) ;
ok ( l = = 1 , " SAGLB 1 returned %d instead of 1 \n " , l ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetLBound ( a , 2 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGLB 2 failed with %x \n " , hres ) ;
ok ( l = = 23 , " SAGLB 2 returned %d instead of 23 \n " , l ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetLBound ( a , 3 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADINDEX , " SAGLB 3 failed with %x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetUBound ( a , 0 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADINDEX , " SAGUB 0 failed with %x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetUBound ( a , 1 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGUB 1 failed with %x \n " , hres ) ;
ok ( l = = 42 , " SAGUB 1 returned %d instead of 42 \n " , l ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetUBound ( a , 2 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGUB 2 failed with %x \n " , hres ) ;
ok ( l = = 24 , " SAGUB 2 returned %d instead of 24 \n " , l ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayGetUBound ( a , 3 , & l ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADINDEX , " SAGUB 3 failed with %x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
i = SafeArrayGetDim ( a ) ;
2003-12-15 22:11:25 +01:00
ok ( i = = 2 , " getdims of 2 din array returned %d \n " , i ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 0 ;
indices [ 1 ] = 23 ;
hres = SafeArrayGetElement ( a , indices , & i ) ;
2006-10-12 13:56:01 +02:00
ok ( DISP_E_BADINDEX = = hres , " SAGE failed [0,23], hres 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 1 ;
indices [ 1 ] = 22 ;
hres = SafeArrayGetElement ( a , indices , & i ) ;
2006-10-12 13:56:01 +02:00
ok ( DISP_E_BADINDEX = = hres , " SAGE failed [1,22], hres 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 1 ;
indices [ 1 ] = 23 ;
hres = SafeArrayGetElement ( a , indices , & i ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAGE failed [1,23], hres 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 1 ;
indices [ 1 ] = 25 ;
hres = SafeArrayGetElement ( a , indices , & i ) ;
2006-10-12 13:56:01 +02:00
ok ( DISP_E_BADINDEX = = hres , " SAGE failed [1,24], hres 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 3 ;
indices [ 1 ] = 23 ;
hres = SafeArrayGetElement ( a , indices , & i ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAGE failed [42,23], hres 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayAccessData ( a , ( void * * ) & ptr1 ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAAD failed with 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 3 ;
indices [ 1 ] = 23 ;
hres = SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr2 ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAPOI failed [1,23], hres 0x%x \n " , hres ) ;
2009-01-08 13:02:32 +01:00
diff = ptr2 - ptr1 ;
ok ( diff = = 8 , " ptr difference is not 8, but %d (%p vs %p) \n " , diff , ptr2 , ptr1 ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 3 ;
indices [ 1 ] = 24 ;
hres = SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr2 ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAPOI failed [5,24], hres 0x%x \n " , hres ) ;
2009-01-08 13:02:32 +01:00
diff = ptr2 - ptr1 ;
ok ( diff = = 176 , " ptr difference is not 176, but %d (%p vs %p) \n " , diff , ptr2 , ptr1 ) ;
2003-06-13 18:35:07 +02:00
indices [ 0 ] = 20 ;
indices [ 1 ] = 23 ;
hres = SafeArrayPtrOfIndex ( a , indices , ( void * * ) & ptr2 ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAPOI failed [20,23], hres 0x%x \n " , hres ) ;
2009-01-08 13:02:32 +01:00
diff = ptr2 - ptr1 ;
ok ( diff = = 76 , " ptr difference is not 76, but %d (%p vs %p) \n " , diff , ptr2 , ptr1 ) ;
2003-06-13 18:35:07 +02:00
hres = SafeArrayUnaccessData ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( S_OK = = hres , " SAUAD failed with 0x%x \n " , hres ) ;
2003-06-13 18:35:07 +02:00
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( a ) ;
2011-08-03 23:50:18 +02:00
ok ( hres = = S_OK , " SAD failed with hres %x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
2002-12-23 03:02:49 +01:00
for ( i = 0 ; i < sizeof ( vttypes ) / sizeof ( vttypes [ 0 ] ) ; i + + ) {
2013-06-26 23:47:57 +02:00
if ( ( i = = VT_I8 | | i = = VT_UI8 ) & & has_i8 )
2004-03-17 21:47:42 +01:00
{
vttypes [ i ] . elemsize = sizeof ( LONG64 ) ;
}
2003-12-15 22:11:25 +01:00
2004-03-17 21:47:42 +01:00
a = SafeArrayCreate ( vttypes [ i ] . vt , 1 , & bound ) ;
ok ( ( ! a & & ! vttypes [ i ] . elemsize ) | |
2013-06-26 23:43:18 +02:00
( a & & vttypes [ i ] . elemsize = = a - > cbElements ) ,
2006-10-12 13:56:01 +02:00
" SAC(%d,1,[1,0]), %p result %d, expected %d \n " ,
2004-03-17 21:47:42 +01:00
vttypes [ i ] . vt , a , ( a ? a - > cbElements : 0 ) , vttypes [ i ] . elemsize ) ;
if ( a )
{
ok ( a - > fFeatures = = ( vttypes [ i ] . expflags | vttypes [ i ] . addflags ) ,
" SAC of %d returned feature flags %x, expected %x \n " ,
vttypes [ i ] . vt , a - > fFeatures ,
vttypes [ i ] . expflags | vttypes [ i ] . addflags ) ;
ok ( SafeArrayGetElemsize ( a ) = = vttypes [ i ] . elemsize ,
" SAGE for vt %d returned elemsize %d instead of expected %d \n " ,
vttypes [ i ] . vt , SafeArrayGetElemsize ( a ) , vttypes [ i ] . elemsize ) ;
}
2003-01-03 00:13:56 +01:00
if ( ! a ) continue ;
2004-03-17 21:47:42 +01:00
if ( pSafeArrayGetVartype )
{
2003-01-07 20:40:40 +01:00
hres = pSafeArrayGetVartype ( a , & vt ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGVT of arra y with vt %d failed with %x \n " , vttypes [ i ] . vt , hres ) ;
2008-07-25 00:32:35 +02:00
/* Windows prior to Vista returns VT_UNKNOWN instead of VT_DISPATCH */
ok ( broken ( vt = = VT_UNKNOWN ) | | vt = = vttypes [ i ] . vt , " SAGVT of array with vt %d returned %d \n " , vttypes [ i ] . vt , vt ) ;
2003-01-07 20:40:40 +01:00
}
2003-01-03 00:13:56 +01:00
hres = SafeArrayCopy ( a , & c ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " failed to copy safearray of vt %d with hres %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-03 00:13:56 +01:00
2006-10-12 13:56:01 +02:00
ok ( vttypes [ i ] . elemsize = = c - > cbElements , " copy of SAC(%d,1,[1,0]), result %d, expected %d \n " , vttypes [ i ] . vt , ( c ? c - > cbElements : 0 ) , vttypes [ i ] . elemsize
2003-01-03 00:13:56 +01:00
) ;
2003-12-15 22:11:25 +01:00
ok ( c - > fFeatures = = ( vttypes [ i ] . expflags | vttypes [ i ] . addflags ) , " SAC of %d returned feature flags %x, expected %x \n " , vttypes [ i ] . vt , c - > fFeatures , vttypes [ i ] . expflags | vttypes [ i ] . addflags ) ;
ok ( SafeArrayGetElemsize ( c ) = = vttypes [ i ] . elemsize , " SAGE for vt %d returned elemsize %d instead of expected %d \n " , vttypes [ i ] . vt , SafeArrayGetElemsize ( c ) , vttypes [ i ] . elemsize ) ;
2003-01-03 00:13:56 +01:00
2003-01-07 20:40:40 +01:00
if ( pSafeArrayGetVartype ) {
hres = pSafeArrayGetVartype ( c , & vt ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGVT of array with vt %d failed with %x \n " , vttypes [ i ] . vt , hres ) ;
2008-07-25 00:32:35 +02:00
/* Windows prior to Vista returns VT_UNKNOWN instead of VT_DISPATCH */
ok ( broken ( vt = = VT_UNKNOWN ) | | vt = = vttypes [ i ] . vt , " SAGVT of array with vt %d returned %d \n " , vttypes [ i ] . vt , vt ) ;
2003-01-07 20:40:40 +01:00
}
if ( pSafeArrayCopyData ) {
hres = pSafeArrayCopyData ( a , c ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " failed to copy safearray data of vt %d with hres %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-07 20:40:40 +01:00
hres = SafeArrayDestroyData ( c ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SADD of copy of array with vt %d failed with hres %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-07 20:40:40 +01:00
}
2003-01-03 00:13:56 +01:00
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( c ) ;
2011-08-03 23:50:18 +02:00
ok ( hres = = S_OK , " SAD failed with hres %x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
2003-01-03 00:13:56 +01:00
hres = SafeArrayDestroy ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAD of array with vt %d failed with hres %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-03 00:13:56 +01:00
}
/* Test conversion of type|VT_ARRAY <-> VT_BSTR */
bound . lLbound = 0 ;
bound . cElements = 10 ;
a = SafeArrayCreate ( VT_UI1 , 1 , & bound ) ;
2003-12-15 22:11:25 +01:00
ok ( a ! = NULL , " SAC failed. \n " ) ;
ok ( S_OK = = SafeArrayAccessData ( a , & data ) , " SACD failed \n " ) ;
memcpy ( data , " Hello World \n " , 10 ) ;
ok ( S_OK = = SafeArrayUnaccessData ( a ) , " SAUD failed \n " ) ;
2003-01-03 00:13:56 +01:00
V_VT ( & v ) = VT_ARRAY | VT_UI1 ;
V_ARRAY ( & v ) = a ;
hres = VariantChangeTypeEx ( & v , & v , 0 , 0 , VT_BSTR ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CTE VT_ARRAY|VT_UI1 -> VT_BSTR failed with %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
ok ( V_VT ( & v ) = = VT_BSTR , " CTE VT_ARRAY|VT_UI1 -> VT_BSTR did not return VT_BSTR, but %d.v \n " , V_VT ( & v ) ) ;
ok ( V_BSTR ( & v ) [ 0 ] = = 0x6548 , " First letter are not 'He', but %x \n " , V_BSTR ( & v ) [ 0 ] ) ;
2008-01-31 15:45:52 +01:00
VariantClear ( & v ) ;
2003-01-03 00:13:56 +01:00
2012-08-17 02:21:25 +02:00
VariantInit ( & d ) ;
V_VT ( & v ) = VT_BSTR ;
V_BSTR ( & v ) = SysAllocStringLen ( NULL , 0 ) ;
hres = VariantChangeTypeEx ( & d , & v , 0 , 0 , VT_UI1 | VT_ARRAY ) ;
ok ( hres = = S_OK , " CTE VT_BSTR -> VT_UI1|VT_ARRAY failed with %x \n " , hres ) ;
ok ( V_VT ( & d ) = = ( VT_UI1 | VT_ARRAY ) , " CTE BSTR -> VT_UI1|VT_ARRAY did not return VT_UI1|VT_ARRAY, but %d.v \n " , V_VT ( & v ) ) ;
VariantClear ( & v ) ;
VariantClear ( & d ) ;
2003-01-03 00:13:56 +01:00
/* check locking functions */
a = SafeArrayCreate ( VT_I4 , 1 , & bound ) ;
2003-12-15 22:11:25 +01:00
ok ( a ! = NULL , " SAC should not fail \n " ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayAccessData ( a , & data ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAAD failed with hres %x \n " , hres ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayDestroy ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_ARRAYISLOCKED , " locked safe array destroy not failed with DISP_E_ARRAYISLOCKED, but with hres %x \n " , hres ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayDestroyData ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_ARRAYISLOCKED , " locked safe array destroy data not failed with DISP_E_ARRAYISLOCKED, but with hres %x \n " , hres ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayDestroyDescriptor ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_ARRAYISLOCKED , " locked safe array destroy descriptor not failed with DISP_E_ARRAYISLOCKED, but with hres %x \n " , hres ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayUnaccessData ( a ) ;
2003-12-15 22:11:25 +01:00
ok ( hres = = S_OK , " SAUD failed after lock/destroy test \n " ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayDestroy ( a ) ;
2003-12-15 22:11:25 +01:00
ok ( hres = = S_OK , " SAD failed after lock/destroy test \n " ) ;
2003-01-03 00:13:56 +01:00
/* Test if we need to destroy data before descriptor */
a = SafeArrayCreate ( VT_I4 , 1 , & bound ) ;
2003-12-15 22:11:25 +01:00
ok ( a ! = NULL , " SAC should not fail \n " ) ;
2003-01-03 00:13:56 +01:00
hres = SafeArrayDestroyDescriptor ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SADD with data in array failed with hres %x \n " , hres ) ;
2003-01-03 00:13:56 +01:00
/* IID functions */
/* init a small stack safearray */
2003-01-07 20:40:40 +01:00
if ( pSafeArraySetIID ) {
memset ( & b , 0 , sizeof ( b ) ) ;
b . cDims = 1 ;
memset ( & iid , 0x42 , sizeof ( IID ) ) ;
hres = pSafeArraySetIID ( & b , & iid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " SafeArraySetIID of non IID capable safearray did not return E_INVALIDARG, but %x \n " , hres ) ;
2003-01-07 20:40:40 +01:00
hres = SafeArrayAllocDescriptor ( 1 , & a ) ;
2011-02-09 22:43:58 +01:00
ok ( hres = = S_OK , " SafeArrayAllocDescriptor should return S_OK, but got %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
ok ( ( a - > fFeatures & FADF_HAVEIID ) = = 0 , " newly allocated descriptor with SAAD should not have FADF_HAVEIID \n " ) ;
2003-01-07 20:40:40 +01:00
hres = pSafeArraySetIID ( a , & iid ) ;
2011-02-09 22:43:58 +01:00
ok ( hres = = E_INVALIDARG , " SafeArraySetIID of newly allocated descriptor with SAAD should return E_INVALIDARG, but got %x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroyDescriptor ( a ) ;
ok ( hres = = S_OK , " SADD failed with hres %x \n " , hres ) ;
2003-01-07 20:40:40 +01:00
}
if ( ! pSafeArrayAllocDescriptorEx )
return ;
2003-01-03 00:13:56 +01:00
for ( i = 0 ; i < sizeof ( vttypes ) / sizeof ( vttypes [ 0 ] ) ; i + + ) {
2015-06-25 12:22:43 +02:00
a = NULL ;
2003-01-07 20:40:40 +01:00
hres = pSafeArrayAllocDescriptorEx ( vttypes [ i ] . vt , 1 , & a ) ;
2011-02-09 22:43:58 +01:00
ok ( hres = = S_OK , " SafeArrayAllocDescriptorEx gave hres 0x%x \n " , hres ) ;
2003-01-03 00:13:56 +01:00
ok ( a - > fFeatures = = vttypes [ i ] . expflags , " SAADE(%d) resulted with flags %x, expected %x \n " , vttypes [ i ] . vt , a - > fFeatures , vttypes [ i ] . expflags ) ;
if ( a - > fFeatures & FADF_HAVEIID ) {
2003-01-07 20:40:40 +01:00
hres = pSafeArrayGetIID ( a , & iid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGIID failed for vt %d with hres %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-03 00:13:56 +01:00
switch ( vttypes [ i ] . vt ) {
case VT_UNKNOWN :
2003-12-15 22:11:25 +01:00
ok ( IsEqualGUID ( ( ( GUID * ) a ) - 1 , & IID_IUnknown ) , " guid for VT_UNKNOWN is not IID_IUnknown \n " ) ;
ok ( IsEqualGUID ( & iid , & IID_IUnknown ) , " SAGIID returned wrong GUID for IUnknown \n " ) ;
2003-01-03 00:13:56 +01:00
break ;
case VT_DISPATCH :
2003-12-15 22:11:25 +01:00
ok ( IsEqualGUID ( ( ( GUID * ) a ) - 1 , & IID_IDispatch ) , " guid for VT_UNKNOWN is not IID_IDispatch \n " ) ;
ok ( IsEqualGUID ( & iid , & IID_IDispatch ) , " SAGIID returned wrong GUID for IDispatch \n " ) ;
2003-01-03 00:13:56 +01:00
break ;
default :
2003-12-15 22:11:25 +01:00
ok ( FALSE , " unknown vt %d with FADF_HAVEIID \n " , vttypes [ i ] . vt ) ;
2003-01-03 00:13:56 +01:00
break ;
}
} else {
2003-01-07 20:40:40 +01:00
hres = pSafeArrayGetIID ( a , & iid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " SAGIID did not fail for vt %d with hres %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-03 00:13:56 +01:00
}
if ( a - > fFeatures & FADF_RECORD ) {
2003-12-15 22:11:25 +01:00
ok ( vttypes [ i ] . vt = = VT_RECORD , " FADF_RECORD for non record %d \n " , vttypes [ i ] . vt ) ;
2003-01-03 00:13:56 +01:00
}
if ( a - > fFeatures & FADF_HAVEVARTYPE ) {
2006-10-12 13:56:01 +02:00
ok ( vttypes [ i ] . vt = = ( ( DWORD * ) a ) [ - 1 ] , " FADF_HAVEVARTYPE set, but vt %d mismatch stored %d \n " , vttypes [ i ] . vt , ( ( DWORD * ) a ) [ - 1 ] ) ;
2003-01-03 00:13:56 +01:00
}
2003-01-07 20:40:40 +01:00
hres = pSafeArrayGetVartype ( a , & vt ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGVT of array with vt %d failed with %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-03 00:13:56 +01:00
if ( vttypes [ i ] . vt = = VT_DISPATCH ) {
/* Special case. Checked against Windows. */
2003-12-15 22:11:25 +01:00
ok ( vt = = VT_UNKNOWN , " SAGVT of array with VT_DISPATCH returned not VT_UNKNOWN, but %d \n " , vt ) ;
2003-01-03 00:13:56 +01:00
} else {
2003-12-15 22:11:25 +01:00
ok ( vt = = vttypes [ i ] . vt , " SAGVT of array with vt %d returned %d \n " , vttypes [ i ] . vt , vt ) ;
2003-01-03 00:13:56 +01:00
}
if ( a - > fFeatures & FADF_HAVEIID ) {
2003-01-07 20:40:40 +01:00
hres = pSafeArraySetIID ( a , & IID_IStorage ) ; /* random IID */
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SASIID failed with FADF_HAVEIID set for vt %d with %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-07 20:40:40 +01:00
hres = pSafeArrayGetIID ( a , & iid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAGIID failed with FADF_HAVEIID set for vt %d with %x \n " , vttypes [ i ] . vt , hres ) ;
2003-12-15 22:11:25 +01:00
ok ( IsEqualGUID ( & iid , & IID_IStorage ) , " returned iid is not IID_IStorage \n " ) ;
2003-01-03 00:13:56 +01:00
} else {
2003-01-07 20:40:40 +01:00
hres = pSafeArraySetIID ( a , & IID_IStorage ) ; /* random IID */
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " SASIID did not failed with !FADF_HAVEIID set for vt %d with %x \n " , vttypes [ i ] . vt , hres ) ;
2003-01-03 00:13:56 +01:00
}
hres = SafeArrayDestroyDescriptor ( a ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SADD failed with hres %x \n " , hres ) ;
2002-12-23 03:02:49 +01:00
}
}
2003-12-15 22:11:25 +01:00
static void test_SafeArrayAllocDestroyDescriptor ( void )
{
SAFEARRAY * sa ;
HRESULT hres ;
int i ;
/* Failure cases */
hres = SafeArrayAllocDescriptor ( 0 , & sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " 0 dimensions gave hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayAllocDescriptor ( 65536 , & sa ) ;
2013-06-26 23:43:18 +02:00
ok ( hres = = E_INVALIDARG , " 65536 dimensions gave hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
2007-01-06 19:29:07 +01:00
if ( 0 )
{
2003-12-15 22:11:25 +01:00
/* Crashes on 95: XP & Wine return E_POINTER */
hres = SafeArrayAllocDescriptor ( 1 , NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_POINTER , " NULL parm gave hres 0x%x \n " , hres ) ;
2007-01-06 19:29:07 +01:00
}
2003-12-15 22:11:25 +01:00
/* Test up to the dimension boundary case */
for ( i = 5 ; i < = 65535 ; i + = 30 )
{
hres = SafeArrayAllocDescriptor ( i , & sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " %d dimensions failed; hres 0x%x \n " , i , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK )
{
ok ( SafeArrayGetDim ( sa ) = = ( UINT ) i , " Dimension is %d; should be %d \n " ,
SafeArrayGetDim ( sa ) , i ) ;
hres = SafeArrayDestroyDescriptor ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " destroy failed; hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
}
if ( ! pSafeArrayAllocDescriptorEx )
return ;
hres = pSafeArrayAllocDescriptorEx ( VT_UI1 , 0 , & sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " 0 dimensions gave hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = pSafeArrayAllocDescriptorEx ( VT_UI1 , 65536 , & sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " 65536 dimensions gave hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = pSafeArrayAllocDescriptorEx ( VT_UI1 , 1 , NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_POINTER , " NULL parm gave hres 0x%x \n " , hres ) ;
2004-08-24 20:42:53 +02:00
hres = pSafeArrayAllocDescriptorEx ( - 1 , 1 , & sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " VT = -1 gave hres 0x%x \n " , hres ) ;
2004-08-24 20:42:53 +02:00
sa - > rgsabound [ 0 ] . cElements = 0 ;
sa - > rgsabound [ 0 ] . lLbound = 1 ;
hres = SafeArrayAllocData ( sa ) ;
2006-12-27 20:14:38 +01:00
ok ( hres = = S_OK , " SafeArrayAllocData gave hres 0x%x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " SafeArrayDestroy failed with hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
static void test_SafeArrayCreateLockDestroy ( void )
{
SAFEARRAYBOUND sab [ 4 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
VARTYPE vt ;
int dimension ;
# define NUM_DIMENSIONS (int)(sizeof(sab) / sizeof(sab[0]))
for ( dimension = 0 ; dimension < NUM_DIMENSIONS ; dimension + + )
{
sab [ dimension ] . lLbound = 0 ;
sab [ dimension ] . cElements = 8 ;
}
/* Failure cases */
2004-03-17 21:47:42 +01:00
/* This test crashes very early versions with no error checking...
2003-12-15 22:11:25 +01:00
sa = SafeArrayCreate ( VT_UI1 , 1 , NULL ) ;
ok ( sa = = NULL , " NULL bounds didn't fail \n " ) ;
2004-03-17 21:47:42 +01:00
*/
2003-12-15 22:11:25 +01:00
sa = SafeArrayCreate ( VT_UI1 , 65536 , sab ) ;
2013-06-26 23:43:18 +02:00
ok ( ! sa , " Max bounds didn't fail \n " ) ;
2003-12-15 22:11:25 +01:00
memset ( sab , 0 , sizeof ( sab ) ) ;
/* Don't test 0 sized dimensions, as Windows has a bug which allows this */
for ( dimension = 0 ; dimension < NUM_DIMENSIONS ; dimension + + )
sab [ dimension ] . cElements = 8 ;
/* Test all VARTYPES in 1-4 dimensions */
for ( dimension = 1 ; dimension < 4 ; dimension + + )
{
for ( vt = VT_EMPTY ; vt < VT_CLSID ; vt + + )
{
DWORD dwLen = SAFEARRAY_GetVTSize ( vt ) ;
sa = SafeArrayCreate ( vt , dimension , sab ) ;
if ( dwLen )
2013-06-26 23:43:18 +02:00
ok ( sa ! = NULL , " VARTYPE %d (@%d dimensions) failed \n " , vt , dimension ) ;
2003-12-15 22:11:25 +01:00
else
2004-04-28 01:30:10 +02:00
ok ( sa = = NULL | | vt = = VT_R8 ,
2004-03-17 21:47:42 +01:00
" VARTYPE %d (@%d dimensions) succeeded! \n " , vt , dimension ) ;
2003-12-15 22:11:25 +01:00
if ( sa )
{
ok ( SafeArrayGetDim ( sa ) = = ( UINT ) dimension ,
" VARTYPE %d (@%d dimensions) cDims is %d, expected %d \n " ,
vt , dimension , SafeArrayGetDim ( sa ) , dimension ) ;
2004-04-28 01:30:10 +02:00
ok ( SafeArrayGetElemsize ( sa ) = = dwLen | | vt = = VT_R8 ,
2006-10-12 13:56:01 +02:00
" VARTYPE %d (@%d dimensions) cbElements is %d, expected %d \n " ,
2003-12-15 22:11:25 +01:00
vt , dimension , SafeArrayGetElemsize ( sa ) , dwLen ) ;
if ( vt ! = VT_UNKNOWN & & vt ! = VT_DISPATCH )
{
ok ( ( sa - > fFeatures & FADF_HAVEIID ) = = 0 ,
" Non interface type should not have FADF_HAVEIID \n " ) ;
if ( pSafeArraySetIID )
{
hres = pSafeArraySetIID ( sa , & IID_IUnknown ) ;
ok ( hres = = E_INVALIDARG ,
2006-10-12 13:56:01 +02:00
" Non interface type allowed SetIID(), hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
if ( vt ! = VT_RECORD )
{
VARTYPE aVt ;
2013-06-26 23:43:18 +02:00
ok ( sa - > fFeatures & FADF_HAVEVARTYPE ,
2003-12-15 22:11:25 +01:00
" Non interface type should have FADF_HAVEVARTYPE \n " ) ;
if ( pSafeArrayGetVartype )
{
hres = pSafeArrayGetVartype ( sa , & aVt ) ;
ok ( hres = = S_OK & & aVt = = vt ,
2006-10-12 13:56:01 +02:00
" Non interface type %d: bad type %d, hres %x \n " , vt , aVt , hres ) ;
2003-12-15 22:11:25 +01:00
}
}
}
else
{
2013-06-26 23:43:18 +02:00
ok ( sa - > fFeatures & FADF_HAVEIID , " Interface type should have FADF_HAVEIID \n " ) ;
2003-12-15 22:11:25 +01:00
if ( pSafeArraySetIID )
{
hres = pSafeArraySetIID ( sa , & IID_IUnknown ) ;
ok ( hres = = S_OK ,
2006-10-12 13:56:01 +02:00
" Non interface type disallowed SetIID(), hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
ok ( ( sa - > fFeatures & FADF_HAVEVARTYPE ) = = 0 ,
" Interface type %d should not have FADF_HAVEVARTYPE \n " , vt ) ;
}
hres = SafeArrayLock ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Lock VARTYPE %d (@%d dimensions) failed; hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
vt , dimension , hres ) ;
if ( hres = = S_OK )
{
hres = SafeArrayDestroy ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_ARRAYISLOCKED , " Destroy() got hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayDestroyData ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_ARRAYISLOCKED , " DestroyData() got hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayDestroyDescriptor ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_ARRAYISLOCKED , " DestroyDescriptor() got hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayUnlock ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Unlock VARTYPE %d (@%d dims) hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
vt , dimension , hres ) ;
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " destroy VARTYPE %d (@%d dims) hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
vt , dimension , hres ) ;
}
}
}
}
}
static void test_VectorCreateLockDestroy ( void )
{
SAFEARRAY * sa ;
HRESULT hres ;
VARTYPE vt ;
int element ;
2004-03-17 21:47:42 +01:00
if ( ! pSafeArrayCreateVector )
2011-01-18 17:52:19 +01:00
{
win_skip ( " SafeArrayCreateVector not supported \n " ) ;
2004-03-17 21:47:42 +01:00
return ;
2011-01-18 17:52:19 +01:00
}
2004-03-17 21:47:42 +01:00
sa = pSafeArrayCreateVector ( VT_UI1 , 0 , 0 ) ;
2003-12-30 20:06:41 +01:00
ok ( sa ! = NULL , " SACV with 0 elements failed. \n " ) ;
2003-12-15 22:11:25 +01:00
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " SafeArrayDestroy failed with hres %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
/* Test all VARTYPES in different lengths */
for ( element = 1 ; element < = 101 ; element + = 10 )
{
for ( vt = VT_EMPTY ; vt < VT_CLSID ; vt + + )
{
DWORD dwLen = SAFEARRAY_GetVTSize ( vt ) ;
2004-03-17 21:47:42 +01:00
sa = pSafeArrayCreateVector ( vt , 0 , element ) ;
2003-12-15 22:11:25 +01:00
if ( dwLen )
2005-05-20 21:00:02 +02:00
ok ( sa ! = NULL , " VARTYPE %d (@%d elements) failed \n " , vt , element ) ;
2003-12-15 22:11:25 +01:00
else
ok ( sa = = NULL , " VARTYPE %d (@%d elements) succeeded! \n " , vt , element ) ;
if ( sa )
{
ok ( SafeArrayGetDim ( sa ) = = 1 , " VARTYPE %d (@%d elements) cDims %d, not 1 \n " ,
vt , element , SafeArrayGetDim ( sa ) ) ;
ok ( SafeArrayGetElemsize ( sa ) = = dwLen ,
2006-10-12 13:56:01 +02:00
" VARTYPE %d (@%d elements) cbElements is %d, expected %d \n " ,
2003-12-15 22:11:25 +01:00
vt , element , SafeArrayGetElemsize ( sa ) , dwLen ) ;
hres = SafeArrayLock ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Lock VARTYPE %d (@%d elements) failed; hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
vt , element , hres ) ;
if ( hres = = S_OK )
{
hres = SafeArrayUnlock ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Unlock VARTYPE %d (@%d elements) failed; hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
vt , element , hres ) ;
2008-01-31 15:45:52 +01:00
hres = SafeArrayDestroy ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " destroy VARTYPE %d (@%d elements) failed; hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
vt , element , hres ) ;
}
}
}
}
}
static void test_LockUnlock ( void )
{
SAFEARRAYBOUND sab [ 4 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
BOOL bVector = FALSE ;
int dimension ;
/* Failure cases */
hres = SafeArrayLock ( NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Lock NULL array hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayUnlock ( NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Lock NULL array hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
for ( dimension = 0 ; dimension < NUM_DIMENSIONS ; dimension + + )
{
sab [ dimension ] . lLbound = 0 ;
sab [ dimension ] . cElements = 8 ;
}
sa = SafeArrayCreate ( VT_UI1 , NUM_DIMENSIONS , sab ) ;
/* Test maximum locks */
test_LockUnlock_Vector :
if ( sa )
{
int count = 0 ;
hres = SafeArrayUnlock ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_UNEXPECTED , " Bad %sUnlock gave hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
bVector ? " vector " : " \n " , hres ) ;
while ( ( hres = SafeArrayLock ( sa ) ) = = S_OK )
count + + ;
2006-10-12 13:56:01 +02:00
ok ( count = = 65535 & & hres = = E_UNEXPECTED , " Lock %sfailed at %d; hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
bVector ? " vector " : " \n " , count , hres ) ;
if ( count = = 65535 & & hres = = E_UNEXPECTED )
{
while ( ( hres = SafeArrayUnlock ( sa ) ) = = S_OK )
count - - ;
2006-10-12 13:56:01 +02:00
ok ( count = = 0 & & hres = = E_UNEXPECTED , " Unlock %sfailed at %d; hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
bVector ? " vector " : " \n " , count , hres ) ;
}
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
2004-03-17 21:47:42 +01:00
if ( bVector = = FALSE & & pSafeArrayCreateVector )
2003-12-15 22:11:25 +01:00
{
/* Test again with a vector */
2004-03-17 21:47:42 +01:00
sa = pSafeArrayCreateVector ( VT_UI1 , 0 , 100 ) ;
2003-12-15 22:11:25 +01:00
bVector = TRUE ;
goto test_LockUnlock_Vector ;
}
}
static void test_SafeArrayGetPutElement ( void )
{
SAFEARRAYBOUND sab [ 4 ] ;
2014-02-24 05:15:21 +01:00
LONG indices [ NUM_DIMENSIONS ] , index ;
2003-12-15 22:11:25 +01:00
SAFEARRAY * sa ;
HRESULT hres ;
int value = 0 , gotvalue , dimension ;
2014-02-24 05:15:21 +01:00
IRecordInfoImpl * irec ;
2003-12-15 22:11:25 +01:00
unsigned int x , y , z , a ;
for ( dimension = 0 ; dimension < NUM_DIMENSIONS ; dimension + + )
{
sab [ dimension ] . lLbound = dimension * 2 + 1 ;
sab [ dimension ] . cElements = dimension * 3 + 1 ;
}
sa = SafeArrayCreate ( VT_INT , NUM_DIMENSIONS , sab ) ;
if ( ! sa )
2004-03-17 21:47:42 +01:00
return ; /* Some early versions can't handle > 3 dims */
2003-12-15 22:11:25 +01:00
ok ( sa - > cbElements = = sizeof ( value ) , " int size mismatch \n " ) ;
/* Failure cases */
for ( x = 0 ; x < NUM_DIMENSIONS ; x + + )
{
indices [ 0 ] = sab [ 0 ] . lLbound ;
indices [ 1 ] = sab [ 1 ] . lLbound ;
indices [ 2 ] = sab [ 2 ] . lLbound ;
indices [ 3 ] = sab [ 3 ] . lLbound ;
indices [ x ] = indices [ x ] - 1 ;
hres = SafeArrayPutElement ( sa , indices , & value ) ;
ok ( hres = = DISP_E_BADINDEX , " Put allowed too small index in dimension %d \n " , x ) ;
hres = SafeArrayGetElement ( sa , indices , & value ) ;
ok ( hres = = DISP_E_BADINDEX , " Get allowed too small index in dimension %d \n " , x ) ;
indices [ x ] = sab [ x ] . lLbound + sab [ x ] . cElements ;
hres = SafeArrayPutElement ( sa , indices , & value ) ;
ok ( hres = = DISP_E_BADINDEX , " Put allowed too big index in dimension %d \n " , x ) ;
hres = SafeArrayGetElement ( sa , indices , & value ) ;
ok ( hres = = DISP_E_BADINDEX , " Get allowed too big index in dimension %d \n " , x ) ;
}
indices [ 0 ] = sab [ 0 ] . lLbound ;
indices [ 1 ] = sab [ 1 ] . lLbound ;
indices [ 2 ] = sab [ 2 ] . lLbound ;
indices [ 3 ] = sab [ 3 ] . lLbound ;
hres = SafeArrayPutElement ( NULL , indices , & value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Put NULL array hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayGetElement ( NULL , indices , & value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Get NULL array hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayPutElement ( sa , NULL , & value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Put NULL indices hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayGetElement ( sa , NULL , & value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Get NULL indices hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
2007-01-06 19:29:07 +01:00
if ( 0 )
{
2003-12-15 22:11:25 +01:00
/* This is retarded. Windows checks every case of invalid parameters
* except the following , which crashes . We ERR this in Wine .
*/
hres = SafeArrayPutElement ( sa , indices , NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Put NULL value hres 0x%x \n " , hres ) ;
2007-01-06 19:29:07 +01:00
}
2003-12-15 22:11:25 +01:00
hres = SafeArrayGetElement ( sa , indices , NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Get NULL value hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
value = 0 ;
/* Make sure we can read and get back the correct values in 4 dimensions,
* Each with a different size and lower bound .
*/
for ( x = 0 ; x < sab [ 0 ] . cElements ; x + + )
{
indices [ 0 ] = sab [ 0 ] . lLbound + x ;
for ( y = 0 ; y < sab [ 1 ] . cElements ; y + + )
{
indices [ 1 ] = sab [ 1 ] . lLbound + y ;
for ( z = 0 ; z < sab [ 2 ] . cElements ; z + + )
{
indices [ 2 ] = sab [ 2 ] . lLbound + z ;
for ( a = 0 ; a < sab [ 3 ] . cElements ; a + + )
{
indices [ 3 ] = sab [ 3 ] . lLbound + a ;
hres = SafeArrayPutElement ( sa , indices , & value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to put element at (%d,%d,%d,%d) hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
x , y , z , a , hres ) ;
value + + ;
}
}
}
}
value = 0 ;
for ( x = 0 ; x < sab [ 0 ] . cElements ; x + + )
{
indices [ 0 ] = sab [ 0 ] . lLbound + x ;
for ( y = 0 ; y < sab [ 1 ] . cElements ; y + + )
{
indices [ 1 ] = sab [ 1 ] . lLbound + y ;
for ( z = 0 ; z < sab [ 2 ] . cElements ; z + + )
{
indices [ 2 ] = sab [ 2 ] . lLbound + z ;
for ( a = 0 ; a < sab [ 3 ] . cElements ; a + + )
{
indices [ 3 ] = sab [ 3 ] . lLbound + a ;
gotvalue = value / 3 ;
hres = SafeArrayGetElement ( sa , indices , & gotvalue ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to get element at (%d,%d,%d,%d) hres 0x%x \n " ,
2003-12-15 22:11:25 +01:00
x , y , z , a , hres ) ;
if ( hres = = S_OK )
ok ( value = = gotvalue , " Got value %d instead of %d at (%d,%d,%d,%d) \n " ,
gotvalue , value , x , y , z , a ) ;
value + + ;
}
}
}
}
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2014-02-24 05:15:21 +01:00
/* VT_RECORD array */
irec = IRecordInfoImpl_Construct ( ) ;
irec - > ref = 1 ;
sab [ 0 ] . lLbound = 0 ;
sab [ 0 ] . cElements = 8 ;
sa = pSafeArrayCreateEx ( VT_RECORD , 1 , sab , & irec - > IRecordInfo_iface ) ;
ok ( sa ! = NULL , " failed to create array \n " ) ;
ok ( irec - > ref = = 2 , " got %d \n " , irec - > ref ) ;
index = 0 ;
irec - > recordcopy = 0 ;
hres = SafeArrayPutElement ( sa , & index , ( void * ) 0xdeadbeef ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( irec - > recordcopy = = 1 , " got %d \n " , irec - > recordcopy ) ;
2014-02-25 05:43:06 +01:00
index = 0 ;
irec - > recordcopy = 0 ;
hres = SafeArrayGetElement ( sa , & index , ( void * ) 0xdeadbeef ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( irec - > recordcopy = = 1 , " got %d \n " , irec - > recordcopy ) ;
2014-02-24 05:15:21 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( irec - > ref = = 1 , " got %d \n " , irec - > ref ) ;
IRecordInfo_Release ( & irec - > IRecordInfo_iface ) ;
2003-12-15 22:11:25 +01:00
}
2003-12-30 20:06:41 +01:00
static void test_SafeArrayGetPutElement_BSTR ( void )
{
SAFEARRAYBOUND sab ;
LONG indices [ 1 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
BSTR value = 0 , gotvalue ;
const OLECHAR szTest [ 5 ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' \0 ' } ;
sab . lLbound = 1 ;
sab . cElements = 1 ;
sa = SafeArrayCreate ( VT_BSTR , 1 , & sab ) ;
ok ( sa ! = NULL , " BSTR test couldn't create array \n " ) ;
if ( ! sa )
return ;
ok ( sa - > cbElements = = sizeof ( BSTR ) , " BSTR size mismatch \n " ) ;
indices [ 0 ] = sab . lLbound ;
value = SysAllocString ( szTest ) ;
ok ( value ! = NULL , " Expected non-NULL \n " ) ;
hres = SafeArrayPutElement ( sa , indices , value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to put bstr element hres 0x%x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
gotvalue = NULL ;
hres = SafeArrayGetElement ( sa , indices , & gotvalue ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to get bstr element at hres 0x%x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
if ( hres = = S_OK )
ok ( SysStringLen ( value ) = = SysStringLen ( gotvalue ) , " Got len %d instead of %d \n " , SysStringLen ( gotvalue ) , SysStringLen ( value ) ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2008-01-31 15:45:52 +01:00
SysFreeString ( value ) ;
SysFreeString ( gotvalue ) ;
2003-12-30 20:06:41 +01:00
}
2011-03-24 13:55:03 +01:00
struct xtunk_impl {
IUnknown IUnknown_iface ;
LONG ref ;
} ;
static const IUnknownVtbl xtunk_vtbl ;
static struct xtunk_impl xtunk = { { & xtunk_vtbl } , 0 } ;
static HRESULT WINAPI tunk_QueryInterface ( IUnknown * punk , REFIID riid , void * * x )
{
return E_FAIL ;
2003-12-30 20:06:41 +01:00
}
2011-03-24 13:55:03 +01:00
static ULONG WINAPI tunk_AddRef ( IUnknown * punk )
{
return + + xtunk . ref ;
2003-12-30 20:06:41 +01:00
}
2011-03-24 13:55:03 +01:00
static ULONG WINAPI tunk_Release ( IUnknown * punk )
{
return - - xtunk . ref ;
2003-12-30 20:06:41 +01:00
}
2005-06-06 21:50:35 +02:00
static const IUnknownVtbl xtunk_vtbl = {
2003-12-30 20:06:41 +01:00
tunk_QueryInterface ,
tunk_AddRef ,
tunk_Release
} ;
static void test_SafeArrayGetPutElement_IUnknown ( void )
{
SAFEARRAYBOUND sab ;
LONG indices [ 1 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
2011-03-24 13:55:03 +01:00
IUnknown * gotvalue ;
2003-12-30 20:06:41 +01:00
sab . lLbound = 1 ;
sab . cElements = 1 ;
sa = SafeArrayCreate ( VT_UNKNOWN , 1 , & sab ) ;
ok ( sa ! = NULL , " UNKNOWN test couldn't create array \n " ) ;
if ( ! sa )
return ;
ok ( sa - > cbElements = = sizeof ( LPUNKNOWN ) , " LPUNKNOWN size mismatch \n " ) ;
indices [ 0 ] = sab . lLbound ;
2011-03-24 13:55:03 +01:00
xtunk . ref = 1 ;
hres = SafeArrayPutElement ( sa , indices , & xtunk . IUnknown_iface ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to put bstr element hres 0x%x \n " , hres ) ;
2011-03-24 13:55:03 +01:00
ok ( xtunk . ref = = 2 , " Failed to increment refcount of iface. \n " ) ;
2003-12-30 20:06:41 +01:00
gotvalue = NULL ;
hres = SafeArrayGetElement ( sa , indices , & gotvalue ) ;
2011-03-24 13:55:03 +01:00
ok ( xtunk . ref = = 3 , " Failed to increment refcount of iface. \n " ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to get bstr element at hres 0x%x \n " , hres ) ;
2003-12-30 20:06:41 +01:00
if ( hres = = S_OK )
2011-03-24 13:55:03 +01:00
ok ( gotvalue = = & xtunk . IUnknown_iface , " Got %p instead of %p \n " , gotvalue , & xtunk . IUnknown_iface ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2011-03-24 13:55:03 +01:00
ok ( xtunk . ref = = 2 , " Failed to decrement refcount of iface. \n " ) ;
2003-12-30 20:06:41 +01:00
}
2006-06-09 12:02:04 +02:00
static void test_SafeArrayRedim_IUnknown ( void )
{
SAFEARRAYBOUND sab ;
LONG indices [ 1 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
sab . lLbound = 1 ;
sab . cElements = 2 ;
sa = SafeArrayCreate ( VT_UNKNOWN , 1 , & sab ) ;
ok ( sa ! = NULL , " UNKNOWN test couldn't create array \n " ) ;
if ( ! sa )
return ;
ok ( sa - > cbElements = = sizeof ( LPUNKNOWN ) , " LPUNKNOWN size mismatch \n " ) ;
indices [ 0 ] = 2 ;
2011-03-24 13:55:03 +01:00
xtunk . ref = 1 ;
hres = SafeArrayPutElement ( sa , indices , & xtunk . IUnknown_iface ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to put IUnknown element hres 0x%x \n " , hres ) ;
2011-03-24 13:55:03 +01:00
ok ( xtunk . ref = = 2 , " Failed to increment refcount of iface. \n " ) ;
2006-06-09 12:02:04 +02:00
sab . cElements = 1 ;
hres = SafeArrayRedim ( sa , & sab ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to shrink array hres 0x%x \n " , hres ) ;
2011-03-24 13:55:03 +01:00
ok ( xtunk . ref = = 1 , " Failed to decrement refcount \n " ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2006-06-09 12:02:04 +02:00
}
2004-09-20 21:11:48 +02:00
static void test_SafeArrayGetPutElement_VARIANT ( void )
{
SAFEARRAYBOUND sab ;
LONG indices [ 1 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
VARIANT value , gotvalue ;
sab . lLbound = 1 ;
sab . cElements = 1 ;
sa = SafeArrayCreate ( VT_VARIANT , 1 , & sab ) ;
ok ( sa ! = NULL , " VARIANT test couldn't create array \n " ) ;
if ( ! sa )
return ;
ok ( sa - > cbElements = = sizeof ( VARIANT ) , " VARIANT size mismatch \n " ) ;
indices [ 0 ] = sab . lLbound ;
V_VT ( & value ) = VT_I4 ;
V_I4 ( & value ) = 0x42424242 ;
hres = SafeArrayPutElement ( sa , indices , & value ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to put Variant I4 element hres 0x%x \n " , hres ) ;
2004-09-20 21:11:48 +02:00
V_VT ( & gotvalue ) = 0xdead ;
hres = SafeArrayGetElement ( sa , indices , & gotvalue ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to get variant element at hres 0x%x \n " , hres ) ;
2004-09-20 21:11:48 +02:00
V_VT ( & gotvalue ) = VT_EMPTY ;
hres = SafeArrayGetElement ( sa , indices , & gotvalue ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to get variant element at hres 0x%x \n " , hres ) ;
2004-09-20 21:11:48 +02:00
if ( hres = = S_OK ) {
ok ( V_VT ( & value ) = = V_VT ( & gotvalue ) , " Got type 0x%x instead of 0x%x \n " , V_VT ( & value ) , V_VT ( & gotvalue ) ) ;
if ( V_VT ( & value ) = = V_VT ( & gotvalue ) )
2006-10-12 13:56:01 +02:00
ok ( V_I4 ( & value ) = = V_I4 ( & gotvalue ) , " Got %d instead of %d \n " , V_I4 ( & value ) , V_VT ( & gotvalue ) ) ;
2004-09-20 21:11:48 +02:00
}
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2004-09-20 21:11:48 +02:00
}
2003-12-15 22:11:25 +01:00
static void test_SafeArrayCopyData ( void )
{
SAFEARRAYBOUND sab [ 4 ] ;
SAFEARRAY * sa ;
SAFEARRAY * sacopy ;
HRESULT hres ;
2014-01-08 18:39:42 +01:00
int dimension , size = 1 , i ;
2003-12-15 22:11:25 +01:00
if ( ! pSafeArrayCopyData )
2011-01-18 17:52:19 +01:00
{
win_skip ( " SafeArrayCopyData not supported \n " ) ;
2003-12-15 22:11:25 +01:00
return ;
2011-01-18 17:52:19 +01:00
}
2003-12-15 22:11:25 +01:00
for ( dimension = 0 ; dimension < NUM_DIMENSIONS ; dimension + + )
{
sab [ dimension ] . lLbound = dimension * 2 + 2 ;
sab [ dimension ] . cElements = dimension * 3 + 1 ;
size * = sab [ dimension ] . cElements ;
}
sa = SafeArrayCreate ( VT_INT , NUM_DIMENSIONS , sab ) ;
ok ( sa ! = NULL , " Copy test couldn't create array \n " ) ;
sacopy = SafeArrayCreate ( VT_INT , NUM_DIMENSIONS , sab ) ;
ok ( sacopy ! = NULL , " Copy test couldn't create copy array \n " ) ;
if ( ! sa | | ! sacopy )
return ;
ok ( sa - > cbElements = = sizeof ( int ) , " int size mismatch \n " ) ;
/* Fill the source array with some data; it doesn't matter what */
for ( dimension = 0 ; dimension < size ; dimension + + )
{
2009-01-29 11:14:36 +01:00
int * data = sa - > pvData ;
2003-12-15 22:11:25 +01:00
data [ dimension ] = dimension ;
}
hres = pSafeArrayCopyData ( sa , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " copy data failed hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK )
{
ok ( ! memcmp ( sa - > pvData , sacopy - > pvData , size * sizeof ( int ) ) , " compared different \n " ) ;
}
/* Failure cases */
hres = pSafeArrayCopyData ( NULL , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Null copy source hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = pSafeArrayCopyData ( sa , NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Null copy hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
sacopy - > rgsabound [ 0 ] . cElements + = 1 ;
hres = pSafeArrayCopyData ( sa , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Bigger copy first dimension hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
sacopy - > rgsabound [ 0 ] . cElements - = 2 ;
hres = pSafeArrayCopyData ( sa , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Smaller copy first dimension hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
sacopy - > rgsabound [ 0 ] . cElements + = 1 ;
sacopy - > rgsabound [ 3 ] . cElements + = 1 ;
hres = pSafeArrayCopyData ( sa , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Bigger copy last dimension hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
sacopy - > rgsabound [ 3 ] . cElements - = 2 ;
hres = pSafeArrayCopyData ( sa , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " Smaller copy last dimension hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
sacopy - > rgsabound [ 3 ] . cElements + = 1 ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
sacopy = NULL ;
hres = pSafeArrayCopyData ( sa , sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = E_INVALIDARG , " ->Null copy hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
hres = SafeArrayCopy ( sa , & sacopy ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " copy failed hres 0x%x \n " , hres ) ;
2014-01-08 18:39:42 +01:00
ok ( SafeArrayGetElemsize ( sa ) = = SafeArrayGetElemsize ( sacopy ) , " elemsize wrong \n " ) ;
ok ( SafeArrayGetDim ( sa ) = = SafeArrayGetDim ( sacopy ) , " dimensions wrong \n " ) ;
ok ( ! memcmp ( sa - > pvData , sacopy - > pvData , size * sizeof ( int ) ) , " compared different \n " ) ;
hres = SafeArrayDestroy ( sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
sacopy = SafeArrayCreate ( VT_INT , NUM_DIMENSIONS , sab ) ;
ok ( sacopy ! = NULL , " Copy test couldn't create copy array \n " ) ;
ok ( sacopy - > fFeatures = = FADF_HAVEVARTYPE , " 0x%04x \n " , sacopy - > fFeatures ) ;
for ( i = 0 ; i < sizeof ( ignored_copy_features ) / sizeof ( USHORT ) ; i + + )
2003-12-15 22:11:25 +01:00
{
2014-01-08 18:39:42 +01:00
USHORT feature = ignored_copy_features [ i ] ;
USHORT orig = sacopy - > fFeatures ;
sa - > fFeatures | = feature ;
hres = SafeArrayCopyData ( sa , sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( sacopy - > fFeatures = = orig & & orig = = FADF_HAVEVARTYPE , " got features 0x%04x \n " , sacopy - > fFeatures ) ;
sa - > fFeatures & = ~ feature ;
2003-12-15 22:11:25 +01:00
}
2014-01-08 18:39:42 +01:00
hres = SafeArrayDestroy ( sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2014-01-08 18:39:42 +01:00
/* copy data from a vector */
sa = SafeArrayCreateVector ( VT_UI1 , 0 , 2 ) ;
sacopy = SafeArrayCreateVector ( VT_UI1 , 0 , 2 ) ;
2014-01-12 23:28:14 +01:00
ok ( sa - > fFeatures = = ( FADF_HAVEVARTYPE | FADF_CREATEVECTOR ) | |
broken ( sa - > fFeatures = = FADF_CREATEVECTOR /* W2k */ ) ,
" got 0x%08x \n " , sa - > fFeatures ) ;
ok ( sacopy - > fFeatures = = ( FADF_HAVEVARTYPE | FADF_CREATEVECTOR ) | |
broken ( sacopy - > fFeatures = = FADF_CREATEVECTOR /* W2k */ ) ,
" got 0x%08x \n " , sacopy - > fFeatures ) ;
2014-01-08 18:39:42 +01:00
hres = SafeArrayCopyData ( sa , sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2014-01-12 23:28:14 +01:00
ok ( sacopy - > fFeatures = = ( FADF_HAVEVARTYPE | FADF_CREATEVECTOR ) | |
broken ( sacopy - > fFeatures = = FADF_CREATEVECTOR /* W2k */ ) ,
" got 0x%04x \n " , sacopy - > fFeatures ) ;
2014-01-08 18:39:42 +01:00
SafeArrayDestroy ( sacopy ) ;
sacopy = SafeArrayCreate ( VT_UI1 , NUM_DIMENSIONS , sab ) ;
ok ( sacopy ! = NULL , " Copy test couldn't create copy array \n " ) ;
ok ( sacopy - > fFeatures = = FADF_HAVEVARTYPE , " 0x%04x \n " , sacopy - > fFeatures ) ;
hres = SafeArrayCopyData ( sa , sacopy ) ;
ok ( hres = = E_INVALIDARG , " got 0x%08x \n " , hres ) ;
SafeArrayDestroy ( sacopy ) ;
SafeArrayDestroy ( sa ) ;
2003-12-15 22:11:25 +01:00
}
static void test_SafeArrayCreateEx ( void )
{
IRecordInfoImpl * iRec ;
SAFEARRAYBOUND sab [ 4 ] ;
SAFEARRAY * sa ;
HRESULT hres ;
int dimension ;
if ( ! pSafeArrayCreateEx )
2011-01-18 17:52:19 +01:00
{
win_skip ( " SafeArrayCreateEx not supported \n " ) ;
2003-12-15 22:11:25 +01:00
return ;
2011-01-18 17:52:19 +01:00
}
2003-12-15 22:11:25 +01:00
for ( dimension = 0 ; dimension < NUM_DIMENSIONS ; dimension + + )
{
sab [ dimension ] . lLbound = 0 ;
sab [ dimension ] . cElements = 8 ;
}
/* Failure cases */
sa = pSafeArrayCreateEx ( VT_UI1 , 1 , NULL , NULL ) ;
ok ( sa = = NULL , " CreateEx NULL bounds didn't fail \n " ) ;
/* test IID storage & defaulting */
sa = pSafeArrayCreateEx ( VT_DISPATCH , 1 , sab , ( PVOID ) & IID_ITypeInfo ) ;
ok ( sa ! = NULL , " CreateEx (ITypeInfo) failed \n " ) ;
if ( sa )
{
GUID guid ;
if ( pSafeArrayGetIID )
{
hres = pSafeArrayGetIID ( sa , & guid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CreateEx (ITypeInfo) no IID hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK )
{
ok ( IsEqualGUID ( & guid , & IID_ITypeInfo ) , " CreateEx (ITypeInfo) bad IID \n " ) ;
}
}
if ( pSafeArraySetIID )
{
hres = pSafeArraySetIID ( sa , & IID_IUnknown ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " Failed to set IID, hres = %8x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK & & pSafeArrayGetIID )
{
hres = pSafeArrayGetIID ( sa , & guid ) ;
ok ( hres = = S_OK & & IsEqualGUID ( & guid , & IID_IUnknown ) , " Set bad IID \n " ) ;
}
}
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
sa = pSafeArrayCreateEx ( VT_DISPATCH , 1 , sab , NULL ) ;
ok ( sa ! = NULL , " CreateEx (NULL) failed \n " ) ;
if ( sa )
{
GUID guid ;
if ( pSafeArrayGetIID )
{
2004-03-17 21:47:42 +01:00
hres = pSafeArrayGetIID ( sa , & guid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CreateEx (NULL) no IID hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK )
{
ok ( IsEqualGUID ( & guid , & IID_IDispatch ) , " CreateEx (NULL) bad IID \n " ) ;
}
}
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
sa = pSafeArrayCreateEx ( VT_UNKNOWN , 1 , sab , NULL ) ;
ok ( sa ! = NULL , " CreateEx (NULL-Unk) failed \n " ) ;
if ( sa )
{
GUID guid ;
if ( pSafeArrayGetIID )
{
2004-03-17 21:47:42 +01:00
hres = pSafeArrayGetIID ( sa , & guid ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CreateEx (NULL-Unk) no IID hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK )
{
ok ( IsEqualGUID ( & guid , & IID_IUnknown ) , " CreateEx (NULL-Unk) bad IID \n " ) ;
}
}
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
/* VT_RECORD failure case */
sa = pSafeArrayCreateEx ( VT_RECORD , 1 , sab , NULL ) ;
2011-08-03 23:50:18 +02:00
ok ( sa = = NULL , " CreateEx (NULL-Rec) succeeded \n " ) ;
2003-12-15 22:11:25 +01:00
iRec = IRecordInfoImpl_Construct ( ) ;
/* Win32 doesn't care if GetSize fails */
fail_GetSize = TRUE ;
2014-02-17 09:30:09 +01:00
sa = pSafeArrayCreateEx ( VT_RECORD , 1 , sab , & iRec - > IRecordInfo_iface ) ;
2003-12-15 22:11:25 +01:00
ok ( sa ! = NULL , " CreateEx (Fail Size) failed \n " ) ;
2006-10-12 13:56:01 +02:00
ok ( iRec - > ref = = START_REF_COUNT + 1 , " Wrong iRec refcount %d \n " , iRec - > ref ) ;
ok ( iRec - > sizeCalled = = 1 , " GetSize called %d times \n " , iRec - > sizeCalled ) ;
ok ( iRec - > clearCalled = = 0 , " Clear called %d times \n " , iRec - > clearCalled ) ;
2003-12-15 22:11:25 +01:00
if ( sa )
{
2006-10-12 13:56:01 +02:00
ok ( sa - > cbElements = = RECORD_SIZE_FAIL , " Altered size to %d \n " , sa - > cbElements ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2006-10-12 13:56:01 +02:00
ok ( iRec - > clearCalled = = sab [ 0 ] . cElements , " Destroy->Clear called %d times \n " , iRec - > clearCalled ) ;
2011-02-01 12:12:46 +01:00
ok ( iRec - > ref = = START_REF_COUNT , " got %d, expected %d \n " , iRec - > ref , START_REF_COUNT ) ;
2003-12-15 22:11:25 +01:00
}
/* Test VT_RECORD array */
fail_GetSize = FALSE ;
iRec - > ref = START_REF_COUNT ;
iRec - > sizeCalled = 0 ;
iRec - > clearCalled = 0 ;
2014-02-17 09:30:09 +01:00
sa = pSafeArrayCreateEx ( VT_RECORD , 1 , sab , & iRec - > IRecordInfo_iface ) ;
2003-12-15 22:11:25 +01:00
ok ( sa ! = NULL , " CreateEx (Rec) failed \n " ) ;
2006-10-12 13:56:01 +02:00
ok ( iRec - > ref = = START_REF_COUNT + 1 , " Wrong iRec refcount %d \n " , iRec - > ref ) ;
ok ( iRec - > sizeCalled = = 1 , " GetSize called %d times \n " , iRec - > sizeCalled ) ;
ok ( iRec - > clearCalled = = 0 , " Clear called %d times \n " , iRec - > clearCalled ) ;
2004-03-17 21:47:42 +01:00
if ( sa & & pSafeArrayGetRecordInfo )
2003-12-15 22:11:25 +01:00
{
IRecordInfo * saRec = NULL ;
2014-02-17 09:30:09 +01:00
SAFEARRAY * sacopy ;
2003-12-15 22:11:25 +01:00
2014-02-17 09:30:09 +01:00
hres = pSafeArrayGetRecordInfo ( sa , & saRec ) ;
2003-12-15 22:11:25 +01:00
ok ( hres = = S_OK , " GRI failed \n " ) ;
2010-12-14 12:02:45 +01:00
ok ( saRec = = & iRec - > IRecordInfo_iface , " Different saRec \n " ) ;
2006-10-12 13:56:01 +02:00
ok ( iRec - > ref = = START_REF_COUNT + 2 , " Didn't AddRef %d \n " , iRec - > ref ) ;
2014-02-17 09:30:09 +01:00
IRecordInfo_Release ( saRec ) ;
2003-12-15 22:11:25 +01:00
2006-10-12 13:56:01 +02:00
ok ( sa - > cbElements = = RECORD_SIZE , " Elemsize is %d \n " , sa - > cbElements ) ;
2003-12-15 22:11:25 +01:00
2014-02-17 09:30:09 +01:00
/* try to copy record based arrays */
sacopy = pSafeArrayCreateEx ( VT_RECORD , 1 , sab , & iRec - > IRecordInfo_iface ) ;
iRec - > recordcopy = 0 ;
iRec - > clearCalled = 0 ;
2014-04-30 15:42:10 +02:00
/* array copy code doesn't explicitly clear a record */
2014-02-17 09:30:09 +01:00
hres = SafeArrayCopyData ( sa , sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( iRec - > recordcopy = = sab [ 0 ] . cElements , " got %d \n " , iRec - > recordcopy ) ;
ok ( iRec - > clearCalled = = 0 , " got %d \n " , iRec - > clearCalled ) ;
2014-02-18 07:59:31 +01:00
2014-02-17 09:30:09 +01:00
hres = SafeArrayDestroy ( sacopy ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
iRec - > clearCalled = 0 ;
iRec - > sizeCalled = 0 ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2014-02-17 09:30:09 +01:00
ok ( iRec - > sizeCalled = = 0 , " Destroy->GetSize called %d times \n " , iRec - > sizeCalled ) ;
2006-10-12 13:56:01 +02:00
ok ( iRec - > clearCalled = = sab [ 0 ] . cElements , " Destroy->Clear called %d times \n " , iRec - > clearCalled ) ;
ok ( iRec - > ref = = START_REF_COUNT , " Wrong iRec refcount %d \n " , iRec - > ref ) ;
2003-12-15 22:11:25 +01:00
}
2011-01-18 17:52:19 +01:00
else
2011-01-22 23:24:06 +01:00
{
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
}
IRecordInfo_Release ( & iRec - > IRecordInfo_iface ) ;
2003-12-15 22:11:25 +01:00
}
static void test_SafeArrayClear ( void )
{
SAFEARRAYBOUND sab ;
SAFEARRAY * sa ;
VARIANTARG v ;
HRESULT hres ;
sab . lLbound = 0 ;
sab . cElements = 10 ;
sa = SafeArrayCreate ( VT_UI1 , 1 , & sab ) ;
ok ( sa ! = NULL , " Create() failed. \n " ) ;
if ( ! sa )
return ;
/* Test clearing non-NULL variants containing arrays */
V_VT ( & v ) = VT_ARRAY | VT_UI1 ;
V_ARRAY ( & v ) = sa ;
hres = VariantClear ( & v ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK & & V_VT ( & v ) = = VT_EMPTY , " VariantClear: hres 0x%x, Type %d \n " , hres , V_VT ( & v ) ) ;
2003-12-15 22:11:25 +01:00
ok ( V_ARRAY ( & v ) = = sa , " VariantClear: Overwrote value \n " ) ;
sa = SafeArrayCreate ( VT_UI1 , 1 , & sab ) ;
ok ( sa ! = NULL , " Create() failed. \n " ) ;
if ( ! sa )
return ;
V_VT ( & v ) = VT_SAFEARRAY ;
V_ARRAY ( & v ) = sa ;
hres = VariantClear ( & v ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADVARTYPE , " VariantClear: hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
V_VT ( & v ) = VT_SAFEARRAY | VT_BYREF ;
V_ARRAYREF ( & v ) = & sa ;
hres = VariantClear ( & v ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADVARTYPE , " VariantClear: hres 0x%x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
}
static void test_SafeArrayCopy ( void )
{
SAFEARRAYBOUND sab ;
2005-12-12 11:52:51 +01:00
SAFEARRAY * sa , * sa2 ;
2003-12-15 22:11:25 +01:00
VARIANTARG vSrc , vDst ;
HRESULT hres ;
2014-01-08 18:39:42 +01:00
int i ;
2003-12-15 22:11:25 +01:00
sab . lLbound = 0 ;
sab . cElements = 10 ;
sa = SafeArrayCreate ( VT_UI1 , 1 , & sab ) ;
ok ( sa ! = NULL , " Create() failed. \n " ) ;
if ( ! sa )
return ;
/* Test copying non-NULL variants containing arrays */
V_VT ( & vSrc ) = ( VT_ARRAY | VT_BYREF | VT_UI1 ) ;
V_ARRAYREF ( & vSrc ) = & sa ;
V_VT ( & vDst ) = VT_EMPTY ;
hres = VariantCopy ( & vDst , & vSrc ) ;
ok ( hres = = S_OK & & V_VT ( & vDst ) = = ( VT_ARRAY | VT_BYREF | VT_UI1 ) ,
2006-10-12 13:56:01 +02:00
" VariantCopy: hres 0x%x, Type %d \n " , hres , V_VT ( & vDst ) ) ;
2003-12-15 22:11:25 +01:00
ok ( V_ARRAYREF ( & vDst ) = = & sa , " VariantClear: Performed deep copy \n " ) ;
V_VT ( & vSrc ) = ( VT_ARRAY | VT_UI1 ) ;
V_ARRAY ( & vSrc ) = sa ;
V_VT ( & vDst ) = VT_EMPTY ;
hres = VariantCopy ( & vDst , & vSrc ) ;
ok ( hres = = S_OK & & V_VT ( & vDst ) = = ( VT_ARRAY | VT_UI1 ) ,
2006-10-12 13:56:01 +02:00
" VariantCopy: hres 0x%x, Type %d \n " , hres , V_VT ( & vDst ) ) ;
2003-12-15 22:11:25 +01:00
ok ( V_ARRAY ( & vDst ) ! = sa , " VariantClear: Performed shallow copy \n " ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( V_ARRAY ( & vSrc ) ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
hres = SafeArrayDestroy ( V_ARRAY ( & vDst ) ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2005-12-12 11:52:51 +01:00
hres = SafeArrayAllocDescriptor ( 1 , & sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SafeArrayAllocDescriptor failed with error 0x%08x \n " , hres ) ;
2005-12-12 11:52:51 +01:00
2011-02-07 20:44:43 +01:00
sa - > cbElements = 16 ;
hres = SafeArrayCopy ( sa , & sa2 ) ;
ok ( hres = = S_OK , " SafeArrayCopy failed with error 0x%08x \n " , hres ) ;
ok ( sa ! = sa2 , " SafeArrayCopy performed shallow copy \n " ) ;
hres = SafeArrayDestroy ( sa2 ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
sa2 = ( void * ) 0xdeadbeef ;
hres = SafeArrayCopy ( NULL , & sa2 ) ;
ok ( hres = = S_OK , " SafeArrayCopy failed with error 0x%08x \n " , hres ) ;
ok ( ! sa2 , " SafeArrayCopy didn't return NULL for output array \n " ) ;
hres = SafeArrayAllocDescriptor ( 1 , & sa ) ;
ok ( hres = = S_OK , " SafeArrayAllocDescriptor failed with error 0x%08x \n " , hres ) ;
sa2 = ( void * ) 0xdeadbeef ;
2005-12-12 11:52:51 +01:00
hres = SafeArrayCopy ( sa , & sa2 ) ;
ok ( hres = = E_INVALIDARG ,
2006-10-12 13:56:01 +02:00
" SafeArrayCopy with empty array should have failed with error E_INVALIDARG instead of 0x%08x \n " ,
2005-12-12 11:52:51 +01:00
hres ) ;
2011-02-07 20:44:43 +01:00
ok ( ! sa2 , " SafeArrayCopy didn't return NULL for output array \n " ) ;
2005-12-12 11:52:51 +01:00
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa2 ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2014-01-08 18:39:42 +01:00
/* test feature copy */
hres = SafeArrayAllocDescriptor ( 1 , & sa ) ;
ok ( hres = = S_OK , " SafeArrayAllocDescriptor failed with error 0x%08x \n " , hres ) ;
ok ( sa - > fFeatures = = 0 , " got src features 0x%04x \n " , sa - > fFeatures ) ;
sa - > cbElements = 16 ;
for ( i = 0 ; i < sizeof ( ignored_copy_features ) / sizeof ( USHORT ) ; i + + )
{
USHORT feature = ignored_copy_features [ i ] ;
sa - > fFeatures | = feature ;
hres = SafeArrayCopy ( sa , & sa2 ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
ok ( sa2 - > fFeatures = = 0 , " got features 0x%04x \n " , sa2 - > fFeatures ) ;
hres = SafeArrayDestroy ( sa2 ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
sa - > fFeatures & = ~ feature ;
}
SafeArrayDestroy ( sa ) ;
/* copy from a vector */
sa = SafeArrayCreateVector ( VT_UI1 , 0 , 2 ) ;
2014-01-12 23:28:14 +01:00
ok ( sa - > fFeatures = = ( FADF_HAVEVARTYPE | FADF_CREATEVECTOR ) | |
2014-01-16 20:49:53 +01:00
broken ( sa - > fFeatures = = FADF_CREATEVECTOR /* W2k */ ) ,
" got 0x%08x \n " , sa - > fFeatures ) ;
2014-01-08 18:39:42 +01:00
hres = SafeArrayCopy ( sa , & sa2 ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2014-01-12 23:28:14 +01:00
ok ( sa2 - > fFeatures = = FADF_HAVEVARTYPE | |
broken ( ! sa2 - > fFeatures /* W2k */ ) , " got 0x%04x \n " ,
sa2 - > fFeatures ) ;
2014-01-08 18:39:42 +01:00
SafeArrayDestroy ( sa2 ) ;
SafeArrayDestroy ( sa ) ;
2003-12-15 22:11:25 +01:00
}
# define MKARRAY(low,num,typ) sab.lLbound = low; sab.cElements = num; \
sa = SafeArrayCreate ( typ , 1 , & sab ) ; ok ( sa ! = NULL , " Create() failed. \n " ) ; \
if ( ! sa ) return ; \
V_VT ( & v ) = VT_ARRAY | typ ; V_ARRAY ( & v ) = sa ; VariantInit ( & v2 )
# define MKARRAYCONT(low,num,typ) sab.lLbound = low; sab.cElements = num; \
sa = SafeArrayCreate ( typ , 1 , & sab ) ; if ( ! sa ) continue ; \
V_VT ( & v ) = VT_ARRAY | typ ; V_ARRAY ( & v ) = sa ; VariantInit ( & v2 )
static void test_SafeArrayChangeTypeEx ( void )
{
static const char * szHello = " Hello World " ;
SAFEARRAYBOUND sab ;
SAFEARRAY * sa ;
VARIANTARG v , v2 ;
VARTYPE vt ;
HRESULT hres ;
/* VT_ARRAY|VT_UI1 -> VT_BSTR */
MKARRAY ( 0 , strlen ( szHello ) + 1 , VT_UI1 ) ;
memcpy ( sa - > pvData , szHello , strlen ( szHello ) + 1 ) ;
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_BSTR ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CTE VT_ARRAY|VT_UI1 -> VT_BSTR failed with %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
if ( hres = = S_OK )
{
ok ( V_VT ( & v2 ) = = VT_BSTR , " CTE VT_ARRAY|VT_UI1 -> VT_BSTR did not return VT_BSTR, but %d. \n " , V_VT ( & v2 ) ) ;
ok ( strcmp ( ( char * ) V_BSTR ( & v2 ) , szHello ) = = 0 , " Expected string '%s', got '%s' \n " , szHello ,
( char * ) V_BSTR ( & v2 ) ) ;
VariantClear ( & v2 ) ;
}
/* VT_VECTOR|VT_UI1 -> VT_BSTR */
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2004-03-17 21:47:42 +01:00
if ( pSafeArrayCreateVector )
{
sa = pSafeArrayCreateVector ( VT_UI1 , 0 , strlen ( szHello ) + 1 ) ;
ok ( sa ! = NULL , " CreateVector() failed. \n " ) ;
if ( ! sa )
return ;
2003-12-15 22:11:25 +01:00
2004-03-17 21:47:42 +01:00
memcpy ( sa - > pvData , szHello , strlen ( szHello ) + 1 ) ;
V_VT ( & v ) = VT_VECTOR | VT_UI1 ;
V_ARRAY ( & v ) = sa ;
VariantInit ( & v2 ) ;
2003-12-15 22:11:25 +01:00
2004-03-17 21:47:42 +01:00
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_BSTR ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_BADVARTYPE , " CTE VT_VECTOR|VT_UI1 returned %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
2004-03-17 21:47:42 +01:00
/* (vector)VT_ARRAY|VT_UI1 -> VT_BSTR (In place) */
V_VT ( & v ) = VT_ARRAY | VT_UI1 ;
hres = VariantChangeTypeEx ( & v , & v , 0 , 0 , VT_BSTR ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CTE VT_ARRAY|VT_UI1 -> VT_BSTR failed with %x \n " , hres ) ;
2004-03-17 21:47:42 +01:00
if ( hres = = S_OK )
{
ok ( V_VT ( & v ) = = VT_BSTR , " CTE VT_ARRAY|VT_UI1 -> VT_BSTR did not return VT_BSTR, but %d. \n " , V_VT ( & v ) ) ;
ok ( strcmp ( ( char * ) V_BSTR ( & v ) , szHello ) = = 0 , " Expected string '%s', got '%s' \n " , szHello ,
2003-12-15 22:11:25 +01:00
( char * ) V_BSTR ( & v ) ) ;
2004-03-17 21:47:42 +01:00
VariantClear ( & v ) ;
}
2003-12-15 22:11:25 +01:00
}
/* To/from BSTR only works with arrays of VT_UI1 */
2011-02-01 12:12:46 +01:00
for ( vt = VT_EMPTY ; vt < = VT_CLSID ; vt + + )
2003-12-15 22:11:25 +01:00
{
if ( vt = = VT_UI1 )
continue ;
2011-01-22 23:24:06 +01:00
sab . lLbound = 0 ;
sab . cElements = 1 ;
sa = SafeArrayCreate ( vt , 1 , & sab ) ;
if ( ! sa ) continue ;
V_VT ( & v ) = VT_ARRAY | vt ;
V_ARRAY ( & v ) = sa ;
VariantInit ( & v2 ) ;
2003-12-15 22:11:25 +01:00
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_BSTR ) ;
2011-02-01 12:29:50 +01:00
if ( vt = = VT_INT_PTR | | vt = = VT_UINT_PTR )
{
ok ( hres = = DISP_E_BADVARTYPE , " expected DISP_E_BADVARTYPE, got 0x%08x \n " , hres ) ;
SafeArrayDestroy ( sa ) ;
}
else
{
ok ( hres = = DISP_E_TYPEMISMATCH , " got 0x%08x for vt=%d, instead of DISP_E_TYPEMISMATCH \n " , hres , vt ) ;
hres = VariantClear ( & v ) ;
ok ( hres = = S_OK , " expected S_OK, got 0x%08x \n " , hres ) ;
}
2003-12-15 22:11:25 +01:00
VariantClear ( & v2 ) ;
}
/* Can't change an array of one type into array of another type , even
* if the other type is the same size
*/
2004-03-17 21:47:42 +01:00
if ( pSafeArrayCreateVector )
{
sa = pSafeArrayCreateVector ( VT_UI1 , 0 , 1 ) ;
ok ( sa ! = NULL , " CreateVector() failed. \n " ) ;
if ( ! sa )
return ;
2003-12-15 22:11:25 +01:00
2004-03-17 21:47:42 +01:00
V_VT ( & v ) = VT_ARRAY | VT_UI1 ;
V_ARRAY ( & v ) = sa ;
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_ARRAY | VT_I1 ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_TYPEMISMATCH , " CTE VT_ARRAY|VT_UI1->VT_ARRAY|VT_I1 returned %x \n " , hres ) ;
2003-12-15 22:11:25 +01:00
2004-03-17 21:47:42 +01:00
/* But can change to the same array type */
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2004-03-17 21:47:42 +01:00
sa = pSafeArrayCreateVector ( VT_UI1 , 0 , 1 ) ;
ok ( sa ! = NULL , " CreateVector() failed. \n " ) ;
if ( ! sa )
return ;
V_VT ( & v ) = VT_ARRAY | VT_UI1 ;
V_ARRAY ( & v ) = sa ;
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_ARRAY | VT_UI1 ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " CTE VT_ARRAY|VT_UI1->VT_ARRAY|VT_UI1 returned %x \n " , hres ) ;
2011-01-22 23:24:06 +01:00
hres = SafeArrayDestroy ( sa ) ;
ok ( hres = = S_OK , " got 0x%08x \n " , hres ) ;
2010-01-07 11:48:58 +01:00
VariantClear ( & v2 ) ;
2004-03-17 21:47:42 +01:00
}
2003-12-15 22:11:25 +01:00
/* NULL/EMPTY */
MKARRAY ( 0 , 1 , VT_UI1 ) ;
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_NULL ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_TYPEMISMATCH , " CTE VT_ARRAY|VT_UI1 returned %x \n " , hres ) ;
2009-12-06 13:05:37 +01:00
VariantClear ( & v ) ;
2003-12-15 22:11:25 +01:00
MKARRAY ( 0 , 1 , VT_UI1 ) ;
hres = VariantChangeTypeEx ( & v2 , & v , 0 , 0 , VT_EMPTY ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = DISP_E_TYPEMISMATCH , " CTE VT_ARRAY|VT_UI1 returned %x \n " , hres ) ;
2009-12-06 13:05:37 +01:00
VariantClear ( & v ) ;
2003-12-15 22:11:25 +01:00
}
2004-10-19 23:08:18 +02:00
static void test_SafeArrayDestroyData ( void )
{
SAFEARRAYBOUND sab ;
SAFEARRAY * sa ;
HRESULT hres ;
2006-06-09 12:02:04 +02:00
int value = 0xdeadbeef ;
2006-06-16 04:52:54 +02:00
LONG index [ 1 ] ;
2013-10-24 23:25:43 +02:00
void * temp_pvData ;
2004-10-19 23:08:18 +02:00
sab . lLbound = 0 ;
sab . cElements = 10 ;
sa = SafeArrayCreate ( VT_INT , 1 , & sab ) ;
ok ( sa ! = NULL , " Create() failed. \n " ) ;
if ( ! sa )
return ;
index [ 0 ] = 1 ;
SafeArrayPutElement ( sa , index , & value ) ;
2006-06-09 12:02:04 +02:00
/* SafeArrayDestroyData shouldn't free pvData if FADF_STATIC is set. */
2004-10-19 23:08:18 +02:00
sa - > fFeatures | = FADF_STATIC ;
temp_pvData = sa - > pvData ;
hres = SafeArrayDestroyData ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SADData FADF_STATIC failed, error code %x. \n " , hres ) ;
2004-10-19 23:08:18 +02:00
ok ( sa - > pvData = = temp_pvData , " SADData FADF_STATIC: pvData=%p, expected %p (fFeatures = %d). \n " ,
sa - > pvData , temp_pvData , sa - > fFeatures ) ;
2006-06-09 12:02:04 +02:00
SafeArrayGetElement ( sa , index , & value ) ;
ok ( value = = 0 , " Data not cleared after SADData \n " ) ;
2004-10-19 23:08:18 +02:00
/* Clear FADF_STATIC, now really destroy the data. */
sa - > fFeatures ^ = FADF_STATIC ;
hres = SafeArrayDestroyData ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SADData !FADF_STATIC failed, error code %x. \n " , hres ) ;
2004-10-19 23:08:18 +02:00
ok ( sa - > pvData = = NULL , " SADData !FADF_STATIC: pvData=%p, expected NULL. \n " , sa - > pvData ) ;
hres = SafeArrayDestroy ( sa ) ;
2006-10-12 13:56:01 +02:00
ok ( hres = = S_OK , " SAD failed, error code %x. \n " , hres ) ;
2004-10-19 23:08:18 +02:00
}
2014-02-24 05:15:41 +01:00
static void test_safearray_layout ( void )
{
IRecordInfoImpl * irec ;
IRecordInfo * record ;
GUID guid , * guidptr ;
SAFEARRAYBOUND sab ;
SAFEARRAY * sa ;
DWORD * dwptr ;
HRESULT hr ;
sab . lLbound = 0 ;
sab . cElements = 10 ;
/* GUID field */
sa = SafeArrayCreate ( VT_UNKNOWN , 1 , & sab ) ;
ok ( sa ! = NULL , " got %p \n " , sa ) ;
guidptr = ( GUID * ) sa - 1 ;
ok ( IsEqualIID ( guidptr , & IID_IUnknown ) , " got %s \n " , wine_dbgstr_guid ( guidptr ) ) ;
hr = SafeArraySetIID ( sa , & IID_IDispatch ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
ok ( IsEqualIID ( guidptr , & IID_IDispatch ) , " got %s \n " , wine_dbgstr_guid ( guidptr ) ) ;
memcpy ( guidptr , & IID_IUnknown , sizeof ( GUID ) ) ;
hr = SafeArrayGetIID ( sa , & guid ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
ok ( IsEqualIID ( & guid , & IID_IUnknown ) , " got %s \n " , wine_dbgstr_guid ( & guid ) ) ;
hr = SafeArrayDestroy ( sa ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
/* VARTYPE field */
sa = SafeArrayCreate ( VT_UI1 , 1 , & sab ) ;
ok ( sa ! = NULL , " got %p \n " , sa ) ;
dwptr = ( DWORD * ) sa - 1 ;
ok ( * dwptr = = VT_UI1 , " got %d \n " , * dwptr ) ;
hr = SafeArrayDestroy ( sa ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
/* IRecordInfo pointer */
irec = IRecordInfoImpl_Construct ( ) ;
irec - > ref = 1 ;
sa = pSafeArrayCreateEx ( VT_RECORD , 1 , & sab , & irec - > IRecordInfo_iface ) ;
ok ( sa ! = NULL , " failed to create array \n " ) ;
record = * ( ( IRecordInfo * * ) sa - 1 ) ;
ok ( record = = & irec - > IRecordInfo_iface , " got %p \n " , record ) ;
hr = SafeArrayDestroy ( sa ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
IRecordInfo_Release ( & irec - > IRecordInfo_iface ) ;
}
2003-12-15 22:11:25 +01:00
START_TEST ( safearray )
{
2007-08-17 14:10:32 +02:00
hOleaut32 = GetModuleHandleA ( " oleaut32.dll " ) ;
2003-12-15 22:11:25 +01:00
2013-06-26 23:47:57 +02:00
has_i8 = GetProcAddress ( hOleaut32 , " VarI8FromI1 " ) ! = NULL ;
2003-12-15 22:11:25 +01:00
GETPTR ( SafeArrayAllocDescriptorEx ) ;
GETPTR ( SafeArrayCopyData ) ;
GETPTR ( SafeArrayGetIID ) ;
GETPTR ( SafeArraySetIID ) ;
GETPTR ( SafeArrayGetVartype ) ;
GETPTR ( SafeArrayCreateEx ) ;
2004-03-17 21:47:42 +01:00
GETPTR ( SafeArrayCreateVector ) ;
2011-01-18 17:52:19 +01:00
GETPTR ( SafeArrayGetRecordInfo ) ;
2003-12-15 22:11:25 +01:00
2005-05-20 21:00:02 +02:00
check_for_VT_INT_PTR ( ) ;
2003-12-15 22:11:25 +01:00
test_safearray ( ) ;
test_SafeArrayAllocDestroyDescriptor ( ) ;
test_SafeArrayCreateLockDestroy ( ) ;
test_VectorCreateLockDestroy ( ) ;
test_LockUnlock ( ) ;
test_SafeArrayChangeTypeEx ( ) ;
test_SafeArrayCopy ( ) ;
test_SafeArrayClear ( ) ;
test_SafeArrayCreateEx ( ) ;
test_SafeArrayCopyData ( ) ;
2004-10-19 23:08:18 +02:00
test_SafeArrayDestroyData ( ) ;
2003-12-15 22:11:25 +01:00
test_SafeArrayGetPutElement ( ) ;
2003-12-30 20:06:41 +01:00
test_SafeArrayGetPutElement_BSTR ( ) ;
test_SafeArrayGetPutElement_IUnknown ( ) ;
2006-06-09 12:02:04 +02:00
test_SafeArrayRedim_IUnknown ( ) ;
2004-09-20 21:11:48 +02:00
test_SafeArrayGetPutElement_VARIANT ( ) ;
2014-02-24 05:15:41 +01:00
test_safearray_layout ( ) ;
2003-12-15 22:11:25 +01:00
}