190 lines
6.3 KiB
C
190 lines
6.3 KiB
C
/* OLEDB Database tests
|
|
*
|
|
* Copyright 2012 Alistair Leslie-Hughes
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
#include <stdarg.h>
|
|
|
|
#define COBJMACROS
|
|
#define NONAMELESSUNION
|
|
#define NONAMELESSSTRUCT
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "ole2.h"
|
|
#include "msdadc.h"
|
|
#include "msdasc.h"
|
|
#include "shlobj.h"
|
|
#include "initguid.h"
|
|
|
|
#include "wine/test.h"
|
|
|
|
DEFINE_GUID(CSLID_MSDAER, 0xc8b522cf,0x5cf3,0x11ce,0xad,0xe5,0x00,0xaa,0x00,0x44,0x77,0x3d);
|
|
|
|
static WCHAR initstring_default[] = {'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y',';',0};
|
|
|
|
static void test_GetDataSource(WCHAR *initstring)
|
|
{
|
|
IDataInitialize *datainit = NULL;
|
|
IDBInitialize *dbinit = NULL;
|
|
HRESULT hr;
|
|
|
|
trace("Data Source: %s\n", wine_dbgstr_w(initstring));
|
|
|
|
hr = CoCreateInstance(&CLSID_MSDAINITIALIZE, NULL, CLSCTX_INPROC_SERVER, &IID_IDataInitialize,(void**)&datainit);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
|
|
/* a failure to create data source here may indicate provider is simply not present */
|
|
hr = IDataInitialize_GetDataSource(datainit, NULL, CLSCTX_INPROC_SERVER, initstring, &IID_IDBInitialize, (IUnknown**)&dbinit);
|
|
if(SUCCEEDED(hr))
|
|
{
|
|
IDBProperties *props = NULL;
|
|
IMalloc *ppM = NULL;
|
|
|
|
hr = SHGetMalloc(&ppM);
|
|
if (FAILED(hr))
|
|
{
|
|
ok(0, "Couldn't get IMalloc object.\n");
|
|
goto end;
|
|
}
|
|
|
|
hr = IDBInitialize_QueryInterface(dbinit, &IID_IDBProperties, (void**)&props);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
if(SUCCEEDED(hr))
|
|
{
|
|
ULONG cnt;
|
|
DBPROPINFOSET *pInfoset;
|
|
OLECHAR *ary;
|
|
|
|
hr = IDBProperties_GetPropertyInfo(props, 0, NULL, &cnt, &pInfoset, &ary);
|
|
todo_wine ok(hr == S_OK, "got %08x\n", hr);
|
|
if(hr == S_OK)
|
|
{
|
|
ULONG i;
|
|
for(i =0; i < pInfoset->cPropertyInfos; i++)
|
|
{
|
|
trace("(0x%04x) '%s' %d\n", pInfoset->rgPropertyInfos[i].dwPropertyID, wine_dbgstr_w(pInfoset->rgPropertyInfos[i].pwszDescription),
|
|
pInfoset->rgPropertyInfos[i].vtType);
|
|
}
|
|
|
|
IMalloc_Free(ppM, ary);
|
|
}
|
|
|
|
IDBProperties_Release(props);
|
|
}
|
|
|
|
IMalloc_Release(ppM);
|
|
|
|
end:
|
|
IDBInitialize_Release(dbinit);
|
|
}
|
|
|
|
IDataInitialize_Release(datainit);
|
|
}
|
|
|
|
static void test_database(void)
|
|
{
|
|
static WCHAR initstring_jet[] = {'P','r','o','v','i','d','e','r','=','M','i','c','r','o','s','o','f','t','.',
|
|
'J','e','t','.','O','L','E','D','B','.','4','.','0',';',
|
|
'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y',';',
|
|
'P','e','r','s','i','s','t',' ','S','e','c','u','r','i','t','y',' ','I','n','f','o','=','F','a','l','s','e',';',0};
|
|
static WCHAR initstring_lower[] = {'d','a','t','a',' ','s','o','u','r','c','e','=','d','u','m','m','y',';',0};
|
|
IDataInitialize *datainit = NULL;
|
|
HRESULT hr;
|
|
|
|
hr = CoCreateInstance(&CLSID_MSDAINITIALIZE, NULL, CLSCTX_INPROC_SERVER, &IID_IDataInitialize, (void**)&datainit);
|
|
if (FAILED(hr))
|
|
{
|
|
win_skip("Unable to load oledb library\n");
|
|
return;
|
|
}
|
|
IDataInitialize_Release(datainit);
|
|
|
|
test_GetDataSource(NULL);
|
|
test_GetDataSource(initstring_jet);
|
|
test_GetDataSource(initstring_default);
|
|
test_GetDataSource(initstring_lower);
|
|
}
|
|
|
|
static void test_errorinfo(void)
|
|
{
|
|
HRESULT hr;
|
|
IUnknown *unk = NULL;
|
|
|
|
hr = CoCreateInstance(&CSLID_MSDAER, NULL, CLSCTX_INPROC_SERVER, &IID_IUnknown,(void**)&unk);
|
|
todo_wine ok(hr == S_OK, "got %08x\n", hr);
|
|
if(hr == S_OK)
|
|
{
|
|
IErrorInfo *errorinfo;
|
|
|
|
hr = IUnknown_QueryInterface(unk, &IID_IErrorInfo, (void**)&errorinfo);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
if(hr == S_OK)
|
|
{
|
|
IErrorInfo_Release(errorinfo);
|
|
}
|
|
|
|
IUnknown_Release(unk);
|
|
}
|
|
}
|
|
|
|
static void test_initializationstring(void)
|
|
{
|
|
static WCHAR initstring_msdasql[] = {'P','r','o','v','i','d','e','r','=','M','S','D','A','S','Q','L','.','1',';',
|
|
'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y', 0};
|
|
static WCHAR initstring_sqloledb[] = {'P','r','o','v','i','d','e','r','=','S','Q','L','O','L','E','D','B','.','1',';',
|
|
'D','a','t','a',' ','S','o','u','r','c','e','=','d','u','m','m','y', 0};
|
|
IDataInitialize *datainit = NULL;
|
|
IDBInitialize *dbinit = NULL;
|
|
HRESULT hr;
|
|
WCHAR *initstring = NULL;
|
|
|
|
hr = CoCreateInstance(&CLSID_MSDAINITIALIZE, NULL, CLSCTX_INPROC_SERVER, &IID_IDataInitialize,(void**)&datainit);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
if(SUCCEEDED(hr))
|
|
{
|
|
hr = IDataInitialize_GetDataSource(datainit, NULL, CLSCTX_INPROC_SERVER, initstring_default,
|
|
&IID_IDBInitialize, (IUnknown**)&dbinit);
|
|
if(SUCCEEDED(hr))
|
|
{
|
|
hr = IDataInitialize_GetInitializationString(datainit, (IUnknown*)dbinit, 0, &initstring);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
if(hr == S_OK)
|
|
{
|
|
trace("Init String: %s\n", wine_dbgstr_w(initstring));
|
|
todo_wine ok(!lstrcmpW(initstring_msdasql, initstring) ||
|
|
!lstrcmpW(initstring_sqloledb, initstring), "got %s\n", wine_dbgstr_w(initstring));
|
|
CoTaskMemFree(initstring);
|
|
}
|
|
|
|
IDBInitialize_Release(dbinit);
|
|
}
|
|
|
|
IDataInitialize_Release(datainit);
|
|
}
|
|
}
|
|
|
|
START_TEST(database)
|
|
{
|
|
OleInitialize(NULL);
|
|
|
|
test_database();
|
|
test_errorinfo();
|
|
test_initializationstring();
|
|
|
|
OleUninitialize();
|
|
}
|