2010-08-16 09:57:34 +02:00
|
|
|
/*
|
|
|
|
* IGameStatisticsMgr tests
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Mariusz Pluciński
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
2010-09-20 15:04:56 +02:00
|
|
|
#include "shlwapi.h"
|
|
|
|
#include "oleauto.h"
|
2010-09-23 15:36:57 +02:00
|
|
|
#include "shlobj.h"
|
2010-09-20 15:04:56 +02:00
|
|
|
|
2010-08-16 09:57:34 +02:00
|
|
|
#include "gameux.h"
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
2010-09-20 15:04:56 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* utilities
|
|
|
|
*/
|
|
|
|
static WCHAR sExeName[MAX_PATH] = {0};
|
|
|
|
static GUID gameInstanceId;
|
2015-02-21 18:16:27 +01:00
|
|
|
|
2010-09-20 15:04:56 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Registers test suite executable as game in Games Explorer. Required to test
|
|
|
|
* game statistics.
|
|
|
|
*/
|
2015-02-21 18:16:27 +01:00
|
|
|
static void test_register_game(IGameExplorer **explorer)
|
|
|
|
{
|
2010-09-20 15:04:56 +02:00
|
|
|
HRESULT hr;
|
2015-02-21 18:16:27 +01:00
|
|
|
WCHAR pathW[MAX_PATH];
|
2010-09-20 15:04:56 +02:00
|
|
|
BSTR bstrExeName, bstrExePath;
|
|
|
|
|
|
|
|
/* prepare path to binary */
|
2018-05-30 01:15:30 +02:00
|
|
|
GetModuleFileNameW(NULL, sExeName, ARRAY_SIZE(sExeName));
|
2010-09-20 15:04:56 +02:00
|
|
|
|
2015-02-21 18:16:27 +01:00
|
|
|
lstrcpyW(pathW, sExeName);
|
|
|
|
PathRemoveFileSpecW(pathW);
|
2010-09-20 15:04:56 +02:00
|
|
|
|
2015-02-21 18:16:27 +01:00
|
|
|
hr = CoCreateInstance(&CLSID_GameExplorer, NULL, CLSCTX_INPROC_SERVER, &IID_IGameExplorer, (void**)explorer);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
2010-09-20 15:04:56 +02:00
|
|
|
|
2015-02-21 18:16:27 +01:00
|
|
|
gameInstanceId = GUID_NULL;
|
|
|
|
bstrExeName = SysAllocString(sExeName);
|
|
|
|
bstrExePath = SysAllocString(pathW);
|
|
|
|
hr = IGameExplorer_AddGame(*explorer, bstrExeName, bstrExePath, GIS_CURRENT_USER, &gameInstanceId);
|
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
2010-09-20 15:04:56 +02:00
|
|
|
|
|
|
|
SysFreeString(bstrExeName);
|
|
|
|
SysFreeString(bstrExePath);
|
|
|
|
}
|
2015-02-21 18:16:27 +01:00
|
|
|
|
2010-09-20 15:04:56 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Unregisters test suite from Games Explorer.
|
|
|
|
*/
|
2015-02-21 18:16:27 +01:00
|
|
|
static void test_unregister_game(IGameExplorer *ge)
|
|
|
|
{
|
2010-09-20 15:04:56 +02:00
|
|
|
HRESULT hr;
|
|
|
|
|
2015-02-21 18:16:27 +01:00
|
|
|
if (!ge) return;
|
2010-09-20 15:04:56 +02:00
|
|
|
|
|
|
|
hr = IGameExplorer_RemoveGame(ge, gameInstanceId);
|
2015-02-21 18:16:27 +01:00
|
|
|
ok(hr == S_OK, "got 0x%08x\n", hr);
|
2010-09-20 15:04:56 +02:00
|
|
|
IGameExplorer_Release(ge);
|
|
|
|
}
|
2015-02-21 18:16:27 +01:00
|
|
|
|
2010-09-23 15:36:57 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* _buildStatisticsFilePath
|
2011-08-03 23:50:18 +02:00
|
|
|
* Creates path to file containing statistics of game with given id.
|
2010-09-23 15:36:57 +02:00
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* guidApplicationId [I] application id of game
|
|
|
|
* lpStatisticsFile [O] pointer where address of
|
|
|
|
* string with path will be
|
|
|
|
* stored. Path must be deallocated
|
|
|
|
* using CoTaskMemFree(...)
|
|
|
|
*/
|
|
|
|
static HRESULT _buildStatisticsFilePath(LPCGUID guidApplicationId, LPWSTR *lpStatisticsFile)
|
|
|
|
{
|
|
|
|
static const WCHAR sBackslash[] = {'\\',0};
|
|
|
|
static const WCHAR sStatisticsDir[] = {'\\','M','i','c','r','o','s','o','f','t',
|
|
|
|
'\\','W','i','n','d','o','w','s','\\','G','a','m','e','E','x','p',
|
|
|
|
'l','o','r','e','r','\\','G','a','m','e','S','t','a','t','i','s',
|
2010-12-19 20:11:15 +01:00
|
|
|
't','i','c','s','\\',0};
|
2010-09-23 15:36:57 +02:00
|
|
|
static const WCHAR sDotGamestats[] = {'.','g','a','m','e','s','t','a','t','s',0};
|
|
|
|
HRESULT hr;
|
2014-03-25 08:37:17 +01:00
|
|
|
WCHAR sGuid[49], sPath[MAX_PATH];
|
2010-09-23 15:36:57 +02:00
|
|
|
|
2018-02-02 07:51:58 +01:00
|
|
|
hr = SHGetFolderPathW(NULL, CSIDL_LOCAL_APPDATA, NULL, SHGFP_TYPE_CURRENT, sPath);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
if(SUCCEEDED(hr))
|
2018-05-30 01:15:30 +02:00
|
|
|
hr = (StringFromGUID2(guidApplicationId, sGuid, ARRAY_SIZE(sGuid)) != 0 ? S_OK : E_FAIL);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
lstrcatW(sPath, sStatisticsDir);
|
|
|
|
lstrcatW(sPath, sGuid);
|
|
|
|
lstrcatW(sPath, sBackslash);
|
|
|
|
lstrcatW(sPath, sGuid);
|
|
|
|
lstrcatW(sPath, sDotGamestats);
|
|
|
|
|
|
|
|
*lpStatisticsFile = CoTaskMemAlloc((lstrlenW(sPath)+1)*sizeof(WCHAR));
|
|
|
|
if(!*lpStatisticsFile) hr = E_OUTOFMEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(SUCCEEDED(hr))
|
|
|
|
lstrcpyW(*lpStatisticsFile, sPath);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
/*******************************************************************************
|
|
|
|
* _isFileExist
|
|
|
|
* Checks if given file exists
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* lpFile [I] path to file
|
|
|
|
*
|
|
|
|
* Result:
|
|
|
|
* TRUE file exists
|
|
|
|
* FALSE file does not exist
|
|
|
|
*/
|
2010-09-28 20:12:49 +02:00
|
|
|
static BOOL _isFileExists(LPCWSTR lpFile)
|
2010-09-23 15:36:57 +02:00
|
|
|
{
|
|
|
|
HANDLE hFile = CreateFileW(lpFile, GENERIC_READ, 0, NULL,
|
|
|
|
OPEN_EXISTING, 0, NULL);
|
|
|
|
if(hFile == INVALID_HANDLE_VALUE) return FALSE;
|
|
|
|
CloseHandle(hFile);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-09-20 15:04:56 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* test routines
|
|
|
|
*/
|
|
|
|
static void test_gamestatisticsmgr( void )
|
|
|
|
{
|
2010-09-23 15:36:57 +02:00
|
|
|
static const GUID guidApplicationId = { 0x17A6558E, 0x60BE, 0x4078, { 0xB6, 0x6F, 0x9C, 0x3A, 0xDA, 0x2A, 0x32, 0xE6 } };
|
|
|
|
static const WCHAR sCategory0[] = {'C','a','t','e','g','o','r','y','0',0};
|
|
|
|
static const WCHAR sCategory1[] = {'C','a','t','e','g','o','r','y','1',0};
|
|
|
|
static const WCHAR sCategory2[] = {'C','a','t','e','g','o','r','y','2',0};
|
|
|
|
static const WCHAR sCategory0a[] = {'C','a','t','e','g','o','r','y','0','a',0};
|
|
|
|
static const WCHAR sStatistic00[] = {'S','t','a','t','i','s','t','i','c','0','0',0};
|
|
|
|
static const WCHAR sStatistic01[] = {'S','t','a','t','i','s','t','i','c','0','1',0};
|
|
|
|
static const WCHAR sStatistic10[] = {'S','t','a','t','i','s','t','i','c','1','0',0};
|
|
|
|
static const WCHAR sStatistic11[] = {'S','t','a','t','i','s','t','i','c','1','1',0};
|
|
|
|
static const WCHAR sStatistic20[] = {'S','t','a','t','i','s','t','i','c','2','0',0};
|
|
|
|
static const WCHAR sStatistic21[] = {'S','t','a','t','i','s','t','i','c','2','1',0};
|
|
|
|
static const WCHAR sValue00[] = {'V','a','l','u','e','0','0',0};
|
|
|
|
static const WCHAR sValue01[] = {'V','a','l','u','e','0','1',0};
|
|
|
|
static const WCHAR sValue10[] = {'V','a','l','u','e','1','0',0};
|
|
|
|
static const WCHAR sValue11[] = {'V','a','l','u','e','1','1',0};
|
|
|
|
static const WCHAR sValue20[] = {'V','a','l','u','e','2','0',0};
|
|
|
|
static const WCHAR sValue21[] = {'V','a','l','u','e','2','1',0};
|
|
|
|
|
2010-09-20 15:04:56 +02:00
|
|
|
HRESULT hr;
|
|
|
|
DWORD dwOpenResult;
|
2010-09-23 15:36:57 +02:00
|
|
|
LPWSTR lpStatisticsFile = NULL;
|
|
|
|
LPWSTR lpName = NULL, lpValue = NULL, sTooLongString = NULL;
|
|
|
|
UINT uMaxCategoryLength = 0, uMaxNameLength = 0, uMaxValueLength = 0;
|
|
|
|
WORD wMaxStatsPerCategory = 0, wMaxCategories = 0;
|
2010-09-20 15:04:56 +02:00
|
|
|
|
|
|
|
IGameStatisticsMgr* gsm = NULL;
|
2011-01-16 10:41:49 +01:00
|
|
|
IGameStatistics* gs;
|
2010-09-20 15:04:56 +02:00
|
|
|
|
|
|
|
hr = CoCreateInstance( &CLSID_GameStatistics, NULL, CLSCTX_INPROC_SERVER, &IID_IGameStatisticsMgr, (LPVOID*)&gsm);
|
|
|
|
ok(hr == S_OK, "IGameStatisticsMgr creating failed (result false)\n");
|
|
|
|
|
|
|
|
/* test trying to create interface IGameStatistics using GetGameStatistics method */
|
2010-09-23 15:36:57 +02:00
|
|
|
|
2015-08-07 15:40:50 +02:00
|
|
|
/* this should fail, because statistics don't exist yet */
|
2011-01-16 10:41:49 +01:00
|
|
|
gs = (void *)0xdeadbeef;
|
2010-09-23 15:36:57 +02:00
|
|
|
hr = IGameStatisticsMgr_GetGameStatistics(gsm, sExeName, GAMESTATS_OPEN_OPENONLY, &dwOpenResult, &gs);
|
2010-11-04 16:36:41 +01:00
|
|
|
ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), "GetGameStatistics returned unexpected value: 0x%08x\n", hr);
|
2011-01-16 10:41:49 +01:00
|
|
|
ok(gs == NULL, "Expected output pointer to be NULL, got %p\n", gs);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
2015-08-07 15:40:50 +02:00
|
|
|
/* now, allow them to be created */
|
2010-09-20 15:04:56 +02:00
|
|
|
hr = IGameStatisticsMgr_GetGameStatistics(gsm, sExeName, GAMESTATS_OPEN_OPENORCREATE, &dwOpenResult, &gs);
|
2010-11-04 16:36:41 +01:00
|
|
|
ok(SUCCEEDED(hr), "GetGameStatistics returned error: 0x%x\n", hr);
|
2010-09-23 15:37:54 +02:00
|
|
|
ok(gs!=NULL, "GetGameStatistics did not return valid interface pointer\n");
|
2010-09-20 15:04:56 +02:00
|
|
|
if(gs)
|
|
|
|
{
|
2010-09-23 15:36:57 +02:00
|
|
|
/* test of limit values returned from interface */
|
|
|
|
hr = IGameStatistics_GetMaxCategoryLength(gs, &uMaxCategoryLength);
|
2010-09-23 15:39:30 +02:00
|
|
|
ok(hr==S_OK, "getting maximum length of category failed\n");
|
|
|
|
ok(uMaxCategoryLength==60, "getting maximum length of category returned invalid value: %d\n", uMaxCategoryLength);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_GetMaxNameLength(gs, &uMaxNameLength);
|
2010-09-23 15:39:42 +02:00
|
|
|
ok(hr==S_OK, "getting maximum name length failed\n");
|
|
|
|
ok(uMaxNameLength==30, "getting maximum name length returned invalid value: %d\n", uMaxNameLength);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_GetMaxValueLength(gs, &uMaxValueLength);
|
2010-09-23 15:39:49 +02:00
|
|
|
ok(hr==S_OK, "getting maximum value length failed\n");
|
|
|
|
ok(uMaxValueLength==30, "getting maximum value length returned invalid value: %d\n", uMaxValueLength);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_GetMaxCategories(gs, &wMaxCategories);
|
2010-09-23 15:39:57 +02:00
|
|
|
ok(hr==S_OK, "getting maximum number of categories failed\n");
|
|
|
|
ok(wMaxCategories==10, "getting maximum number of categories returned invalid value: %d\n", wMaxCategories);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_GetMaxStatsPerCategory(gs, &wMaxStatsPerCategory);
|
2010-09-23 15:40:04 +02:00
|
|
|
ok(hr==S_OK, "getting maximum number of statistics per category failed\n");
|
|
|
|
ok(wMaxStatsPerCategory==10, "getting maximum number of statistics per category returned invalid value: %d\n", wMaxStatsPerCategory);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
/* create name of statistics file */
|
|
|
|
hr = _buildStatisticsFilePath(&guidApplicationId, &lpStatisticsFile);
|
|
|
|
ok(SUCCEEDED(hr), "cannot build path to game statistics (error 0x%x)\n", hr);
|
|
|
|
trace("statistics file path: %s\n", wine_dbgstr_w(lpStatisticsFile));
|
|
|
|
ok(_isFileExists(lpStatisticsFile) == FALSE, "statistics file %s already exists\n", wine_dbgstr_w(lpStatisticsFile));
|
|
|
|
|
|
|
|
/* write sample statistics */
|
|
|
|
hr = IGameStatistics_SetCategoryTitle(gs, wMaxCategories, NULL);
|
2010-09-26 15:17:41 +02:00
|
|
|
ok(hr==E_INVALIDARG, "setting category title invalid value: 0x%x\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_SetCategoryTitle(gs, wMaxCategories, sCategory0);
|
2010-09-26 15:17:41 +02:00
|
|
|
ok(hr==E_INVALIDARG, "setting category title invalid value: 0x%x\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
/* check what happen if string is too long */
|
|
|
|
sTooLongString = CoTaskMemAlloc(sizeof(WCHAR)*(uMaxCategoryLength+2));
|
|
|
|
memset(sTooLongString, 'a', sizeof(WCHAR)*(uMaxCategoryLength+1));
|
|
|
|
sTooLongString[uMaxCategoryLength+1]=0;
|
|
|
|
|
|
|
|
/* when string is too long, Windows returns S_FALSE, but saves string (stripped to expected number of characters) */
|
|
|
|
hr = IGameStatistics_SetCategoryTitle(gs, 0, sTooLongString);
|
2010-09-26 15:17:41 +02:00
|
|
|
ok(hr==S_FALSE, "setting category title invalid result: 0x%x\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(sTooLongString);
|
|
|
|
|
2010-09-26 15:17:41 +02:00
|
|
|
ok(IGameStatistics_SetCategoryTitle(gs, 0, sCategory0)==S_OK, "setting category title failed: %s\n", wine_dbgstr_w(sCategory0));
|
|
|
|
ok(IGameStatistics_SetCategoryTitle(gs, 1, sCategory1)==S_OK, "setting category title failed: %s\n", wine_dbgstr_w(sCategory1));
|
|
|
|
ok(IGameStatistics_SetCategoryTitle(gs, 2, sCategory2)==S_OK, "setting category title failed: %s\n", wine_dbgstr_w(sCategory1));
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
/* check what happen if any string is NULL */
|
|
|
|
hr = IGameStatistics_SetStatistic(gs, 0, 0, NULL, sValue00);
|
2010-09-26 15:00:40 +02:00
|
|
|
ok(hr == S_FALSE, "setting statistic returned unexpected value: 0x%x)\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_SetStatistic(gs, 0, 0, sStatistic00, NULL);
|
2010-09-26 15:00:40 +02:00
|
|
|
ok(hr == S_OK, "setting statistic returned unexpected value: 0x%x)\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
/* check what happen if any string is too long */
|
|
|
|
sTooLongString = CoTaskMemAlloc(sizeof(WCHAR)*(uMaxNameLength+2));
|
|
|
|
memset(sTooLongString, 'a', sizeof(WCHAR)*(uMaxNameLength+1));
|
|
|
|
sTooLongString[uMaxNameLength+1]=0;
|
|
|
|
hr = IGameStatistics_SetStatistic(gs, 0, 0, sTooLongString, sValue00);
|
2010-09-26 15:00:40 +02:00
|
|
|
ok(hr == S_FALSE, "setting statistic returned unexpected value: 0x%x)\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(sTooLongString);
|
|
|
|
|
|
|
|
sTooLongString = CoTaskMemAlloc(sizeof(WCHAR)*(uMaxValueLength+2));
|
|
|
|
memset(sTooLongString, 'a', sizeof(WCHAR)*(uMaxValueLength+1));
|
|
|
|
sTooLongString[uMaxValueLength+1]=0;
|
|
|
|
hr = IGameStatistics_SetStatistic(gs, 0, 0, sStatistic00, sTooLongString);
|
2010-09-26 15:00:40 +02:00
|
|
|
ok(hr == S_FALSE, "setting statistic returned unexpected value: 0x%x)\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(sTooLongString);
|
|
|
|
|
|
|
|
/* check what happen on too big index of category or statistic */
|
|
|
|
hr = IGameStatistics_SetStatistic(gs, wMaxCategories, 0, sStatistic00, sValue00);
|
2010-09-26 15:00:40 +02:00
|
|
|
ok(hr == E_INVALIDARG, "setting statistic returned unexpected value: 0x%x)\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_SetStatistic(gs, 0, wMaxStatsPerCategory, sStatistic00, sValue00);
|
2010-09-26 15:00:40 +02:00
|
|
|
ok(hr == E_INVALIDARG, "setting statistic returned unexpected value: 0x%x)\n", hr);
|
|
|
|
|
|
|
|
ok(IGameStatistics_SetStatistic(gs, 0, 0, sStatistic00, sValue00)==S_OK, "setting statistic failed: name=%s, value=%s\n", wine_dbgstr_w(sStatistic00), wine_dbgstr_w(sValue00));
|
|
|
|
ok(IGameStatistics_SetStatistic(gs, 0, 1, sStatistic01, sValue01)==S_OK, "setting statistic failed: name=%s, value=%s\n", wine_dbgstr_w(sStatistic01), wine_dbgstr_w(sValue01));
|
|
|
|
ok(IGameStatistics_SetStatistic(gs, 1, 0, sStatistic10, sValue10)==S_OK, "setting statistic failed: name=%s, value=%s\n", wine_dbgstr_w(sStatistic10), wine_dbgstr_w(sValue10));
|
|
|
|
ok(IGameStatistics_SetStatistic(gs, 1, 1, sStatistic11, sValue11)==S_OK, "setting statistic failed: name=%s, value=%s\n", wine_dbgstr_w(sStatistic11), wine_dbgstr_w(sValue11));
|
|
|
|
ok(IGameStatistics_SetStatistic(gs, 2, 0, sStatistic20, sValue20)==S_OK, "setting statistic failed: name=%s, value=%s\n", wine_dbgstr_w(sStatistic20), wine_dbgstr_w(sValue20));
|
|
|
|
ok(IGameStatistics_SetStatistic(gs, 2, 1, sStatistic21, sValue21)==S_OK, "setting statistic failed: name=%s, value=%s\n", wine_dbgstr_w(sStatistic21), wine_dbgstr_w(sValue21));
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
ok(_isFileExists(lpStatisticsFile) == FALSE, "statistics file %s already exists\n", wine_dbgstr_w(lpStatisticsFile));
|
|
|
|
|
2010-09-26 15:02:43 +02:00
|
|
|
ok(IGameStatistics_Save(gs, FALSE)==S_OK, "statistic saving failed\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
|
2010-09-26 15:02:43 +02:00
|
|
|
ok(_isFileExists(lpStatisticsFile) == TRUE, "statistics file %s does not exists\n", wine_dbgstr_w(lpStatisticsFile));
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
/* this value should not be stored in storage, we need it only to test is it not saved */
|
2010-09-26 15:17:41 +02:00
|
|
|
ok(IGameStatistics_SetCategoryTitle(gs, 0, sCategory0a)==S_OK, "setting category title failed: %s\n", wine_dbgstr_w(sCategory0a));
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
hr = IGameStatistics_Release(gs);
|
|
|
|
ok(SUCCEEDED(hr), "releasing IGameStatistics returned error: 0x%08x\n", hr);
|
|
|
|
|
2011-08-03 23:50:18 +02:00
|
|
|
/* try to read written statistics */
|
2010-09-23 15:36:57 +02:00
|
|
|
hr = IGameStatisticsMgr_GetGameStatistics(gsm, sExeName, GAMESTATS_OPEN_OPENORCREATE, &dwOpenResult, &gs);
|
2010-11-04 16:36:41 +01:00
|
|
|
ok(SUCCEEDED(hr), "GetGameStatistics returned error: 0x%08x\n", hr);
|
|
|
|
ok(dwOpenResult == GAMESTATS_OPEN_OPENED, "GetGameStatistics returned invalid open result: 0x%x\n", dwOpenResult);
|
2010-09-23 15:36:57 +02:00
|
|
|
ok(gs!=NULL, "GetGameStatistics did not return valid interface pointer\n");
|
|
|
|
|
|
|
|
/* verify values with these which we stored before*/
|
|
|
|
hr = IGameStatistics_GetCategoryTitle(gs, 0, &lpName);
|
2010-11-04 16:36:56 +01:00
|
|
|
ok(hr == S_OK, "getting category title failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sCategory0)==0, "getting category title returned invalid string (%s)\n", wine_dbgstr_w(lpName));
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetCategoryTitle(gs, 1, &lpName);
|
2010-11-04 16:36:56 +01:00
|
|
|
ok(hr == S_OK, "getting category title failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sCategory1)==0, "getting category title returned invalid string (%s)\n", wine_dbgstr_w(lpName));
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetCategoryTitle(gs, 2, &lpName);
|
2010-11-04 16:36:56 +01:00
|
|
|
ok(hr == S_OK, "getting category title failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sCategory2)==0, "getting category title returned invalid string (%s)\n", wine_dbgstr_w(lpName));
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
|
|
|
|
/* check result if category doesn't exists */
|
|
|
|
hr = IGameStatistics_GetCategoryTitle(gs, 3, &lpName);
|
2010-11-04 16:36:56 +01:00
|
|
|
ok(hr == S_OK, "getting category title failed\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
ok(lpName == NULL, "getting category title failed\n");
|
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetStatistic(gs, 0, 0, &lpName, &lpValue);
|
2010-11-04 16:37:04 +01:00
|
|
|
ok(hr == S_OK, "getting statistic failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sStatistic00)==0, "getting statistic returned invalid name\n");
|
|
|
|
ok(lstrcmpW(lpValue, sValue00)==0, "getting statistic returned invalid value\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
CoTaskMemFree(lpValue);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetStatistic(gs, 0, 1, &lpName, &lpValue);
|
2010-11-04 16:37:04 +01:00
|
|
|
ok(hr == S_OK, "getting statistic failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sStatistic01)==0, "getting statistic returned invalid name\n");
|
|
|
|
ok(lstrcmpW(lpValue, sValue01)==0, "getting statistic returned invalid value\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
CoTaskMemFree(lpValue);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetStatistic(gs, 1, 0, &lpName, &lpValue);
|
2010-11-04 16:37:04 +01:00
|
|
|
ok(hr == S_OK, "getting statistic failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sStatistic10)==0, "getting statistic returned invalid name\n");
|
|
|
|
ok(lstrcmpW(lpValue, sValue10)==0, "getting statistic returned invalid value\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
CoTaskMemFree(lpValue);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetStatistic(gs, 1, 1, &lpName, &lpValue);
|
2010-11-04 16:37:04 +01:00
|
|
|
ok(hr == S_OK, "getting statistic failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sStatistic11)==0, "getting statistic returned invalid name\n");
|
|
|
|
ok(lstrcmpW(lpValue, sValue11)==0, "getting statistic returned invalid value\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
CoTaskMemFree(lpValue);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetStatistic(gs, 2, 0, &lpName, &lpValue);
|
2010-11-04 16:37:04 +01:00
|
|
|
ok(hr == S_OK, "getting statistic failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sStatistic20)==0, "getting statistic returned invalid name\n");
|
|
|
|
ok(lstrcmpW(lpValue, sValue20)==0, "getting statistic returned invalid value\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
CoTaskMemFree(lpValue);
|
|
|
|
|
|
|
|
hr = IGameStatistics_GetStatistic(gs, 2, 1, &lpName, &lpValue);
|
2010-11-04 16:37:04 +01:00
|
|
|
ok(hr == S_OK, "getting statistic failed\n");
|
|
|
|
ok(lstrcmpW(lpName, sStatistic21)==0, "getting statistic returned invalid name\n");
|
|
|
|
ok(lstrcmpW(lpValue, sValue21)==0, "getting statistic returned invalid value\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoTaskMemFree(lpName);
|
|
|
|
CoTaskMemFree(lpValue);
|
|
|
|
|
2010-09-20 15:04:56 +02:00
|
|
|
hr = IGameStatistics_Release(gs);
|
|
|
|
ok(SUCCEEDED(hr), "releasing IGameStatistics returned error: 0x%x\n", hr);
|
|
|
|
|
|
|
|
/* test of removing game statistics from underlying storage */
|
2010-09-26 15:02:43 +02:00
|
|
|
ok(_isFileExists(lpStatisticsFile) == TRUE, "statistics file %s does not exists\n", wine_dbgstr_w(lpStatisticsFile));
|
2010-09-20 15:04:56 +02:00
|
|
|
hr = IGameStatisticsMgr_RemoveGameStatistics(gsm, sExeName);
|
2010-09-26 15:04:04 +02:00
|
|
|
ok(SUCCEEDED(hr), "cannot remove game statistics, error: 0x%x\n", hr);
|
|
|
|
ok(_isFileExists(lpStatisticsFile) == FALSE, "statistics file %s still exists\n", wine_dbgstr_w(lpStatisticsFile));
|
2010-09-20 15:04:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hr = IGameStatisticsMgr_Release(gsm);
|
|
|
|
ok(SUCCEEDED(hr), "releasing IGameStatisticsMgr returned error: 0x%x\n", hr);
|
2010-09-23 15:36:57 +02:00
|
|
|
|
|
|
|
CoTaskMemFree(lpStatisticsFile);
|
2010-09-20 15:04:56 +02:00
|
|
|
}
|
2010-08-16 09:57:34 +02:00
|
|
|
|
|
|
|
START_TEST(gamestatistics)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2015-02-21 18:25:30 +01:00
|
|
|
IGameStatisticsMgr* gsm;
|
|
|
|
IGameExplorer *ge;
|
2010-08-16 09:57:34 +02:00
|
|
|
|
2015-02-21 18:25:30 +01:00
|
|
|
hr = CoInitialize( NULL );
|
|
|
|
ok(hr == S_OK, "failed to init COM\n");
|
2010-08-16 09:57:34 +02:00
|
|
|
|
2015-02-21 18:25:30 +01:00
|
|
|
/* interface available up from Win7 */
|
|
|
|
hr = CoCreateInstance(&CLSID_GameStatistics, NULL, CLSCTX_INPROC_SERVER, &IID_IGameStatisticsMgr, (void**)&gsm);
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
win_skip("IGameStatisticsMgr is not supported.\n");
|
2010-09-23 15:36:57 +02:00
|
|
|
CoUninitialize();
|
2015-02-21 18:25:30 +01:00
|
|
|
return;
|
2010-09-23 15:36:57 +02:00
|
|
|
}
|
2015-02-21 18:25:30 +01:00
|
|
|
IGameStatisticsMgr_Release(gsm);
|
|
|
|
|
|
|
|
test_register_game(&ge);
|
|
|
|
test_gamestatisticsmgr();
|
|
|
|
test_unregister_game(ge);
|
|
|
|
|
|
|
|
CoUninitialize();
|
2010-08-16 09:57:34 +02:00
|
|
|
}
|