wbemprox: Implement Win32_ComputerSystem.UserName.
This commit is contained in:
parent
42825cdc14
commit
00b2461ba9
|
@ -306,6 +306,8 @@ static const WCHAR prop_typeW[] =
|
|||
{'T','y','p','e',0};
|
||||
static const WCHAR prop_uniqueidW[] =
|
||||
{'U','n','i','q','u','e','I','d',0};
|
||||
static const WCHAR prop_usernameW[] =
|
||||
{'U','s','e','r','N','a','m','e',0};
|
||||
static const WCHAR prop_uuidW[] =
|
||||
{'U','U','I','D',0};
|
||||
static const WCHAR prop_varianttypeW[] =
|
||||
|
@ -358,7 +360,8 @@ static const struct column col_compsys[] =
|
|||
{ prop_nameW, CIM_STRING|COL_FLAG_DYNAMIC },
|
||||
{ prop_numlogicalprocessorsW, CIM_UINT32, VT_I4 },
|
||||
{ prop_numprocessorsW, CIM_UINT32, VT_I4 },
|
||||
{ prop_totalphysicalmemoryW, CIM_UINT64 }
|
||||
{ prop_totalphysicalmemoryW, CIM_UINT64 },
|
||||
{ prop_usernameW, CIM_STRING }
|
||||
};
|
||||
static const struct column col_compsysproduct[] =
|
||||
{
|
||||
|
@ -705,6 +708,7 @@ struct record_computersystem
|
|||
UINT32 num_logical_processors;
|
||||
UINT32 num_processors;
|
||||
UINT64 total_physical_memory;
|
||||
const WCHAR *username;
|
||||
};
|
||||
struct record_computersystemproduct
|
||||
{
|
||||
|
@ -1128,6 +1132,24 @@ static WCHAR *get_computername(void)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static WCHAR *get_username(void)
|
||||
{
|
||||
WCHAR *ret;
|
||||
DWORD compsize, usersize;
|
||||
DWORD size;
|
||||
|
||||
compsize = 0;
|
||||
GetComputerNameW( NULL, &compsize );
|
||||
usersize = 0;
|
||||
GetUserNameW( NULL, &usersize );
|
||||
size = compsize + usersize; /* two null terminators account for the \ */
|
||||
if (!(ret = heap_alloc( size * sizeof(WCHAR) ))) return NULL;
|
||||
GetComputerNameW( ret, &compsize );
|
||||
ret[compsize] = '\\';
|
||||
GetUserNameW( ret + compsize + 1, &usersize );
|
||||
return ret;
|
||||
}
|
||||
|
||||
static enum fill_status fill_compsys( struct table *table, const struct expr *cond )
|
||||
{
|
||||
struct record_computersystem *rec;
|
||||
|
@ -1146,6 +1168,7 @@ static enum fill_status fill_compsys( struct table *table, const struct expr *co
|
|||
rec->num_logical_processors = get_logical_processor_count( NULL );
|
||||
rec->num_processors = get_processor_count();
|
||||
rec->total_physical_memory = get_total_physical_memory();
|
||||
rec->username = get_username();
|
||||
if (!match_row( table, row, cond, &status )) free_row_values( table, row );
|
||||
else row++;
|
||||
|
||||
|
|
|
@ -344,6 +344,8 @@ static void test_Win32_Process( IWbemServices *services )
|
|||
static void test_Win32_ComputerSystem( IWbemServices *services )
|
||||
{
|
||||
static const WCHAR nameW[] = {'N','a','m','e',0};
|
||||
static const WCHAR usernameW[] = {'U','s','e','r','N','a','m','e',0};
|
||||
static const WCHAR backslashW[] = {'\\',0};
|
||||
static const WCHAR queryW[] =
|
||||
{'S','E','L','E','C','T',' ','*',' ','F','R','O','M',' ','W','i','n','3','2','_',
|
||||
'C','o','m','p','u','t','e','r','S','y','s','t','e','m',0};
|
||||
|
@ -354,15 +356,22 @@ static void test_Win32_ComputerSystem( IWbemServices *services )
|
|||
CIMTYPE type;
|
||||
HRESULT hr;
|
||||
WCHAR compname[MAX_COMPUTERNAME_LENGTH + 1];
|
||||
WCHAR username[128];
|
||||
DWORD len, count;
|
||||
|
||||
len = sizeof(compname) / sizeof(compname[0]);
|
||||
if (!GetComputerNameW( compname, &len ))
|
||||
compname[0] = 0;
|
||||
|
||||
if (!compname[0])
|
||||
lstrcpyW( username, compname );
|
||||
lstrcatW( username, backslashW );
|
||||
len = sizeof(username) / sizeof(username[0]) - lstrlenW( username );
|
||||
if (!GetUserNameW( username + lstrlenW( username ), &len ))
|
||||
username[0] = 0;
|
||||
|
||||
if (!compname[0] || !username[0])
|
||||
{
|
||||
skip( "Failed to get computer name\n" );
|
||||
skip( "Failed to get user or computer name\n" );
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -385,6 +394,15 @@ static void test_Win32_ComputerSystem( IWbemServices *services )
|
|||
ok( !lstrcmpiW( V_BSTR( &value ), compname ), "got %s, expected %s\n", wine_dbgstr_w(V_BSTR(&value)), wine_dbgstr_w(compname) );
|
||||
VariantClear( &value );
|
||||
|
||||
type = 0xdeadbeef;
|
||||
VariantInit( &value );
|
||||
hr = IWbemClassObject_Get( service, usernameW, 0, &value, &type, NULL );
|
||||
ok( hr == S_OK, "failed to get computer name %08x\n", hr );
|
||||
ok( V_VT( &value ) == VT_BSTR, "unexpected variant type 0x%x\n", V_VT( &value ) );
|
||||
ok( type == CIM_STRING, "unexpected type 0x%x\n", type );
|
||||
ok( !lstrcmpiW( V_BSTR( &value ), username ), "got %s, expected %s\n", wine_dbgstr_w(V_BSTR(&value)), wine_dbgstr_w(username) );
|
||||
VariantClear( &value );
|
||||
|
||||
IWbemClassObject_Release( service );
|
||||
IEnumWbemClassObject_Release( result );
|
||||
SysFreeString( query );
|
||||
|
|
Loading…
Reference in New Issue